I'm trying to build Gnu binutils with behaviour unlocked by defining the macro SYSV386_COMPAT 0
to vary the way in which it generates some FPU opcodes.
I can easily go into the header file and set the value manually, but how would I invoke the configure script in order to specify the equivalent of #define SYSV386_COMPAT 0
on the command line? I would prefer to specify something on the command line if at all possible (just because the feature is transitive and I don't think I should be hacking the source). Having said that, I have tried to read at least some of the FM but have had no luck with inserting an AC_DEFINE(SYSV386_COMPAT, 0)
in either binutils/configure.in
or gas/configure.in
.
./configure CFLAGS=-DSYSV386_COMPAT=0
... – Wicketkeeper