diff options
Diffstat (limited to 'Makeconfig')
-rw-r--r-- | Makeconfig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Makeconfig b/Makeconfig index 78852dc234..b2c81e1faa 100644 --- a/Makeconfig +++ b/Makeconfig @@ -716,6 +716,12 @@ CPPFLAGS-.oS = $(CPPFLAGS-.o) -DPIC -DLIBC_NONSHARED=1 libtype.oS = lib%_nonshared.a endif +# The assembler can generate debug information too. +ifndef ASFLAGS +ifeq ($(have-cpp-asm-debuginfo),yes) +ASFLAGS := $(filter -g%,$(CFLAGS)) +endif +endif +gnu-stabs = $(shell echo>&2 '*** BARF ON ME') |