This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[PATCH] Disable java and boehm-gc for Blackfin
- From: Jie Zhang <jie dot zhang at analog dot com>
- To: Bernd Schmidt <bernds_cb1 at t-online dot de>
- Cc: GCC Patches <gcc-patches at gcc dot gnu dot org>
- Date: Tue, 15 Sep 2009 16:59:26 +0800
- Subject: [PATCH] Disable java and boehm-gc for Blackfin
Blackfin port does not support JAVA now. So disable java and boehm-gc
for bfin-*-* targets. Is it OK?
Jie
* configure.ac: Disable java and boehm-gc for bfin-*-*.
* configure: Regenerate.
Index: configure.ac
===================================================================
--- configure.ac (revision 151707)
+++ configure.ac (working copy)
@@ -603,7 +603,8 @@
noconfigdirs="$noconfigdirs target-libiberty target-libstdc++-v3 ${libgcj} target-libssp"
;;
bfin-*-*)
- noconfigdirs="$noconfigdirs gdb"
+ unsupported_languages="$unsupported_languages java"
+ noconfigdirs="$noconfigdirs target-boehm-gc gdb"
if test x${is_cross_compiler} != xno ; then
target_configdirs="${target_configdirs} target-bsp target-cygmon"
fi