mirror of https://github.com/mpv-player/mpv
ci/build-freebsd: use march=native for QEMU hosted build
This is workaround to not emit instructions that are broken with current
version of QEMU used in CI job.
Fixes SIGBUS on valid code when executed in QEMU caused by issue with
CVTPS2PD instruction.
QEMU issue:
https://gitlab.com/qemu-project/qemu/-/issues/1377
QEMU fix:
abd41884c5
Should be resolved after QEMU update to 8.2.0:
https://github.com/cross-platform-actions/action/issues/78
This commit is contained in:
parent
6e5fd52dde
commit
687372e2a2
|
@ -9,7 +9,7 @@ export LDFLAGS="$LDFLAGS -L/usr/local/lib"
|
|||
|
||||
meson setup build \
|
||||
--werror \
|
||||
-Dc_args="-Wno-error=deprecated -Wno-error=deprecated-declarations" \
|
||||
-Dc_args="-Wno-error=deprecated -Wno-error=deprecated-declarations -march=native" \
|
||||
-Diconv=disabled \
|
||||
-Dlibmpv=true \
|
||||
-Dlua=enabled \
|
||||
|
|
Loading…
Reference in New Issue