--disable-native appears to work (needs more testing)

This commit is contained in:
Clifford T. Matthews 2009-06-08 11:36:57 -06:00
parent 7c09cb5fb8
commit 01acac518c
4 changed files with 10 additions and 6 deletions

11
TODO
View File

@ -1,7 +1,11 @@
Non-native version can't be built
--enable-native should default to true IFF on i386
may need to dig into ancient svn history to find old
makefiles that used to build it
x86_64 (non-native) doesn't run
try to get non-native i386 running first
look at how we convert between Mac addresses and pointers
(especially look at code we used to use on alpha)
Mac OS X fixes:
@ -39,4 +43,3 @@
need a .spec file so we can build syn68k and syn68k-devel
RPMS

View File

@ -61,18 +61,19 @@ esac
AC_SUBST(host_cpu_class)
HOST_NATIVE="native/i386"
AC_SUBST(HOST_NATIVE)
AC_ARG_ENABLE([native],
AC_HELP_STRING([--enable-native],
[native or nonnative (default is native)]),
[var_native=$enable_native], [var_native=yes] )
if test "$var_native" = "yes"; then
HOST_NATIVE="native/i386"
NO_NATIVE=FALSE
else
HOST_NATIVE="native/null"
NO_NATIVE=TRUE
fi
AC_SUBST(HOST_NATIVE)
AC_SUBST(NO_NATIVE)
AC_ARG_ENABLE([debug],

View File

View File