Skip to content

Commit bb082ac

Browse files
committed
add i486 processor ARCH detection
1 parent f948e55 commit bb082ac

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

Make.inc

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,17 @@ clean:
4646
ifeq ($(ARCH),i386)
4747
override ARCH := i387
4848
endif
49+
ifeq ($(ARCH),i486)
50+
override ARCH := i387
51+
endif
52+
ifeq ($(ARCH),i686)
53+
override ARCH := i387
54+
endif
4955

5056
ifeq ($(ARCH),x86_64)
5157
override ARCH := amd64
5258
endif
5359

54-
ifeq ($(ARCH),i686)
55-
override ARCH := i387
56-
endif
57-
5860
ifneq (,$(findstring MINGW,$(OS)))
5961
override OS=WINNT
6062
endif

0 commit comments

Comments
 (0)