diff options
author | Andi Kleen | 2007-08-15 02:40:37 +0200 |
---|---|---|
committer | Linus Torvalds | 2007-08-18 19:25:25 +0200 |
commit | f0f12d85af8593e45fdf4a4d4c7cad240a6787a2 (patch) | |
tree | 6277016bd6aae2acebd03e462215f8350038419b /arch/x86_64/Makefile | |
parent | x86_64: Change PMDS invocation to single macro (diff) | |
download | kernel-qcow2-linux-f0f12d85af8593e45fdf4a4d4c7cad240a6787a2.tar.gz kernel-qcow2-linux-f0f12d85af8593e45fdf4a4d4c7cad240a6787a2.tar.xz kernel-qcow2-linux-f0f12d85af8593e45fdf4a4d4c7cad240a6787a2.zip |
x86_64: Check for .cfi_rel_offset in CFI probe
Very old 64bit binutils have .cfi_startproc/endproc, but
no .cfi_rel_offset. Check for .cfi_rel_offset too.
Cc: Jan Beulich <jbeulich@novell.com>
Cc: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/x86_64/Makefile')
-rw-r--r-- | arch/x86_64/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86_64/Makefile b/arch/x86_64/Makefile index 128561d3e876..b024e4a86895 100644 --- a/arch/x86_64/Makefile +++ b/arch/x86_64/Makefile @@ -57,8 +57,8 @@ cflags-y += $(call cc-option,-mno-sse -mno-mmx -mno-sse2 -mno-3dnow,) cflags-y += -maccumulate-outgoing-args # do binutils support CFI? -cflags-y += $(call as-instr,.cfi_startproc\n.cfi_endproc,-DCONFIG_AS_CFI=1,) -AFLAGS += $(call as-instr,.cfi_startproc\n.cfi_endproc,-DCONFIG_AS_CFI=1,) +cflags-y += $(call as-instr,.cfi_startproc\n.cfi_rel_offset rsp${comma}0\n.cfi_endproc,-DCONFIG_AS_CFI=1,) +AFLAGS += $(call as-instr,.cfi_startproc\n.cfi_rel_offset rsp${comma}0\n.cfi_endproc,-DCONFIG_AS_CFI=1,) # is .cfi_signal_frame supported too? cflags-y += $(call as-instr,.cfi_startproc\n.cfi_signal_frame\n.cfi_endproc,-DCONFIG_AS_CFI_SIGNAL_FRAME=1,) |