Skip to content

Commit 6c10142

Browse files
committed
Update LLVM submodule
This commit updates the LLVM submodule to the current trunk of LLVM itself. This brings a few notable improvements for the wasm target: * Support for wasm atomic instructions is greatly improved * Renamed memory wasm intrinsics are fully supported * LLD has fixed a quadratic execution bug with large numbers of relocations in wasm files. The compiler-rt submodule has been updated in tandem as well.
1 parent 02cb8f2 commit 6c10142

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

.travis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ matrix:
3030

3131
- env: >
3232
RUST_CHECK_TARGET=dist
33-
RUST_CONFIGURE_ARGS="--enable-extended --enable-profiler --enable-lldb"
33+
RUST_CONFIGURE_ARGS="--enable-extended --enable-profiler"
3434
SRC=.
3535
DEPLOY_ALT=1
3636
RUSTC_RETRY_LINKER_ON_SEGFAULT=1
@@ -87,7 +87,7 @@ matrix:
8787
# OSX 10.7 and `xcode7` is the latest Xcode able to compile LLVM for 10.7.
8888
- env: >
8989
RUST_CHECK_TARGET=dist
90-
RUST_CONFIGURE_ARGS="--build=i686-apple-darwin --enable-full-tools --enable-profiler --enable-lldb"
90+
RUST_CONFIGURE_ARGS="--build=i686-apple-darwin --enable-full-tools --enable-profiler"
9191
SRC=.
9292
DEPLOY=1
9393
RUSTC_RETRY_LINKER_ON_SEGFAULT=1
@@ -101,7 +101,7 @@ matrix:
101101
102102
- env: >
103103
RUST_CHECK_TARGET=dist
104-
RUST_CONFIGURE_ARGS="--target=aarch64-apple-ios,armv7-apple-ios,armv7s-apple-ios,i386-apple-ios,x86_64-apple-ios --enable-full-tools --enable-sanitizers --enable-profiler --enable-lldb"
104+
RUST_CONFIGURE_ARGS="--target=aarch64-apple-ios,armv7-apple-ios,armv7s-apple-ios,i386-apple-ios,x86_64-apple-ios --enable-full-tools --enable-sanitizers --enable-profiler"
105105
SRC=.
106106
DEPLOY=1
107107
RUSTC_RETRY_LINKER_ON_SEGFAULT=1

src/bootstrap/native.rs

+1
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@ impl Step for Llvm {
145145
.define("LLVM_INCLUDE_EXAMPLES", "OFF")
146146
.define("LLVM_INCLUDE_TESTS", "OFF")
147147
.define("LLVM_INCLUDE_DOCS", "OFF")
148+
.define("LLVM_INCLUDE_BENCHMARKS", "OFF")
148149
.define("LLVM_ENABLE_ZLIB", "OFF")
149150
.define("WITH_POLLY", "OFF")
150151
.define("LLVM_ENABLE_TERMINFO", "OFF")

src/llvm

Submodule llvm updated 2350 files

src/rustllvm/llvm-rebuild-trigger

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# If this file is modified, then llvm will be (optionally) cleaned and then rebuilt.
22
# The actual contents of this file do not matter, but to trigger a change on the
33
# build bots then the contents should be changed so git updates the mtime.
4-
2018-08-02
4+
2018-08-22

src/tools/lld

Submodule lld updated 252 files

0 commit comments

Comments
 (0)