diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-11-14 16:43:33 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-11-14 16:43:33 +0100 |
commit | 290b099a39406d110a8f15dc7f23558afb1dab48 (patch) | |
tree | 48002b126698bad91dcd77b34d8fd01d96904dcf /Makefile | |
parent | ef50d0a6950b8fc209f90a2c89780657e318f1d7 (diff) |
no-rtti no-threadsafe-statics
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,9 +1,9 @@ default: build/system.elf INCLUDES = -Iinclude -Iinclude/arch/${arch} -COMMON_FLAGS = -g -Os -Wall -Wextra -fno-rtti -fno-threadsafe-statics +COMMON_FLAGS = -g -Os -Wall -Wextra CFLAGS = -std=c99 -CXXFLAGS = -std=c++14 +CXXFLAGS = -std=c++14 -fno-rtti -fno-threadsafe-statics C_TARGETS = CXX_TARGETS = src/app/${app}/main.cc src/os/object/cpp_helpers.cc src/os/object/outputstream.cc |