Skip to content

Commit

Permalink
use libc++
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbachmann committed Dec 25, 2023
1 parent e7c1b0e commit ebc7bd2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: test
run: clang --version

- name: Configure CMake
run: cmake -B build -DCMAKE_BUILD_TYPE=${{matrix.BUILD_TYPE}} -DRAPIDFUZZ_BUILD_TESTING=1 -DRAPIDFUZZ_ENABLE_LINTERS=1 -DRAPIDFUZZ_BUILD_FUZZERS=1 -DCMAKE_CXX_COMPILER=clang++
run: cmake -B build -DCMAKE_BUILD_TYPE=${{matrix.BUILD_TYPE}} -DRAPIDFUZZ_BUILD_TESTING=1 -DRAPIDFUZZ_ENABLE_LINTERS=1 -DRAPIDFUZZ_BUILD_FUZZERS=1 -DCMAKE_CXX_COMPILER=clang++ CMAKE_CXX_FLAGS="-stdlib=libc++ -std=c++20"

- name: Build
run: cmake --build build --config ${{matrix.BUILD_TYPE}}
Expand Down

0 comments on commit ebc7bd2

Please sign in to comment.