Skip to content

Commit

Permalink
set ar with absolute path
Browse files Browse the repository at this point in the history
  • Loading branch information
mpromonet committed Apr 27, 2024
1 parent ffaa2e5 commit d4d827e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/cpp-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: build
run: |
export PATH=$(pwd)/webrtc/src/third_party/llvm-build/Release+Asserts/bin:$PATH
cmake -DWEBRTCROOT=$(pwd)/webrtc -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_AR=llvm-ar -DCMAKE_BUILD_TYPE=${{ matrix.buildtype }} -DDETECT_OPENSSL=OFF .
cmake -DWEBRTCROOT=$(pwd)/webrtc -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_AR=$(pwd)/webrtc/src/third_party/llvm-build/Release+Asserts/bin/llvm-ar -DCMAKE_LINKER=$(pwd)/webrtc/src/third_party/llvm-build/Release+Asserts/bin/llvm-ld -DCMAKE_BUILD_TYPE=${{ matrix.buildtype }} -DDETECT_OPENSSL=OFF .
make VERBOSE=1
- name: cpack
Expand Down

0 comments on commit d4d827e

Please sign in to comment.