Second attempt at disabling assembler generation for cygwin 64.

This commit is contained in:
David Brown 2016-07-19 21:55:47 +01:00
parent 0349189479
commit b3e2c5f9a6
2 changed files with 6 additions and 6 deletions

View file

@ -21,6 +21,6 @@ rm -f *.o *.obj *.exe *.sym *.c *.h result
# on the voc command and calling 'as' explicitly.
# NOTE 2: The cygwin 64 bit build has relocation errors with
# these assembly generation options.
if [ $COMPILER=gcc -a $FLAVOUR!=cygwin.LP64.gcc ]
if [ "$COMPILER" = "gcc" -a "$FLAVOUR" != "cygwin.LP64.gcc" ]
then export CFLAGS="-gstabs -g1 -Wa,-acdhln=new.asm"
fi