This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RFC : enable libgcj on freebsd-x86_64


Hello,

since January commits to boehm-gc for handling amd64/x86-64 cpu under
GNU/kFreeBSD, I confirm that libgcj-support is OK for x86_64*freebsd
(which closes bug http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25652).
Testsuite gives 17 failures on -head, 22 on 4_2_branch.

Tested on 6.2-STABLE-amd64 with out-of-src-tree build configured
with '../../gcc/configure --prefix=/XXX --enable-languages=c,c++,fortran,java'

Could someone please commit the attached patch to configure.ac and
regenerate configure?

Suggested ChangeLog entry :


  2007-03-11  Arno J. Klaassen <arno@heho.snv.jussieu.fr>

        * configure.ac (*-*-freebsd*): No longer exclude libgcj on x86_64.
        * configure: Regenerate.

Best regars and thanx for your great work.


Arno

Index: configure.ac
===================================================================
--- configure.ac	(revision 122751)
+++ configure.ac	(working copy)
@@ -422,6 +422,7 @@
     # Skip some stuff that's unsupported on some FreeBSD configurations.
     case "${target}" in
       i*86-*-*) ;;
+      x86_64-*-*) ;;
       alpha*-*-*) ;;
       *)
 	noconfigdirs="$noconfigdirs ${libgcj}"

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]