Skip to content

Commit

Permalink
compile github flow with clang
Browse files Browse the repository at this point in the history
  • Loading branch information
mpromonet committed Mar 15, 2020
1 parent bc824f7 commit 9553a1f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,11 @@ jobs:
- name: cmake
run: |
export PATH=$(pwd)/depot_tools:$PATH
cmake -DWEBRTCROOT=$(pwd)/webrtc .
cmake -DWEBRTCROOT=./webrtc -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ .
- name: make
run: |
g++ -v
g++ -print-file-name=libstdc++.a
nm $(g++ -print-file-name=libstdc++.a) | c++filt | grep ::basic_ostringstream
nm libwebrtcextra.a | c++filt | grep ::basic_ostringstream
- name: make
run: make VERBOSE=1
make VERBOSE=1

0 comments on commit 9553a1f

Please sign in to comment.