Skip to content

Commit

Permalink
Use clang/clang++ to build release binaries.
Browse files Browse the repository at this point in the history
  • Loading branch information
shenhanc78 committed Jul 19, 2024
1 parent 4d33c16 commit eb96638
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/create-release-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run: sudo apt-get -y install libunwind-dev libgflags-dev libssl-dev libelf-dev protobuf-compiler libzstd-dev

- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release -DENABLE_TOOL=LLVM -S ${{github.workspace}}
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release -DENABLE_TOOL=LLVM -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -S ${{github.workspace}}

- name: Build
# Build your program with the given configuration
Expand Down

0 comments on commit eb96638

Please sign in to comment.