Skip to content

Commit

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

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

// CString::into_boxed_c_str stabilized in Rust 1.20:
// https://doc.rust-lang.org/std/ffi/struct.CString.html#method.into_boxed_c_str
if minor >= 20 {
Expand All @@ -32,7 +35,10 @@ fn main() {

// 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 c1583bf

Please sign in to comment.