From: Paul Pluzhnikov Date: Tue, 6 Apr 2010 03:17:37 +0000 (-0700) Subject: Propagate -fdebug-prefix-map from CFLAGS to ASFLAGS. X-Git-Tag: fedora/glibc-2.11.90-17~2^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2e7c805d5ec1f0d2f46354bca65b1feffa7af63b;p=thirdparty%2Fglibc.git Propagate -fdebug-prefix-map from CFLAGS to ASFLAGS. --- diff --git a/ChangeLog b/ChangeLog index 6803147f895..48bdfecec44 100644 --- a/ChangeLog +++ b/ChangeLog @@ -9,6 +9,10 @@ * elf/rtld.c (dl_main) [HAVE_AUX_VECTOR]: Add a cast. +2010-03-30 Paul Pluzhnikov + + * Makeconfig: Propagate -fdebug-prefix-map from CFLAGS to ASFLAGS. + 2010-03-30 Joseph Myers * elf/elf.h (ELFOSABI_ARM_AEABI): Define. diff --git a/Makeconfig b/Makeconfig index 15cd4caad53..cd77fe16b81 100644 --- a/Makeconfig +++ b/Makeconfig @@ -1,4 +1,4 @@ -# Copyright (C) 1991-2003,2004,2005,2006,2007,2008,2009 +# Copyright (C) 1991-2003,2004,2005,2006,2007,2008,2009,2010 # Free Software Foundation, Inc. # This file is part of the GNU C Library. @@ -780,7 +780,7 @@ endif # The assembler can generate debug information too. ifndef ASFLAGS ifeq ($(have-cpp-asm-debuginfo),yes) -ASFLAGS := $(filter -g%,$(CFLAGS)) +ASFLAGS := $(filter -g% -fdebug-prefix-map=%,$(CFLAGS)) else ASFLAGS := endif