This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: [patch] fix pr16923 for darwin
- From: Tom Tromey <tromey at redhat dot com>
- To: Andreas Tobler <toa at pop dot agri dot ch>
- Cc: Java Patches <java-patches at gcc dot gnu dot org>
- Date: 04 Mar 2005 14:39:30 -0700
- Subject: Re: [patch] fix pr16923 for darwin
- References: <42288DE0.6050803@pop.agri.ch>
- Reply-to: tromey at redhat dot com
>>>>> "Andreas" == Andreas Tobler <toa@pop.agri.ch> writes:
Andreas> this one fixes the PR16923 for darwin. The linker is a
Andreas> chatterbox and we get some unresolved.
Andreas> ok for main?
This looks basically fine...
I see we have 3 ways of doing this:
if { [string match "powerpc-*-darwin*" $target_triplet] } {
if { [istarget "*-*-darwin*"] } {
Andreas> + if { [ regexp {powerpc-apple-darwin} $host_triplet] } {
How about we just pick one and use it everywhere?
Or maybe even add a helper proc of some kind to set this up?
Tom