diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2020-10-27 21:27:24 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2020-10-28 04:10:29 +0000 |
commit | 41a6da604380962a3d7b352e20dcfc1b712ecc4e (patch) | |
tree | 2ec99cfa11896d442a8fe33a525ca84b7efdf7f1 | |
parent | bcbf8bbf0a0884d66eab55747f9787c393ca7e1a (diff) | |
download | rockbox-41a6da6.tar.gz rockbox-41a6da6.zip |
builds: Enable -fno-delete-null-pointer-checks globally
* arm failures in lua, wolf3d, quake, flac
* m68k failures in lua, wmapro
* mips ???
I still think that most of these are actually due to latent bugs or
ambiguous code.
Change-Id: I4c9751d2b5c7a66253b313bfbc75fcd721b118d6
-rwxr-xr-x | tools/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure index 8d00be434d..63d26e6b68 100755 --- a/tools/configure +++ b/tools/configure @@ -8,7 +8,7 @@ # # global CC options for all platforms -CCOPTS="-W -Wall -Wextra -Wundef -Os -nostdlib -ffreestanding -Wstrict-prototypes -pipe -std=gnu99 -funit-at-a-time" +CCOPTS="-W -Wall -Wextra -Wundef -Os -nostdlib -ffreestanding -Wstrict-prototypes -pipe -std=gnu99 -funit-at-a-time -fno-delete-null-pointer-checks" # LD options for the core LDOPTS="" |