aboutsummaryrefslogtreecommitdiff
path: root/Makefile.shared
diff options
context:
space:
mode:
authorAlexander M Pickering <alex@cogarr.net>2022-12-06 18:10:36 -0600
committerAlexander M Pickering <alex@cogarr.net>2022-12-06 18:10:36 -0600
commit844ba2e9468a05be6c72d00ccc95736286ff684b (patch)
tree7777dd97ddbf2132237b6f7fb8e3cacc932fac7e /Makefile.shared
parent4f696de1b9f24f3e0bd62c461b9b98e5a25d619d (diff)
downloadbrokengine-844ba2e9468a05be6c72d00ccc95736286ff684b.tar.gz
brokengine-844ba2e9468a05be6c72d00ccc95736286ff684b.tar.bz2
brokengine-844ba2e9468a05be6c72d00ccc95736286ff684b.zip
Add the permissive flag to non-debug builds
Diffstat (limited to 'Makefile.shared')
-rw-r--r--Makefile.shared2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.shared b/Makefile.shared
index 2ed32f4..538dc74 100644
--- a/Makefile.shared
+++ b/Makefile.shared
@@ -68,6 +68,6 @@ ifeq ($(DEBUG), true)
CFLAGS += -g -shared -Wall -Werror -fPIC
LDFLAGS += #-shared #The -shared flags seemes to break the binary whever there's a windows update.
else
- CFLAGS += -static -O3
+ CFLAGS += -static -O3 -fpermissive
LDFLAGS += -static
endif