diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2001-05-28 14:38:12 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2001-05-28 14:38:12 +0000 |
commit | eba708a62b5bb255a3ba79ab29e9259118aaef34 (patch) | |
tree | 449e93560ecdad1ce9b16edb1f9d01510abf97a0 /Rules.mak | |
parent | 54ebc8099e32cb836c33bbb3744e6e498d6257af (diff) |
Make selection of uClibc floating point support in printf, etc. seperate
from libm float function support. Also, move all Config files out of the
main directory.
Diffstat (limited to 'Rules.mak')
-rw-r--r-- | Rules.mak | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -85,6 +85,12 @@ else DYNAMIC_LINKER=$(SYSTEM_LDSO) endif +# Disable libm if HAS_FLOATING_POINT isn't true. +ifneq ($(HAS_FLOATING_POINT),true) + HAS_LIBM_FLOAT = false + HAS_LIBM_DOUBLE = false + HAS_LIBM_LONG_DOUBLE = false +endif # It turns out the currently, function-sections causes ldelf2flt to segfault. # So till further notice, this is disabled by default.... |