Update .cirrus.yml

This commit is contained in:
Martin Kroeker 2023-09-27 11:03:52 +02:00 committed by GitHub
parent a7bb9a727b
commit ce3006ff80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -6,9 +6,9 @@ task:
compile_script:
- brew update
- brew install llvm@16
- export PATH=/opt/homebrew/opt/llvm/bin:$PATH
- export LDFLAGS="-L/opt/homebrew/opt/llvm/lib"
- export CPPFLAGS="-I/opt/homebrew/opt/llvm/include"
- export PATH=/opt/homebrew/opt/llvm@16/bin:$PATH
- export LDFLAGS="-L/opt/homebrew/opt/llvm@16/lib"
- export CPPFLAGS="-I/opt/homebrew/opt/llvm@16/include"
- make TARGET=VORTEX CC=clang
@ -17,9 +17,9 @@ task:
compile_script:
- brew update
- brew install llvm@17
- export PATH=/opt/homebrew/opt/llvm/bin:$PATH
- export LDFLAGS="-L/opt/homebrew/opt/llvm/lib"
- export CPPFLAGS="-I/opt/homebrew/opt/llvm/include"
- export PATH=/opt/homebrew/opt/llvm@17/bin:$PATH
- export LDFLAGS="-L/opt/homebrew/opt/llvm@17/lib"
- export CPPFLAGS="-I/opt/homebrew/opt/llvm@17/include"
- make TARGET=VORTEX CC=clang