diff --git a/scripts/mk_unix_dist.py b/scripts/mk_unix_dist.py index 3b1e71391..55c8ccf31 100644 --- a/scripts/mk_unix_dist.py +++ b/scripts/mk_unix_dist.py @@ -118,7 +118,9 @@ def check_build_dir(path): # Create a build directory using mk_make.py def mk_build_dir(path): + global LINUX_X64 if not check_build_dir(path) or FORCE_MK: + env = os.environ opts = [sys.executable, os.path.join('scripts', 'mk_make.py'), "-b", path, "--staticlib"] if DOTNET_CORE_ENABLED: opts.append('--dotnet') @@ -133,7 +135,17 @@ def mk_build_dir(path): opts.append('--python') if mk_util.IS_ARCH_ARM64: opts.append('--arm64=true') - if subprocess.call(opts) != 0: + if mk_util.IS_ARCH_ARM64 and LINUX_X64: + # we are machine x64 but build against arm64 + # so we have to do cross compiling + # the cross compiler is download from ARM GNU + # toolchain + myvar = { + "CC": "aarch64-none-linux-gnu-gcc", + "CXX": "aarch64-none-linux-gnu-g++" + } + env.update(myvar) + if subprocess.call(opts, env=env) != 0: raise MKException("Failed to generate build directory at '%s'" % path) # Create build directories diff --git a/scripts/nightly.yaml b/scripts/nightly.yaml index 77ca31458..062195dae 100644 --- a/scripts/nightly.yaml +++ b/scripts/nightly.yaml @@ -203,6 +203,12 @@ stages: vmImage: "ubuntu-latest" container: "quay.io/pypa/manylinux2014_x86_64:latest" steps: + - script: yum install wget + - script: wget -q -O /tmp/arm-toolchain.tar.xz 'https://developer.arm.com/-/media/Files/downloads/gnu/13.2.rel1/binrel/arm-gnu-toolchain-13.2.rel1-x86_64-aarch64-none-linux-gnu.tar.xz?rev=22c39fc25e5541818967b4ff5a09ef3e&hash=E7676169CE35FC2AAECF4C121E426083871CA6E5' + - script: tar xf /tmp/arm-toolchain.tar.xz -C /arm-toolchain/ --strip-components=1 + - script: echo '##vso[task.prependpath]/arm-toolchain/bin' + - script: echo $PATH + - script: stat /arm-toolchain/bin/aarch64-none-linux-gnu-gcc - task: PythonScript@0 displayName: Build inputs: