diff options
| author | iamcheeseman <[email protected]> | 2026-05-26 16:13:24 -0400 |
|---|---|---|
| committer | iamcheeseman <[email protected]> | 2026-05-26 16:13:24 -0400 |
| commit | 8816be54ee97cbcdc5e4936279989985c8221b21 (patch) | |
| tree | c0316f197cf7cb1991af18e07f4d478f8728d824 /build.sh | |
| parent | 2d64ec0a686173b084e02172bb77bd0ec3abdf1d (diff) | |
disable `-Woverride-init-side-effects`
Diffstat (limited to 'build.sh')
| -rwxr-xr-x | build.sh | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -5,8 +5,10 @@ set -e source build.env INC="-Iteensy -Iteensy/platform/$PLATFORM -Idc -Ieditor" -CFLAGS="$INC -Wall -Wextra -std=c99 -D_XOPEN_SOURCE=700 -O2" -LDFLAGS=-lm +WARN="-Wall -Wextra -Wno-override-init-side-effects" +# Dumb warning ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +# Absolutely dreadful. +CFLAGS="$INC $WARN -std=c99 -D_XOPEN_SOURCE=700 -O2" LDFLAGS=-lm DO_RUN=0 |
