summaryrefslogtreecommitdiff
path: root/check.py
diff options
context:
space:
mode:
authorrathann <dominik@greysector.net>2020-11-10 17:19:17 +0100
committerGitHub <noreply@github.com>2020-11-10 08:19:17 -0800
commit5d2c13f16af2183a5d1861828e512fe0f964990c (patch)
tree135458f7963e3e08bc347fb7b811d6300f8e7387 /check.py
parentffdaad6adb8fa45f3c9021228b8e880ca02ff9b9 (diff)
downloadbinaryen-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-xcheck.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/check.py b/check.py
index 1a08b9ca2..cd7d18164 100755
--- a/check.py
+++ b/check.py
@@ -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'):