diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2006-09-23 01:37:41 +0100 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-09-26 15:24:35 +1000 |
commit | 054e51a44bc63878430c30b137be20600bcf01e0 (patch) | |
tree | 38927e9f5d3f43f32a535ef7d85a7b25eaca9908 /arch/powerpc/math-emu | |
parent | 8306e511d2d95d912fe2d879a0fe115b4b6d360d (diff) |
[POWERPC] ppc math-emu needs -fno-builtin-fabs for math.c and fabs.c
... since they deal with internal function with that name.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/math-emu')
-rw-r--r-- | arch/powerpc/math-emu/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/powerpc/math-emu/Makefile b/arch/powerpc/math-emu/Makefile index 754143e8936b..29bc9126241b 100644 --- a/arch/powerpc/math-emu/Makefile +++ b/arch/powerpc/math-emu/Makefile @@ -11,3 +11,6 @@ obj-$(CONFIG_MATH_EMULATION) += fabs.o fadd.o fadds.o fcmpo.o fcmpu.o \ mcrfs.o mffs.o mtfsb0.o mtfsb1.o \ mtfsf.o mtfsfi.o stfiwx.o stfs.o \ udivmodti4.o + +CFLAGS_fabs.o = -fno-builtin-fabs +CFLAGS_math.o = -fno-builtin-fabs |