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 /src/arch/esp8266 | |
parent | ef50d0a6950b8fc209f90a2c89780657e318f1d7 (diff) |
no-rtti no-threadsafe-statics
Diffstat (limited to 'src/arch/esp8266')
-rw-r--r-- | src/arch/esp8266/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/esp8266/Makefile.inc b/src/arch/esp8266/Makefile.inc index ed9f05a..1df3e5a 100644 --- a/src/arch/esp8266/Makefile.inc +++ b/src/arch/esp8266/Makefile.inc @@ -17,7 +17,7 @@ endif INCLUDES += -I${SDK_BASE}/include COMMON_FLAGS += -nostdlib -mlongcalls -D__ets__ -DICACHE_FLASH -DMULTIPASS_ARCH_esp8266 -CXXFLAGS = -std=c++11 +CXXFLAGS = -std=c++11 -fno-rtti -fno-threadsafe-statics LDFLAGS += -nostdlib -Wl,--no-check-sections -u call_user_start -Wl,-static CXX_TARGETS += src/arch/esp8266/arch.cc src/arch/esp8266/driver/gpio.cc |