mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-02 01:40:07 +00:00
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
|