diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-06-12 16:12:37 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-06-12 16:12:37 -0700 |
| commit | 8c057984c6d9244e2542759602c65a7930dfd6f1 (patch) | |
| tree | f0dffbbfd199a3c4643759f45396106353379a19 | |
| parent | 021bea15fc3e408d6db7bc7f7d999297e678ca01 (diff) | |
| download | rust-8c057984c6d9244e2542759602c65a7930dfd6f1.tar.gz rust-8c057984c6d9244e2542759602c65a7930dfd6f1.zip | |
travis: Don't use a local jemalloc
Turns out they don't have the `je_` prefix, so we can't use the system-installed jemalloc.
| -rw-r--r-- | .travis.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 17a7543ef22..e3cec33ad07 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,6 @@ install: - sudo apt-get update -qq - sudo apt-get install -qq --force-yes -y llvm-$LLVM_VERSION llvm-${LLVM_VERSION}-dev clang-$LLVM_VERSION lldb-$LLVM_VERSION - libjemalloc-dev # All of the llvm tools are suffixed with "-$VERS" which we don't want, so @@ -29,7 +28,7 @@ before_script: - ln -nsf /usr/bin/llc-$LLVM_VERSION local-llvm/bin/llc - ln -nsf /usr/include/llvm-$LLVM_VERSION local-llvm/include - ./configure --disable-optimize-tests --llvm-root=`pwd`/local-llvm - --enable-fast-make --enable-clang --jemalloc-root=/usr/lib + --enable-fast-make --enable-clang # Tidy everything up first, then build a few things, and then run a few tests. # Note that this is meant to run in a "fairly small" amount of time, so this |
