Hi Neil,
Thanks for taking the time.
Initially it didn't work, until I fully qualified the path to the gcc, and then it
worked a charm.
I am wondering if it is something to do with the shell used to execute the make in, as
I am using bash, and not the /sbin/sh default for HP-UX. This also means that the
only reference to the gcc is in my own .profile file PATH definition.
Is this a possible cause?
Cheers.
On Thu, Jun 14, 2001 at 09:19:58AM -0700, Neil Watkiss wrote:
> Hi Piers,
>
> During the make process something is obviously picking up HP's 'cc'
> compiler rather than gcc. The quick solution is this:
>
> > program extract...
> > use Inline ( C=> Config =>
> CC => 'gcc',
> > DIRECTORY => '/tmp/Inline',
> > ENABLE => 'UNTAINT',
> > INC => '-I/usr/local/include',
> > LIBS => '-L/usr/local/lib -ltidy' );
>
> That should solve the compiler problem. Whether the correct 'ld' gets
> picked up is anyone's guess. Care to try it?
>
> Later,
> Neil