diff options
author | Ulrich Drepper <drepper@redhat.com> | 2005-01-23 04:42:14 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2005-01-23 04:42:14 +0000 |
commit | 70fb71fd6a07f0158b1afb12877e6b91987eb4d3 (patch) | |
tree | 4b0730e3944ffac62fc7236071c735dc5108fbe8 | |
parent | 6bbc689ee3d8fcba26b73901a543177dff14f68e (diff) | |
download | glibc-70fb71fd6a07f0158b1afb12877e6b91987eb4d3.tar glibc-70fb71fd6a07f0158b1afb12877e6b91987eb4d3.tar.gz glibc-70fb71fd6a07f0158b1afb12877e6b91987eb4d3.tar.bz2 glibc-70fb71fd6a07f0158b1afb12877e6b91987eb4d3.zip |
Update.
2005-01-22 Ulrich Drepper <drepper@redhat.com>
* posix/Makefile: Use CFLAGS-*.os instead of CFLAGS-*.c for frame
pointer option.
* stdlib/Makefile (CFLAGS-system.os): Use this instead of
CFLAGS-system.c for frame pointer option.
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | posix/Makefile | 26 |
2 files changed, 23 insertions, 11 deletions
@@ -1,3 +1,11 @@ +2005-01-22 Ulrich Drepper <drepper@redhat.com> + + * posix/Makefile: Use CFLAGS-*.os instead of CFLAGS-*.c for frame + pointer option. + + * stdlib/Makefile (CFLAGS-system.os): Use this instead of + CFLAGS-system.c for frame pointer option. + 2005-01-21 Roland McGrath <roland@redhat.com> * elf/dl-runtime.c (_dl_profile_fixup): Remove const from REGS. diff --git a/posix/Makefile b/posix/Makefile index 1fdb57c91d..929ea47790 100644 --- a/posix/Makefile +++ b/posix/Makefile @@ -138,24 +138,28 @@ CFLAGS-wait.c = -fexceptions -fasynchronous-unwind-tables CFLAGS-waitid.c = -fexceptions CFLAGS-waitpid.c = -fexceptions -fasynchronous-unwind-tables CFLAGS-getopt.c = -fexceptions -CFLAGS-wordexp.c = -fexceptions -fomit-frame-pointer +CFLAGS-wordexp.c = -fexceptions +CFLAGS-wordexp.os = -fomit-frame-pointer CFLAGS-sysconf.c = -fexceptions -DGETCONF_DIR='"$(libexecdir)/getconf"' CFLAGS-pathconf.c = -fexceptions CFLAGS-fpathconf.c = -fexceptions -CFLAGS-spawn.c = -fexceptions -fomit-frame-pointer -CFLAGS-spawnp.c = -fexceptions -fomit-frame-pointer -CFLAGS-spawni.c = -fexceptions -fomit-frame-pointer +CFLAGS-spawn.c = -fexceptions +CFLAGS-spawn.os = -fomit-frame-pointer +CFLAGS-spawnp.c = -fexceptions +CFLAGS-spawnp.os = -fomit-frame-pointer +CFLAGS-spawni.c = -fexceptions +CFLAGS-spawni.os = -fomit-frame-pointer CFLAGS-pause.c = -fexceptions CFLAGS-glob.c = $(uses-callbacks) -fexceptions CFLAGS-glob64.c = $(uses-callbacks) -fexceptions CFLAGS-getconf.c = -DGETCONF_DIR='"$(libexecdir)/getconf"' -CFLAGS-execve.c = -fomit-frame-pointer -CFLAGS-fexecve.c = -fomit-frame-pointer -CFLAGS-execv.c = -fomit-frame-pointer -CFLAGS-execle.c = -fomit-frame-pointer -CFLAGS-execl.c = -fomit-frame-pointer -CFLAGS-execvp.c = -fomit-frame-pointer -CFLAGS-execlp.c = -fomit-frame-pointer +CFLAGS-execve.os = -fomit-frame-pointer +CFLAGS-fexecve.os = -fomit-frame-pointer +CFLAGS-execv.os = -fomit-frame-pointer +CFLAGS-execle.os = -fomit-frame-pointer +CFLAGS-execl.os = -fomit-frame-pointer +CFLAGS-execvp.os = -fomit-frame-pointer +CFLAGS-execlp.os = -fomit-frame-pointer tstgetopt-ARGS = -a -b -cfoobar --required foobar --optional=bazbug \ --none random --col --color --colour |