From 36f62dfd4a53d201fbb28ecaf0a4026c18108012 Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Wed, 29 Jan 2025 12:05:05 +0100 Subject: [PATCH] Add LLVM/flang-new on OSX-x86 --- azure-pipelines.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 0bdf4e316..12b072bb2 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -164,7 +164,19 @@ jobs: - script: | brew update make CC=gcc-12 FC=gfortran-12 - + +- job: OSX_LLVM_flang-new + pool: + vmImage: 'macOS-latest' + variables: + LD_LIBRARY_PATH: /usr/local/opt/llvm/lib + LIBRARY_PATH: /usr/local/opt/llvm/lib + steps: + - script: | + brew update + brew install llvm + make TARGET=NEHALEM CC=/usr/local/opt/llvm/bin/clang FC=/usr/local/opt/llvm/bin/flang-new + - job: OSX_OpenMP_Clang pool: vmImage: 'macOS-latest'