Skip to content

Commit 0e73d20

Browse files
authored
Handle inadvertent use of DYNAMIC_ARCH=0
1 parent 02087a6 commit 0e73d20

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile.x86

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# COMPILER_PREFIX = mingw32-
22

3-
ifndef DYNAMIC_ARCH
3+
ifneq ($(DYNAMIC_ARCH),1)
44
ADD_CPUFLAGS = 1
55
else
66
ifdef TARGET_CORE

Makefile.x86_64

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ endif
99
endif
1010

1111

12-
ifndef DYNAMIC_ARCH
12+
ifneq ($(DYNAMIC_ARCH),1)
1313
ADD_CPUFLAGS = 1
1414
else
1515
ifdef TARGET_CORE

0 commit comments

Comments
 (0)