Fix building no_std on Linux and Windows

This commit is contained in:
John-John Tedro
2020-07-25 10:48:29 +02:00
parent 4ee4cf1b58
commit 66700b4a53
4 changed files with 29 additions and 7 deletions

View File

@@ -1,3 +1,5 @@
cargo-features = ["named-profiles"]
[package]
name = "no_std_test"
version = "0.1.0"
@@ -18,7 +20,17 @@ panic = "abort"
opt-level = "z" # optimize for size
debug = false
rpath = false
lto = "fat"
debug-assertions = false
codegen-units = 1
panic = "abort"
[profile.unix]
inherits = "release"
lto = true
[profile.windows]
inherits = "release"
[profile.macos]
inherits = "release"
lto = "fat"

View File

@@ -12,7 +12,9 @@ To Compile
The nightly compiler is required:
```bash
cargo +nightly build --release
cargo +nightly build --release --profile unix -Z unstable-features
```
Available profiles are: `unix`, `windows` and `macos`.
The release build is optimized for size. It can be changed to optimize on speed instead.

View File

@@ -2,7 +2,7 @@
//! a simple expression and uses the result as the return value.
#![no_std]
#![feature(alloc_error_handler, start, core_intrinsics, lang_items)]
#![feature(alloc_error_handler, start, core_intrinsics, lang_items, link_cfg)]
extern crate alloc;
extern crate wee_alloc;
@@ -10,6 +10,12 @@ extern crate wee_alloc;
#[global_allocator]
static ALLOC: wee_alloc::WeeAlloc = wee_alloc::WeeAlloc::INIT;
// NB: Rust needs a CRT runtime on Windows MSVC.
#[cfg(all(windows, target_env = "msvc"))]
#[link(name = "msvcrt")]
#[link(name = "libcmt")]
extern {}
use rhai::{Engine, INT};
#[start]