Skip to content

Commit

Permalink
Fix Makefile for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
alex65536 committed Aug 2, 2019
1 parent ffd3d63 commit b62ca3d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,12 @@ endif
ifeq ($(BUILD_OS), Windows)
ifeq ($(PROCESSOR_ARCHITECTURE), x86)
BUILD_CPU := i386
else ifeq ($(PROCESSOR_ARCHITECTURE), AMD64)
BUILD_CPU := x86_64
else
BUILD_CPU := unknown
ifeq ($(PROCESSOR_ARCHITECTURE), AMD64)
BUILD_CPU := x86_64
else
BUILD_CPU := unknown
endif
endif
else
BUILD_CPU := $(shell uname -m)
Expand Down

0 comments on commit b62ca3d

Please sign in to comment.