This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: Finding dlltool using gcc
- From: Ian Lance Taylor <iant at google dot com>
- To: Stephen Kitt <steve at sk2 dot org>
- Cc: gcc-help at gcc dot gnu dot org, 632003 at bugs dot debian dot org, Bin Tian <tianbin at cernet dot edu dot cn>, Bill Allombert <Bill dot Allombert at math dot u-bordeaux1 dot fr>
- Date: Wed, 21 Sep 2011 07:06:05 -0700
- Subject: Re: Finding dlltool using gcc
- References: <20110921055036.GE7506@sk2.org>
Stephen Kitt <steve@sk2.org> writes:
> Is there a recommended approach to use to find dlltool using only
> i686-w64-mingw32-gcc?
I don't know of one. I don't know why avoiding autoconf is desirable.
However, if I were forced to do so, I would probably use gcc -v to get
the target name and look for TARGET-dlltool that way.
> I am wrong in dropping /usr/$target/bin?
No, you are right. That directory is used to communicate programs from
the binutils to gcc, and there are no promises about what binaries may
be found there.
Ian