gitlab: add arm-softmmu tests to the macOS build
Now we have fixed the compiler issues lets have at it. Reviewed-by: Pierrick Bouvier <pierrick.bouvier@oss.qualcomm.com> Message-ID: <20260824-fixes-for-11-2-v2-3-352c6b890402@linaro.org> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Alex Bennée committed
Aug 24, 2026 at 16:24 UTC
172cc8e4c5b398e983e6abbbb574f64a66a6c2fb
1 file changed
+3
-2
.gitlab-ci.d/macos.yml
+3
-2
@@ -22,7 +22,7 @@
22
- export PKG_CONFIG_PATH="$PKG_CONFIG_PATH"
23
- brew update
24
- brew install $PKGS
25
- - brew install aarch64-elf-gcc i686-elf-gcc x86_64-elf-gcc
25
+ - brew install arm-none-eabi-gcc aarch64-elf-gcc i686-elf-gcc x86_64-elf-gcc
26
- if test -n "$PYPI_PKGS" ; then PYLIB=$($PYTHON -c 'import sysconfig; print(sysconfig.get_path("stdlib"))'); rm -f $PYLIB/EXTERNALLY-MANAGED; $PIP3 install --break-system-packages $PYPI_PKGS ; fi
27
script:
28
- mkdir build
@@ -40,8 +40,9 @@ aarch64-macos-15-build:
40
PATH_EXTRA: /opt/homebrew/gettext/bin
41
PKG_CONFIG_PATH: /opt/homebrew/curl/lib/pkgconfig:/opt/homebrew/ncurses/lib/pkgconfig:/opt/homebrew/readline/lib/pkgconfig
42
CONFIGURE_ARGS:
43
- --target-list=aarch64-softmmu,i386-softmmu,x86_64-softmmu
43
+ --target-list=aarch64-softmmu,arm-softmmu,i386-softmmu,x86_64-softmmu
44
--cross-prefix-aarch64=aarch64-elf-
45
+ --cross-prefix-arm=arm-none-eabi-
46
--cross-prefix-i386=i686-elf-
47
--cross-prefix-x86_64=x86_64-elf-
48
--disable-plugins