diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-12-05 18:13:17 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-12-05 18:13:17 +0100 |
commit | a827a8ad5a7b2ffdd83c0eeba82ec7468df321f9 (patch) | |
tree | 81c978083b385b9b93b654ffc18b98a15e76de6b /src/arch/esp8266 | |
parent | d0157ffa16adaf59d56148e39f9397b348e72f8e (diff) |
support static analysis of stack usage
Diffstat (limited to 'src/arch/esp8266')
-rw-r--r-- | src/arch/esp8266/Makefile.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/arch/esp8266/Makefile.inc b/src/arch/esp8266/Makefile.inc index f9b6d85..ca28d1c 100644 --- a/src/arch/esp8266/Makefile.inc +++ b/src/arch/esp8266/Makefile.inc @@ -10,6 +10,7 @@ CXX = ${TOOLCHAIN_BASE}/xtensa-lx106-elf-g++ AR = ${TOOLCHAIN_BASE}/xtensa-lx106-elf-ar LD = ${TOOLCHAIN_BASE}/xtensa-lx106-elf-gcc OBJCOPY = ${TOOLCHAIN_BASE}/xtensa-lx106-elf-objcopy +OBJDUMP = ${TOOLCHAIN_BASE}/xtensa-lx106-elf-objdump ifeq (${aspectc}, 1) CXX = ag++ -r build/repo.acp -v 0 --c_compiler ${TOOLCHAIN_BASE}/xtensa-lx106-elf-g++ -p . --Xcompiler |