Use gcc15 for linux build

This commit is contained in:
Mike Oliphant
2026-06-26 11:14:41 -07:00
committed by GitHub
parent f3a1ec33af
commit 829439a060
+7 -1
View File
@@ -14,11 +14,17 @@ jobs:
- uses: actions/checkout@v3.3.0
with:
submodules: recursive
- name: Setup GCC 15
uses: egor-tensin/setup-gcc@v2
with:
version: '15'
- name: Build Plugin
working-directory: ${{github.workspace}}/build
env:
CXX: clang++
CXX: g++-15
CXXFLAGS: "-static-libstdc++ -static-libgcc"
run: |
cmake .. -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DBUILD_UTILS=ON -DBUILD_INTERNAL_STATIC_WAVENET=ON -DBUILD_INTERNAL_STATIC_LSTM=ON -DBUILD_NAMCORE=ON -DBUILD_STATIC_RTNEURAL=ON
cmake --build . --config $BUILD_TYPE -j4