c8a0e2f4c6
This commit finalizes support for cross compilation. The tools directory are all links to the actual tools and are built on the host system to build Minix. build.sh is the work horse that takes care of all environment settings. It's slightly adjusted for Minix. The /usr/src/Makefile has additional targets needed for cross compilation.
36 lines
1.2 KiB
Text
36 lines
1.2 KiB
Text
$NetBSD$
|
|
|
|
--- gcc/ginclude/stddef.h.orig Thu Apr 9 23:23:07 2009
|
|
+++ gcc/ginclude/stddef.h
|
|
@@ -58,6 +58,9 @@ see the files COPYING3 and COPYING.RUNTIME respectivel
|
|
#if defined (__FreeBSD__) && (__FreeBSD__ >= 5)
|
|
#include <sys/_types.h>
|
|
#endif
|
|
+#if defined (__minix)
|
|
+#include <minix/types.h>
|
|
+#endif
|
|
|
|
/* In 4.3bsd-net2, machine/ansi.h defines these symbols, which are
|
|
defined if the corresponding type is *not* defined.
|
|
--- libjava/boehm.cc.orig 2011-03-05 18:09:36.000000000 +0000
|
|
+++ libjava/boehm.cc
|
|
@@ -747,7 +747,8 @@ _Jv_GCAttachThread ()
|
|
// The registration interface is only defined on posixy systems and
|
|
// only actually works if pthread_getattr_np is defined.
|
|
// FIXME: until gc7 it is simpler to disable this on solaris.
|
|
-#if defined(HAVE_PTHREAD_GETATTR_NP) && !defined(GC_SOLARIS_THREADS)
|
|
+#if defined(HAVE_PTHREAD_GETATTR_NP) && !defined(GC_SOLARIS_THREADS) \
|
|
+ && !defined(__NetBSD__)
|
|
GC_register_my_thread ();
|
|
#endif
|
|
}
|
|
@@ -755,7 +756,8 @@ _Jv_GCAttachThread ()
|
|
void
|
|
_Jv_GCDetachThread ()
|
|
{
|
|
-#if defined(HAVE_PTHREAD_GETATTR_NP) && !defined(GC_SOLARIS_THREADS)
|
|
+#if defined(HAVE_PTHREAD_GETATTR_NP) && !defined(GC_SOLARIS_THREADS) \
|
|
+ && !defined(__NetBSD__)
|
|
GC_unregister_my_thread ();
|
|
#endif
|
|
}
|