diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2017-01-13 10:42:27 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-01-13 10:42:27 +0100 |
| commit | ef2c921380a277f46b79de01cb126dbfbe0683a6 (patch) | |
| tree | 4a9c6f1eb158acd72844ad308a65449b34063f05 | |
| parent | 77ebb6a572f381eba70bf0243b8ae19a8003d54b (diff) | |
| parent | 9f92d4f9d51d7d0b148f56cc88f8605922080248 (diff) | |
| download | rust-ef2c921380a277f46b79de01cb126dbfbe0683a6.tar.gz rust-ef2c921380a277f46b79de01cb126dbfbe0683a6.zip | |
Rollup merge of #38877 - jdub:patch-1, r=sanxiyn
libcompiler_builtins: Don't build emutls.c Rather than improving the check, let's ditch emutls.c entirely.
| -rw-r--r-- | src/libcompiler_builtins/build.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/libcompiler_builtins/build.rs b/src/libcompiler_builtins/build.rs index 6a766fc02df..ab9a71e1ec6 100644 --- a/src/libcompiler_builtins/build.rs +++ b/src/libcompiler_builtins/build.rs @@ -236,10 +236,6 @@ fn main() { "atomic_thread_fence.c"]); } - if !target.contains("redox") && !target.contains("windows") { - sources.extend(&["emutls.c"]); - } - if target.contains("msvc") { if target.contains("x86_64") { sources.extend(&["x86_64/floatdidf.c", "x86_64/floatdisf.c", "x86_64/floatdixf.c"]); |
