public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* Re: [patch] add freebsd/amd64 support to libffi
       [not found] <mailman.9994.1086581797.18468.gnu-gcc-patches@lists.nsr.labs.mot.com>
@ 2004-06-07 19:31 ` Loren James Rittle
  2004-06-07 19:55   ` Sean McNeil
  0 siblings, 1 reply; 4+ messages in thread
From: Loren James Rittle @ 2004-06-07 19:31 UTC (permalink / raw)
  To: sean; +Cc: gcc-patches

> I would like to request the following patch be incorporated to add the
> freebsd/amd64 platform:

> 2004-06-06  Sean McNeil  <sean@mcneil.com>
>
>	* configure.ac: Add x86_64-*-freebsd* support.
>	* configure: Regenerate.

Thanks Sean,

Your patch appears to be required but not sufficient to make a
meaningful change.  e.g. top-level needs to be changed to account for
the new subsystem enablement, etc.  Also, as you likely know, libffi
is only needed if you are going to configure libjava.

Regards,
Loren

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [patch] add freebsd/amd64 support to libffi
  2004-06-07 19:31 ` [patch] add freebsd/amd64 support to libffi Loren James Rittle
@ 2004-06-07 19:55   ` Sean McNeil
  0 siblings, 0 replies; 4+ messages in thread
From: Sean McNeil @ 2004-06-07 19:55 UTC (permalink / raw)
  To: Loren James Rittle; +Cc: gcc-patches

On Mon, 2004-06-07 at 12:04, Loren James Rittle wrote:
> > I would like to request the following patch be incorporated to add the
> > freebsd/amd64 platform:
> 
> > 2004-06-06  Sean McNeil  <sean@mcneil.com>
> >
> >	* configure.ac: Add x86_64-*-freebsd* support.
> >	* configure: Regenerate.
> 
> Thanks Sean,
> 
> Your patch appears to be required but not sufficient to make a
> meaningful change.  e.g. top-level needs to be changed to account for
> the new subsystem enablement, etc.  Also, as you likely know, libffi
> is only needed if you are going to configure libjava.
> 
> Regards,
> Loren

I don't know if you are aware of this or not, but currently
freebsd/amd64 has no usable javavm.  I am working in baby steps to get
gij or sablevm working.  I appreciate you pointing out my next moves.  I
will send additional patches as I work towards the ends mentioned.

Also, if there are any other people out there working towards a
functional java system on amd64 I would appreciate opening a dialog with
you.

Cheers,
Sean


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [patch] add freebsd/amd64 support to libffi
  2004-06-07  9:03 Sean McNeil
@ 2004-06-07 19:12 ` Tom Tromey
  0 siblings, 0 replies; 4+ messages in thread
From: Tom Tromey @ 2004-06-07 19:12 UTC (permalink / raw)
  To: Sean McNeil; +Cc: Gcc Patch List

>>>>> "Sean" == Sean McNeil <sean@mcneil.com> writes:

Sean> I would like to request the following patch be incorporated to
Sean> add the freebsd/amd64 platform:

Sean> 2004-06-06  Sean McNeil  <sean@mcneil.com>
Sean> 	* configure.ac: Add x86_64-*-freebsd* support.
Sean> 	* configure: Regenerate.

Looks good, I'm checking it in.

Tom

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [patch] add freebsd/amd64 support to libffi
@ 2004-06-07  9:03 Sean McNeil
  2004-06-07 19:12 ` Tom Tromey
  0 siblings, 1 reply; 4+ messages in thread
From: Sean McNeil @ 2004-06-07  9:03 UTC (permalink / raw)
  To: gcc-patches

I would like to request the following patch be incorporated to add the
freebsd/amd64 platform:

2004-06-06  Sean McNeil  <sean@mcneil.com>

	* configure.ac: Add x86_64-*-freebsd* support.
	* configure: Regenerate.

Index: libffi/configure.ac
===================================================================
RCS file: /cvsroot/gcc/gcc/libffi/configure.ac,v
retrieving revision 1.3
diff -c -p -r1.3 configure.ac
*** libffi/configure.ac 27 Apr 2004 05:41:45 -0000      1.3
--- libffi/configure.ac 7 Jun 2004 03:18:50 -0000
*************** arm*-*-linux-*) TARGET=ARM; TARGETDIR=ar
*** 73,79 ****
  arm*-*-netbsdelf*) TARGET=ARM; TARGETDIR=arm;;
  s390-*-linux-*) TARGET=S390; TARGETDIR=s390;;
  s390x-*-linux-*) TARGET=S390; TARGETDIR=s390;;
! x86_64-*-linux*) TARGET=X86_64; TARGETDIR=x86;;
  sh-*-linux* | sh[[34]]*-*-linux*) TARGET=SH; TARGETDIR=sh;;
  sh64-*-linux* | sh5*-*-linux*) TARGET=SH64; TARGETDIR=sh64;;
  hppa-*-linux* | parisc-*-linux*) TARGET=PA; TARGETDIR=pa;;
--- 73,79 ----
  arm*-*-netbsdelf*) TARGET=ARM; TARGETDIR=arm;;
  s390-*-linux-*) TARGET=S390; TARGETDIR=s390;;
  s390x-*-linux-*) TARGET=S390; TARGETDIR=s390;;
! x86_64-*-linux* | x86_64-*-freebsd*) TARGET=X86_64; TARGETDIR=x86;;
  sh-*-linux* | sh[[34]]*-*-linux*) TARGET=SH; TARGETDIR=sh;;
  sh64-*-linux* | sh5*-*-linux*) TARGET=SH64; TARGETDIR=sh64;;
  hppa-*-linux* | parisc-*-linux*) TARGET=PA; TARGETDIR=pa;;


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2004-06-07 19:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <mailman.9994.1086581797.18468.gnu-gcc-patches@lists.nsr.labs.mot.com>
2004-06-07 19:31 ` [patch] add freebsd/amd64 support to libffi Loren James Rittle
2004-06-07 19:55   ` Sean McNeil
2004-06-07  9:03 Sean McNeil
2004-06-07 19:12 ` Tom Tromey

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).