Hi everybody.
I'm trying to compile an ESQL-C program using gcc instead of cc, the box is an E-15000 from SUN, with Solaris at 64 bits. I set the variable INFORMIXC to gcc.
The problem I have is that when I execute:
esql -c -g -D_REENTRANT file.ec
I get the error:
gcc: language arch=v9 not recognized
gcc: file.c: linker input file unused because linking not done
As far I can see "language arch=v9" is a flag passed by esql command to cc, in order to produce a 64 bits executable, but this flag is not recognized by gcc wich uses "-m64" to do the same thing.
Does anybody knows how to avoid esql passes the flag "language arch=v9" to c compiler?
Thanks in advance.