From 1a82fd2b924fe277e83ee13a0c73e15666af4def Mon Sep 17 00:00:00 2001 From: rxi Date: Sat, 13 Jun 2020 13:35:36 +0100 Subject: [PATCH] Added `-fno-strict-aliasing` to build script --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index ffd1d01..308ebf9 100755 --- a/build.sh +++ b/build.sh @@ -1,6 +1,6 @@ #!/bin/bash -cflags="-Wall -O3 -g -std=gnu11 -Isrc" +cflags="-Wall -O3 -g -std=gnu11 -fno-strict-aliasing -Isrc" lflags="-lSDL2 -lm" if [[ $* == *windows* ]]; then