diff options
Diffstat (limited to 'extra/Configs/Config.m68k.coff')
-rw-r--r-- | extra/Configs/Config.m68k.coff | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/extra/Configs/Config.m68k.coff b/extra/Configs/Config.m68k.coff index bb9fc3369..32473466e 100644 --- a/extra/Configs/Config.m68k.coff +++ b/extra/Configs/Config.m68k.coff @@ -66,19 +66,19 @@ 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. @@ -165,3 +165,6 @@ OPTIMIZATION = $(DEBUG_CFLAGS) # This is a COFF compiler (ick), so disable all the cool stuff HAVE_ELF = false + +# We can't properly do shared libraries on m68k (at least, not yet ;-) +HAVE_SHARED = false |