diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2019-06-21 08:16:50 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2019-06-21 08:16:50 +0200 |
commit | 6f9e50ca58623e551baa81fa635471b0b340f5af (patch) | |
tree | 4528f77e8bd4932720bdb0a5a3833ad4d0a14b07 /Makefile | |
parent | 09017a564fd9c9ea1f906c7e4d3e98e98c40d573 (diff) |
compile code with -fno-exceptions
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ default: build/system.elf INCLUDES = -Iinclude -Iinclude/arch/${arch} COMMON_FLAGS = -g -Os -Wall -Wextra CFLAGS = -std=c99 -CXXFLAGS = -std=c++14 -fno-rtti -fno-threadsafe-statics +CXXFLAGS = -std=c++14 -fno-rtti -fno-threadsafe-statics -fno-exceptions ASM_TARGETS = C_TARGETS = |