summaryrefslogtreecommitdiff
path: root/Rules.mak
diff options
context:
space:
mode:
authorManuel Novoa III <mjn3@codepoet.org>2004-07-16 20:22:22 +0000
committerManuel Novoa III <mjn3@codepoet.org>2004-07-16 20:22:22 +0000
commit3c44c596c12a210444001fd590f6ede89a11a737 (patch)
tree98c3b6d02c39a2507febb04e6d14c9638ca60ae0 /Rules.mak
parent25d1e1b4133b871195e0bb1dd4062190cf189a8a (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.mak6
1 files changed, 5 insertions, 1 deletions
diff --git a/Rules.mak b/Rules.mak
index e845f8196..1dbd392b2 100644
--- a/Rules.mak
+++ b/Rules.mak
@@ -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