diff options
| author | Raph Levien <raph@google.com> | 2016-10-18 13:43:18 -0700 |
|---|---|---|
| committer | Raph Levien <raph@google.com> | 2016-10-22 07:08:06 -0700 |
| commit | 76bac5d33e09e8ae1b243c045584646431147cce (patch) | |
| tree | e5a7e238441d821c4d5507cc71d5a2cdb6b6869e /src/liballoc_jemalloc | |
| parent | 4879166194ed63ebd2a8c3ce8db1ccde4a6a1920 (diff) | |
| download | rust-76bac5d33e09e8ae1b243c045584646431147cce.tar.gz rust-76bac5d33e09e8ae1b243c045584646431147cce.zip | |
Add Fuchsia support
Adds support for the x86_64-unknown-fuchsia target, which covers the Fuchsia operating system.
Diffstat (limited to 'src/liballoc_jemalloc')
| -rw-r--r-- | src/liballoc_jemalloc/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc_jemalloc/build.rs b/src/liballoc_jemalloc/build.rs index 369db8e75a3..08a1f8ae8c6 100644 --- a/src/liballoc_jemalloc/build.rs +++ b/src/liballoc_jemalloc/build.rs @@ -36,7 +36,7 @@ fn main() { // targets, which means we have to build the alloc_jemalloc crate // for targets like emscripten, even if we don't use it. if target.contains("rumprun") || target.contains("bitrig") || target.contains("openbsd") || - target.contains("msvc") || target.contains("emscripten") { + target.contains("msvc") || target.contains("emscripten") || target.contains("fuchsia") { println!("cargo:rustc-cfg=dummy_jemalloc"); return; } |
