mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-16 11:15:31 +00:00
macos-bison-binary: Remove warning when running on arm64
The x86_64 bison works fine out of the box. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3589>
This commit is contained in:
parent
b3806da265
commit
984b8816d5
1 changed files with 1 additions and 5 deletions
|
@ -4,12 +4,8 @@ py3 = import('python3').find_python()
|
||||||
|
|
||||||
message('Downloading and extracting bison for macOS x64...')
|
message('Downloading and extracting bison for macOS x64...')
|
||||||
|
|
||||||
arch = host_machine.cpu_family()
|
arch = 'x86_64' # run under emulation on arm64
|
||||||
tar_hash = '932f91d7c7fa0121abc3e5f8e54a7234b03d3de468c254ab8063ff8e6eb92a09'
|
tar_hash = '932f91d7c7fa0121abc3e5f8e54a7234b03d3de468c254ab8063ff8e6eb92a09'
|
||||||
if arch != 'x86_64'
|
|
||||||
warning('bison binary is untested on non-x86_64, please report whether this worked or not')
|
|
||||||
arch = 'x86_64'
|
|
||||||
endif
|
|
||||||
|
|
||||||
ret = run_command(py3, files('download-binary.py'), meson.project_version(), arch, tar_hash,
|
ret = run_command(py3, files('download-binary.py'), meson.project_version(), arch, tar_hash,
|
||||||
check: true)
|
check: true)
|
||||||
|
|
Loading…
Reference in a new issue