On Tue, 15 Feb 2000, Andre Poenitz wrote:
> > I tried to use the mingw32 environment on Win98, too to produce a real
>Win-Executable.
>
> *scratch head* I'd like to try that, too... but: How does one specify
> the usage of a certain compiler when running ./configure?
[...]
> If someone could enlighten me, please ;-)
On Unix with sh shell:
CC="pgcc" CXX="pg++" ./configure ....
or tcsh
setenv CC pgcc
setenv CXX pg++
./configure ....
If you are trying this on Windows you probably just need to:
set CC=ming
set CXX=ming++
or whatever...
Allan. (ARRae)