mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-12-23 22:13:40 +00:00
[client] ci: fix clang build
Our code to generate object files from shaders with the linker seems to depend on GNU ld. More accurately, it works with lld, but we must specify the correct object format via -m, which is very difficult to detect in a satisfactory manner. Therefore we simply force use of GNU ld.
This commit is contained in:
parent
e58506f1a5
commit
ed18ead1ff
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
@ -33,7 +33,11 @@ jobs:
|
||||
run: |
|
||||
mkdir client/build
|
||||
cd client/build
|
||||
cmake -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DENABLE_SDL=ON ..
|
||||
cmake \
|
||||
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \
|
||||
-DCMAKE_LINKER:FILEPATH=/usr/bin/ld \
|
||||
-DENABLE_SDL=ON \
|
||||
..
|
||||
- name: Build client
|
||||
run: |
|
||||
cd client/build
|
||||
|
Loading…
Reference in New Issue
Block a user