summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/linux.yml
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2021-12-29 19:06:56 +0100
committerraysan5 <[email protected]>2021-12-29 19:06:56 +0100
commitfef5be0bc79c366551d9b2fffd18ece8d3ddec8f (patch)
tree92f452e1148e532f7b8583e31a352bbbc988fe7d /.github/workflows/linux.yml
parentc862c4bdf2628aa906c98a114b8380a2f673f400 (diff)
parent79992a8d507c6091ed3ebb4bdb84e72684058a5f (diff)
downloadraylib-fef5be0bc79c366551d9b2fffd18ece8d3ddec8f.tar.gz
raylib-fef5be0bc79c366551d9b2fffd18ece8d3ddec8f.zip
Merge branch 'master' of https://github.com/raysan5/raylib
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