Skip to content
Snippets Groups Projects
Commit 4a05fd5f authored by SteelT's avatar SteelT
Browse files

More explict check

parent 6dddf612
No related branches found
No related tags found
3 merge requests!488Merge in next and don't billboard papersprites in GL,!440MinGW64:Target nocona for 64-bit builds [revision],!438MinGW64:Target nocona for 64-bit builds
......@@ -104,6 +104,7 @@ endif
ifdef LINUX64
LINUX=1
NONX86=1
64BIT=1
endif
ifdef HAIKU
......@@ -178,6 +179,7 @@ endif #ifdef MINGW
ifdef MINGW64
MINGW=1
64BIT=1
include win32/Makefile.cfg
endif #ifdef MINGW64
......@@ -289,14 +291,13 @@ OPTS += -DCOMPVERSION
ifndef NONX86
ifndef GCC29
M5=-march=pentium
M4=-march=i486
else
M5=-mpentium
M4=-m486
endif
else
endif
ifdef 64BIT
M5=-march=nocona
M4=-mnocona
endif
ifndef NOASM
......
  • mazmazz @mazmazz_ ·
    Contributor

    I forgot, variable names can't begin with a digit, according to Bash. Change that and we are golden

    Edited by mazmazz
  • Author Owner

    Done

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment