diff --git a/.github/workflows/cpp-macos.yml b/.github/workflows/cpp-macos.yml index 69e698cf..025aa460 100644 --- a/.github/workflows/cpp-macos.yml +++ b/.github/workflows/cpp-macos.yml @@ -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