diff options
author | rathann <dominik@greysector.net> | 2020-11-10 17:19:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-10 08:19:17 -0800 |
commit | 5d2c13f16af2183a5d1861828e512fe0f964990c (patch) | |
tree | 135458f7963e3e08bc347fb7b811d6300f8e7387 /check.py | |
parent | ffdaad6adb8fa45f3c9021228b8e880ca02ff9b9 (diff) | |
download | binaryen-5d2c13f16af2183a5d1861828e512fe0f964990c.tar.gz binaryen-5d2c13f16af2183a5d1861828e512fe0f964990c.tar.bz2 binaryen-5d2c13f16af2183a5d1861828e512fe0f964990c.zip |
Allow setting the path to libbinaryen.so shared library (#3025)
This makes it easier to install libbinaryen.so into an alternative
locations. Fixes part of issue #2999 for me.
Diffstat (limited to 'check.py')
-rwxr-xr-x | check.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -292,7 +292,7 @@ def run_gcc_tests(): src = os.path.join(shared.get_test_dir('example'), t) expected = os.path.join(shared.get_test_dir('example'), '.'.join(t.split('.')[:-1]) + '.txt') # build the C file separately - libpath = os.path.join(os.path.dirname(shared.options.binaryen_bin), 'lib') + libpath = shared.options.binaryen_lib extra = [shared.NATIVECC, src, '-c', '-o', 'example.o', '-I' + os.path.join(shared.options.binaryen_root, 'src'), '-g', '-L' + libpath, '-pthread'] if src.endswith('.cpp'): |