diff options
author | 2018-11-29 14:10:27 +1100 | |
---|---|---|
committer | 2018-11-29 14:10:27 +1100 | |
commit | c2dc4316bdfb59972c2d1b204f46f059f898ea0f (patch) | |
tree | 8dac044df4a6e9f53af08fd4ae32a46c74405ab6 /scripts/toolchain.lua | |
parent | b568e6deab3edaea3f4a15a0253ad64fc5a9897b (diff) |
(nw) fix stuff:
* Add per-language compiler flag options to help with exotic setups
* Get rid of a potention buffer overrun in NuBus image card
* CHAR_WIDTH and LONG_WIDTH are preprocessor macros in limits.h with glibc if __GLIBC_USE (IEC_60559_BFP_EXT) is enabled - avoid using them as names
* Make formats/upd765_dsk.h slightly safer with defualt initialisers for key format members
* Don't rely on random BSS data being zero in imagedev/floppy.cpp
Diffstat (limited to 'scripts/toolchain.lua')
-rw-r--r-- | scripts/toolchain.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/toolchain.lua b/scripts/toolchain.lua index f270d3f69b8..79378f83d2a 100644 --- a/scripts/toolchain.lua +++ b/scripts/toolchain.lua @@ -16,7 +16,7 @@ newoption { description = "Choose GCC flavor", allowed = { { "android-arm", "Android - ARM" }, - { "android-arm64", "Android - ARM64" }, + { "android-arm64", "Android - ARM64" }, { "android-mips", "Android - MIPS" }, { "android-mips64","Android - MIPS64" }, { "android-x86", "Android - x86" }, |