gcc: warning: switch ‘-gstabs’ is no longer supported - removed it.

This commit is contained in:
Norayr Chilingarian 2023-10-05 17:03:30 +04:00
parent c4213e333a
commit ff42920226

View file

@ -17,5 +17,5 @@ rm -f *.o *.obj *.exe *.sym *.c *.h result new.asm $(basename "$PWD")
# NOTE: The cygwin 64 bit build has relocation errors with
# these assembly generation options.
if [ "$COMPILER" = "gcc" -a "$FLAVOUR" != "cygwin.LP64.gcc" ]
then export CFLAGS="-gstabs -g1 -Wa,-acdhln=new.asm -Wl,-Map=output.map"
then export CFLAGS="-g1 -Wa,-acdhln=new.asm -Wl,-Map=output.map"
fi