mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-03 18:31:04 +00:00
a72cc2b29d
This patch provides optimized string routines for the 4XX family of PowerPC and Power Architecture processors. For the 476 processor, it can be configured for either hard-fp with -mcpu=476 --with-fp, or for soft-fp with -mcpu=476 (since the default is soft-fp).
9 lines
260 B
Makefile
9 lines
260 B
Makefile
# Some Powerpc32 variants assume soft-fp is the default even though there is
|
|
# an fp variant so provide -mhard-float if --with-fp is explicitly passed.
|
|
|
|
ifeq ($(with-fp),yes)
|
|
+cflags += -mhard-float
|
|
ASFLAGS += -mhard-float
|
|
sysdep-LDFLAGS += -mhard-float
|
|
endif
|