Re: Configure for non-gcc compiler

2013-04-19 Thread A.P. Horst
On 18-4-2013 21:23, Eric Blake wrote: Using AC_PROG_CC without arguments already provides your configure script with a rather long list of compiler names to try, but it you are absolutely certain that you want to make an even longer list of default compiler names to try by default, you can call A

Re: Configure for non-gcc compiler

2013-04-19 Thread Miles Bader
Might it be easier to write simple shell script wrappers for these weird compilers, which export a more conventional interface and translate the arguments as necessary? Then you could specify the shell-scripts as CC when invoking the configure script. -miles -- Politics, n. A strife of interest

Re: Configure for non-gcc compiler

2013-04-19 Thread Bastien ROUCARIES
On Fri, Apr 19, 2013 at 11:36 AM, Miles Bader wrote: > Might it be easier to write simple shell script wrappers for these > weird compilers, which export a more conventional interface and > translate the arguments as necessary? > > Then you could specify the shell-scripts as CC when invoking the >

Re: Configure for non-gcc compiler

2013-04-19 Thread A.P. Horst
On 19-4-2013 11:51, Bastien ROUCARIES wrote: On Fri, Apr 19, 2013 at 11:36 AM, Miles Bader wrote: Might it be easier to write simple shell script wrappers for these weird compilers, which export a more conventional interface and translate the arguments as necessary? Then you could specify the