diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-12-07 13:12:13 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-12-07 13:12:13 +0100 |
commit | 00205e4996df209dc43664af7c171d34c2e97cda (patch) | |
tree | 973fce7058b2ef2d3228471a01a191e0fd5f308a /Makefile | |
parent | 32f50fd665992f43e099fe195f94153100bf1574 (diff) |
use custom stack analyzer
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -128,9 +128,9 @@ endif include src/arch/${arch}/Makefile.inc stack: default - @test -n "${OBJDUMP}" - @test -n "${ARCH_CALL_COST}" - @./avstack.pl ${OBJDUMP} ${ARCH_CALL_COST} ${OBJECTS} + ${QUIET}test -n "${OBJDUMP}" + ${QUIET}test -n "${ARCH_SHORTNAME}" + ${QUIET}./static-stack-analyze.pl ${OBJDUMP} ${ARCH_SHORTNAME} ${OBJECTS} clean: arch_clean rm -f build/system.elf |