diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2004-07-16 20:22:22 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2004-07-16 20:22:22 +0000 |
commit | 3c44c596c12a210444001fd590f6ede89a11a737 (patch) | |
tree | 98c3b6d02c39a2507febb04e6d14c9638ca60ae0 /Rules.mak | |
parent | 25d1e1b4133b871195e0bb1dd4062190cf189a8a (diff) |
Hide the arm libfloat support for now. No longer needed for gcc 3.4.1 and
won't be needed for 3.3.4 either when I get some time to clean up that
toolchain which also suffers from the g++ include dir search order bug.
Diffstat (limited to 'Rules.mak')
-rw-r--r-- | Rules.mak | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -202,9 +202,13 @@ LDADD_LIBFLOAT= ifeq ($(strip $(UCLIBC_HAS_SOFT_FLOAT)),y) # Add -msoft-float to the CPU_FLAGS since ldso and libdl ignore CFLAGS. # If -msoft-float isn't supported, we want an error anyway. +# Hmm... might need to revisit this for arm since it has 2 different +# soft float encodings. CPU_CFLAGS += -msoft-float ifeq ($(strip $(TARGET_ARCH)),arm) - LDADD_LIBFLOAT=-lfloat +# No longer needed with current toolchains, but leave it here for now. +# If anyone is actually still using gcc 2.95 (say), they can uncomment it. +# LDADD_LIBFLOAT=-lfloat endif endif |