File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1212
1313env :
1414 BUILD_TYPE : Release
15+ MACOSX_DEPLOYMENT_TARGET : " 11.0"
1516
1617jobs :
1718 build :
4041 - name : Configure Homebrew clang (symlink for easier access)
4142 run : |
4243 brew unlink llvm && brew link llvm --force --overwrite
43-
44+
4445 - name : Symlink system ld for Homebrew clang
4546 run : |
4647 ln -sf /usr/bin/ld /opt/homebrew/bin/ld
5354 CC : " /opt/homebrew/opt/llvm/bin/clang"
5455 CXX : " /opt/homebrew/opt/llvm/bin/clang++"
5556 PATH : " /opt/homebrew/opt/llvm/bin:/opt/homebrew/bin:$PATH"
56- MACOSX_DEPLOYMENT_TARGET : " 11.0"
5757 run : |
5858 cmake -B build \
5959 -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} \
6262 -DCMAKE_C_COMPILER="$CC" \
6363 -DCMAKE_CXX_COMPILER="$CXX" \
6464 -DCMAKE_CXX_FLAGS="-stdlib=libc++ -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include" \
65- -DCMAKE_EXE_LINKER_FLAGS="-L/opt/homebrew/opt/libomp/lib -lomp"
65+ -DCMAKE_EXE_LINKER_FLAGS="-L/opt/homebrew/opt/libomp/lib -lomp" \
6666 -DCMAKE_OSX_DEPLOYMENT_TARGET=11.0
6767
6868 - name : Build
You can’t perform that action at this time.
0 commit comments