Skip to content

Commit

Permalink
Dev: Trying to support 32-bit platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
NDRAEY committed Jun 27, 2024
1 parent 4a10176 commit d62e963
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/Build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ jobs:
path: build/DesktopZephyr

build_linux32:
runs-on: debian-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Install needed packages
run: |
sudo dpkg --add-architecture i386 && sudo apt install cmake clang-15 g++-multilib qt6-base-dev:i386 libglx-dev:i386 libgl1-mesa-dev:i386 libxkbcommon-dev:i386 -y
sudo dpkg --add-architecture i386 && sudo apt update && sudo apt install cmake clang-15 g++-multilib qt6-base-dev:i386 libglx-dev:i386 libgl1-mesa-dev:i386 libxkbcommon-dev:i386 -y
- name: Build
run: mkdir build && cd build && CXX=clang-15 cmake -DCMAKE_CXX_FLAGS=-m32 -DCMAKE_FIND_ROOT_PATH=/usr/lib/i386-linux-gnu/cmake .. && make -j$(nproc)
Expand Down

0 comments on commit d62e963

Please sign in to comment.