Skip to content

Commit

Permalink
Merge pull request #4 from koute/master
Browse files Browse the repository at this point in the history
Disable i128 integers on Emscripten targets
  • Loading branch information
dtolnay authored Aug 23, 2018
2 parents 4e31279 + 3e3c89e commit d1b0428
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,15 @@ fn main() {
None => return,
};

let target = env::var("TARGET").unwrap();
let emscripten = target == "asmjs-unknown-emscripten" || target == "wasm32-unknown-emscripten";

// 128-bit integers stabilized in Rust 1.26:
// https://blog.rust-lang.org/2018/05/10/Rust-1.26.html
if minor >= 26 {
//
// Disabled on Emscripten targets as Emscripten doesn't
// currently support integers larger than 64 bits.
if minor >= 26 && !emscripten {
println!("cargo:rustc-cfg=integer128");
}

Expand Down

0 comments on commit d1b0428

Please sign in to comment.