diff options
author | Ulrich Drepper <drepper@redhat.com> | 2009-05-09 15:59:55 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-05-09 15:59:55 +0000 |
commit | 23b6b4664622ba8efb728b1cd02c2992a4a1b717 (patch) | |
tree | c6d6d8895276daaf34d6e222ebb6b72f9be25a0e /config.make.in | |
parent | 15417de3e0f219574fb1f63dae24c33c5afb73e7 (diff) | |
download | glibc-23b6b4664622ba8efb728b1cd02c2992a4a1b717.tar glibc-23b6b4664622ba8efb728b1cd02c2992a4a1b717.tar.gz glibc-23b6b4664622ba8efb728b1cd02c2992a4a1b717.tar.bz2 glibc-23b6b4664622ba8efb728b1cd02c2992a4a1b717.zip |
[BZ #10118]
2009-05-06 Ryan S. Arnold <rsa@us.ibm.com>
[BZ #10118]
* Makeconfig (+asflags): New variable based upon ASFLAG or
asflags-cpu.
(ASFLAGS): Add override to set ASFLAGS to +asflags.
* config.make.in (asflags-cpu): Add variable based upon
@libc_cv_cc_submachine@ to propagate -mcpu=CPU from --with-cpu=CPU to
the assembler.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/fpu/setcontext.S:
Remove unneeded file now that the assembler emits _ARCH_PWR6 and
recognizes power6 instruction set due to passing -mcpu=power6 from
--with-cpu=power6 when compiling .S files.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/fpu/swapcontext.S:
Likewise.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/fpu/setcontext.S:
Likewise.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/fpu/swapcontext.S:
Likewise.
Diffstat (limited to 'config.make.in')
-rw-r--r-- | config.make.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config.make.in b/config.make.in index 73faa77b6f..e48ea2658d 100644 --- a/config.make.in +++ b/config.make.in @@ -32,6 +32,7 @@ config-vendor = @host_vendor@ config-os = @host_os@ config-sysdirs = @sysnames@ cflags-cpu = @libc_cv_cc_submachine@ +asflags-cpu = @libc_cv_cc_submachine@ defines = @DEFINES@ sysincludes = @SYSINCLUDES@ |