summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/linux.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/linux.yml')
-rw-r--r--.github/workflows/linux.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml
index d622cd4d..15109e90 100644
--- a/.github/workflows/linux.yml
+++ b/.github/workflows/linux.yml
@@ -60,11 +60,11 @@ jobs:
cd ../../../raylib
# ${{ matrix.ARCH }}-linux-gnu-gcc -v
- # TODO: Support 32bit (i386) shared library building
+ # TODO: Support 32bit (i386) static/shared library building
- name: Build Library
run: |
cd src
- make PLATFORM=PLATFORM_DESKTOP CC=gcc RAYLIB_LIBTYPE=STATIC RAYLIB_RELEASE_PATH="../build/${{ env.RELEASE_NAME }}/lib" CFLAGS="-m32" -B
+ make PLATFORM=PLATFORM_DESKTOP CC=gcc RAYLIB_LIBTYPE=STATIC RAYLIB_RELEASE_PATH="../build/${{ env.RELEASE_NAME }}/lib" CUSTOM_CFLAGS="-m32" -B
# make PLATFORM=PLATFORM_DESKTOP CC=gcc RAYLIB_LIBTYPE=SHARED RAYLIB_RELEASE_PATH="../build/${{ env.RELEASE_NAME }}/lib" -B
cd ..
if: matrix.bits == 32