aboutsummaryrefslogtreecommitdiff
path: root/run_tests.py
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2019-01-29 16:12:35 +0530
committerNirbheek Chauhan <nirbheek.chauhan@gmail.com>2019-01-31 20:36:49 +0000
commit50b863032ed3913b9737112b5250c2d35a7b9fb7 (patch)
tree8eb16694963e2a9ea6c0354026e709561ca39730 /run_tests.py
parent52936e4a4624e87b79bcaa2795751a037104ece0 (diff)
downloadmeson-50b863032ed3913b9737112b5250c2d35a7b9fb7.zip
meson-50b863032ed3913b9737112b5250c2d35a7b9fb7.tar.gz
meson-50b863032ed3913b9737112b5250c2d35a7b9fb7.tar.bz2
find_library: Check arch of libraries on Darwin
macOS provides the tool `lipo` to check the archs supported by an object (executable, static library, dylib, etc). This is especially useful for fat archives, but it also helps with thin archives. Without this, the linker will fail to link to the library we mistakenly 'found' like so: ld: warning: ignoring file /path/to/libfoo.a, missing required architecture armv7 in file /path/to/libfoo.a
Diffstat (limited to 'run_tests.py')
-rwxr-xr-xrun_tests.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/run_tests.py b/run_tests.py
index 943e16f..20cb4e2 100755
--- a/run_tests.py
+++ b/run_tests.py
@@ -81,6 +81,7 @@ def get_fake_env(sdir='', bdir=None, prefix='', opts=None):
opts = get_fake_options(prefix)
env = Environment(sdir, bdir, opts)
env.coredata.compiler_options['c_args'] = FakeCompilerOptions()
+ env.machines.host.cpu_family = 'x86_64' # Used on macOS inside find_library
return env