diff options
author | Alex Crichton <alex@alexcrichton.com> | 2019-08-02 12:22:51 -0500 |
---|---|---|
committer | Alon Zakai <azakai@google.com> | 2019-08-02 10:22:51 -0700 |
commit | 8d4d43f0f239877b10789d3a85deb92f1927bc2e (patch) | |
tree | 4ca48e2518fe48bc48d734567e9a36cfc2d3862a | |
parent | f89589bbec41dccd82b8c89604d7c878a27f02d8 (diff) | |
download | binaryen-8d4d43f0f239877b10789d3a85deb92f1927bc2e.tar.gz binaryen-8d4d43f0f239877b10789d3a85deb92f1927bc2e.tar.bz2 binaryen-8d4d43f0f239877b10789d3a85deb92f1927bc2e.zip |
Remove `-no-pie` since clang doesn't like it (#2279)
It appears that the previous PR I had for `clang` didn't actually run on
the PR and I forgot to include the removal of `-no-pie` in the PR. Sorry
about that! This should fix the CI issues seen [here]
[here]: https://travis-ci.org/WebAssembly/binaryen/jobs/566546589
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index f7f11c0f9..cb9cd7360 100644 --- a/.travis.yml +++ b/.travis.yml @@ -143,8 +143,8 @@ jobs: script: - alpine cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_VERBOSE_MAKEFILE=ON - -DCMAKE_CXX_FLAGS="-static -no-pie" - -DCMAKE_C_FLAGS="-static -no-pie" . + -DCMAKE_CXX_FLAGS="-static" + -DCMAKE_C_FLAGS="-static" . -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ - alpine make -j2 |