live-unwinder: only enable live-unwinder on x86(_64)

Fixes: #135
This commit is contained in:
Christian Hergert
2025-02-08 12:09:44 -08:00
parent 780f4c9842
commit 10c1ae9381

View File

@ -11,9 +11,11 @@ sysprof_live_unwinder_testsuite_c_args = [
'-DBUILDDIR="@0@"'.format(meson.current_build_dir()),
]
sysprof_live_unwinder_testsuite = {
'test-live-unwinder' : {'skip': true},
}
sysprof_live_unwinder_testsuite = {}
if host_machine.cpu_family() in ['x86', 'x86_64']
sysprof_live_unwinder_testsuite += {'test-live-unwinder' : {'skip': true}}
endif
sysprof_live_unwinder_testsuite_deps = [
libsysprof_static_dep,