Browse Source

Handle inadvertent use of DYNAMIC_ARCH=0

tags/v0.3.16^2
Martin Kroeker GitHub 4 years ago
parent
commit
0e73d20629
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      Makefile.x86
  2. +1
    -1
      Makefile.x86_64

+ 1
- 1
Makefile.x86 View File

@@ -1,6 +1,6 @@
# COMPILER_PREFIX = mingw32-

ifndef DYNAMIC_ARCH
ifneq ($(DYNAMIC_ARCH),1)
ADD_CPUFLAGS = 1
else
ifdef TARGET_CORE


+ 1
- 1
Makefile.x86_64 View File

@@ -9,7 +9,7 @@ endif
endif


ifndef DYNAMIC_ARCH
ifneq ($(DYNAMIC_ARCH),1)
ADD_CPUFLAGS = 1
else
ifdef TARGET_CORE


Loading…
Cancel
Save