diff options
author | David McCullough <davidm@snapgear.com> | 2001-06-07 11:49:53 +0000 |
---|---|---|
committer | David McCullough <davidm@snapgear.com> | 2001-06-07 11:49:53 +0000 |
commit | d0c25d2349225c6c1f10cb30df9ff85156856404 (patch) | |
tree | cb32a8b9d09a394a54bc96146de403f2a62bb8f0 /extra | |
parent | 0a4aa6c3ee0ac38902f1f04c2afc63a56c2d7303 (diff) |
Up the m68k defaults a little so that uClibc will support a g++ build.
Diffstat (limited to 'extra')
-rw-r--r-- | extra/Configs/Config.m68k | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/extra/Configs/Config.m68k b/extra/Configs/Config.m68k index 8ae75d2fb..25c874d31 100644 --- a/extra/Configs/Config.m68k +++ b/extra/Configs/Config.m68k @@ -66,25 +66,25 @@ HAS_MMU = false # Set this to `false' if you don't have/need basic floating point support # support in libc (strtod, printf, scanf). Set it to `true' otherwise. # Note: If not true, Rules.mak disables libm as well. -HAS_FLOATING_POINT = false +HAS_FLOATING_POINT = true # Set this to `false' if you don't have/need float functions in libm. # Set it to `true' otherwise, and make sure HAS_FLOATING_POINT is true as well. -HAS_LIBM_FLOAT = false +HAS_LIBM_FLOAT = true # Set this to `false' if you don't have/need double functions in libm. # Set it to `true' otherwise, and make sure HAS_FLOATING_POINT is true as well. -HAS_LIBM_DOUBLE = false +HAS_LIBM_DOUBLE = true # Set this to `false' if you don't have/need long double functions in libm. # Set it to `true' otherwise, and make sure HAS_FLOATING_POINT is true as well. -HAS_LIBM_LONG_DOUBLE = false +HAS_LIBM_LONG_DOUBLE = true # Set this to `false' if you don't have/need "(unsigned) long long int" support. # Set it to `true' otherwise. # Affects *printf and *scanf functions. # Also omits strto(u)ll, and (u)lltostr from the library if `false'. -HAS_LONG_LONG = false +HAS_LONG_LONG = true # Set this to `false' if you don't have/need locale support; `true' otherwise. # Note: Currently only affects the ctype functions. You must also generate |