From 99c055cded197b3609cb49a9d6ce9cbedb82ab88 Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Tue, 11 Jul 2023 23:36:08 +0200 Subject: [PATCH] Add AppleClang crossbuild to MacOS/arm64 DYNAMIC_ARCH --- azure-pipelines.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 65ef538e9..da7fe3e76 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -271,6 +271,16 @@ jobs: - script: | make TARGET=ARMV7 DYNAMIC_ARCH=1 NUM_THREADS=32 HOSTCC=clang NOFORTRAN=1 +- job: OSX_xbuild_DYNAMIC_ARM64 + pool: + vmImage: 'macOS-11' + variables: + CC: /Applications/Xcode_12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang + CFLAGS: -O2 -Wno-macro-redefined -isysroot /Applications/Xcode_12.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk -arch arm64 + steps: + - script: | + make TARGET=ARMV8 DYNAMIC_ARCH=1 NUM_THREADS=32 HOSTCC=clang NOFORTRAN=1 + - job: ALPINE_MUSL pool: vmImage: 'ubuntu-latest'