Skip to content

Commit 8d4d43f

Browse files
alexcrichtonkripken
authored andcommitted
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
1 parent f89589b commit 8d4d43f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,8 @@ jobs:
143143
script:
144144
- alpine cmake -DCMAKE_BUILD_TYPE=Release
145145
-DCMAKE_VERBOSE_MAKEFILE=ON
146-
-DCMAKE_CXX_FLAGS="-static -no-pie"
147-
-DCMAKE_C_FLAGS="-static -no-pie" .
146+
-DCMAKE_CXX_FLAGS="-static"
147+
-DCMAKE_C_FLAGS="-static" .
148148
-DCMAKE_C_COMPILER=clang
149149
-DCMAKE_CXX_COMPILER=clang++
150150
- alpine make -j2

0 commit comments

Comments
 (0)