File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -31,12 +31,11 @@ jobs:
3131 - name : Add Homebrew to PATH
3232 run : echo "/opt/homebrew/bin" >> $GITHUB_PATH
3333
34- - name : Install Xcode Command Line Tools
35- run : |
36- sudo xcode-select --install || true
37- sudo xcode-select -s /Library/Developer/CommandLineTools
38- export LD=$(xcrun --find ld)
39- export PATH="/Library/Developer/CommandLineTools/usr/bin:$PATH"
34+ - name : Set Xcode toolchain as default
35+ run : sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
36+
37+ - name : Ensure system linker is used
38+ run : echo "LD=/usr/bin/ld" >> $GITHUB_ENV
4039
4140 - name : Configure Homebrew clang (symlink for easier access)
4241 run : |
4948 CC : " /opt/homebrew/opt/llvm/bin/clang"
5049 CXX : " /opt/homebrew/opt/llvm/bin/clang++"
5150 PATH : " /opt/homebrew/opt/llvm/bin:$PATH"
51+ LD : " /usr/bin/ld"
5252 run : |
5353 cmake -B build \
5454 -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} \
7979 uses : actions/upload-artifact@v4
8080 with :
8181 name : RAYX-macOS-${{env.BUILD_TYPE}}
82- path : ${{github.workspace}}/build/bin/release
82+ path : ${{github.workspace}}/build/bin/release
You can’t perform that action at this time.
0 commit comments