changeset 65:03b1a105d70e

actions: CC_FLAGS->CFLAGS
author Paper <37962225+mrpapersonic@users.noreply.github.com>
date Fri, 05 Aug 2022 23:47:32 -0400
parents 83b8fdb45d5e
children c8b91b8c2a64
files .github/workflows/build.yml
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/.github/workflows/build.yml	Fri Aug 05 23:46:44 2022 -0400
+++ b/.github/workflows/build.yml	Fri Aug 05 23:47:32 2022 -0400
@@ -31,8 +31,8 @@
       run: |
         set PATH=C:\MinGW\bin;%PATH%
         set CC=mingw32-gcc
-        mingw32-make CC_FLAGS=-static
-        mingw32-make gui CC_FLAGS=-static
+        mingw32-make CFLAGS=-static
+        mingw32-make gui CFLAGS=-static
         strip msvpvf.exe
         strip gui.exe
       shell: cmd
@@ -66,8 +66,8 @@
     - name: make
       run: |
         export CC=clang
-        make CC_FLAGS=-static
-        make gui CC_FLAGS=-static
+        make CFLAGS=-static
+        make gui CFLAGS=-static
         strip msvpvf.exe
         strip gui.exe