From 712d70264674624318d2059d03bb82ba5a2c989e Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Wed, 9 Feb 2022 13:37:46 +0100 Subject: [PATCH] Update azure-pipelines.yml --- azure-pipelines.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index d5c1274d5..ac9bfc1d4 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -183,19 +183,18 @@ jobs: pool: vmImage: 'macOS-11' variables: - LD_LIBRARY_PATH: /usr/local/opt/llvm/lib - LIBRARY_PATH: /usr/local/opt/llvm/lib + LD_LIBRARY_PATH: /usr/local/opt/llvm/lib:$(LD_LIBRARY_PATH) + LIBRARY_PATH: /usr/local/opt/llvm/lib:$(LIBRARY_PATH) steps: - script: | brew update brew install llvm stow libpthread-stubs sudo mkdir /usr/local/stow - sudo wget -P /usr/local/stow https://github.com/meow464/flang/releases/download/flang_20210324/flang.tar + sudo wget -q -P /usr/local/stow https://github.com/meow464/flang/releases/download/flang_20210324/flang.tar cd /usr/local/stow sudo tar xf flang.tar sudo stow flang cd - - find / -name "libpthread.*" make CC=/usr/local/opt/llvm/bin/clang FC=/usr/local/bin/flang - job: OSX_Ifort_Clang