diff options
author | Jay Phelps <hello@jayphelps.com> | 2018-08-30 10:07:56 -0400 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2018-08-30 07:07:56 -0700 |
commit | 6e80adefb1605f3ca76d5a2f77a4ea65bf5acaee (patch) | |
tree | 12aa05f21163cd63853fa7eb004319ed216206ce /check.py | |
parent | 9723f53ec46ad83e3ff8c89b60eb64a71a8eb74c (diff) | |
download | binaryen-6e80adefb1605f3ca76d5a2f77a4ea65bf5acaee.tar.gz binaryen-6e80adefb1605f3ca76d5a2f77a4ea65bf5acaee.tar.bz2 binaryen-6e80adefb1605f3ca76d5a2f77a4ea65bf5acaee.zip |
use comma for -rpath instead of equals sign to fix MacOS (#1651)
on MacOS with gcc-8 the equals sign -rpath= is invalid. Best I can tell a comma can be used instead -rpath, more cross-platform, but only Travis will tell us +1
I think this fixes #1185 provided you install real GCC (Mac has clang pretend to be gcc) and provide it CC=gcc-8 CXX=g++-8 ./check.py.
Diffstat (limited to 'check.py')
-rwxr-xr-x | check.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -547,7 +547,7 @@ def run_gcc_tests(): print 'build: ', ' '.join(extra) subprocess.check_call(extra) # Link against the binaryen C library DSO, using an executable-relative rpath - cmd = ['example.o', '-L' + os.path.join(options.binaryen_bin, '..', 'lib'), '-lbinaryen'] + cmd + ['-Wl,-rpath=$ORIGIN/../lib'] + cmd = ['example.o', '-L' + os.path.join(options.binaryen_bin, '..', 'lib'), '-lbinaryen'] + cmd + ['-Wl,-rpath,$ORIGIN/../lib'] else: continue print ' ', t, src, expected |