diff options
author | Philip Herron <herron.philip@googlemail.com> | 2019-12-17 21:42:42 +0000 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-12-19 18:35:03 +0100 |
commit | c73aa662bba17b50404d3820655847cc9c4c6a44 (patch) | |
tree | c49886bf1e1176d0d799d032504ac6202cba4354 /Makefile.common | |
parent | 1c9742a4a5883b2675e4d2d03274532022672426 (diff) | |
download | serenity-c73aa662bba17b50404d3820655847cc9c4c6a44.zip |
Update toolchain to binutils-2.33.1 gcc-9.2.0
Toolchain build makes git repo out of toolchain to allow patching
Fix Makefiles to use new libstdc++
Parameterize BuildIt with default TARGET of i686 but arm is experimental
Diffstat (limited to 'Makefile.common')
-rw-r--r-- | Makefile.common | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.common b/Makefile.common index fddac1b9b9..b75635604e 100644 --- a/Makefile.common +++ b/Makefile.common @@ -1,6 +1,6 @@ ARCH_FLAGS = STANDARD_FLAGS = -std=c++17 -Wno-sized-deallocation -fno-sized-deallocation -WARNING_FLAGS = -Werror -Wextra -Wall -Wundef -Wcast-qual -Wwrite-strings -Wimplicit-fallthrough -Wno-expansion-to-defined +WARNING_FLAGS = -Werror -Wextra -Wall -Wno-nonnull-compare -Wno-deprecated-copy -Wno-address-of-packed-member -Wundef -Wcast-qual -Wwrite-strings -Wimplicit-fallthrough -Wno-expansion-to-defined FLAVOR_FLAGS = -fno-exceptions -fno-rtti OPTIMIZATION_FLAGS = -Os |