mirror of
https://github.com/ctm/syn68k.git
synced 2024-11-24 15:32:27 +00:00
--disable-native appears to work (needs more testing)
This commit is contained in:
parent
7c09cb5fb8
commit
01acac518c
11
TODO
11
TODO
@ -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
|
||||
|
||||
|
@ -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],
|
||||
|
0
runtime/native/null/host-xlate.h
Normal file
0
runtime/native/null/host-xlate.h
Normal file
0
runtime/native/null/subdir-stmp
Normal file
0
runtime/native/null/subdir-stmp
Normal file
Loading…
Reference in New Issue
Block a user