Skip to content

Commit

Permalink
makefile: fix aarch64 architecture detection, add some comments (#7504
Browse files Browse the repository at this point in the history
)
  • Loading branch information
spaceface777 authored Dec 23, 2020
1 parent a6e6c48 commit 6f5c1f0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -60,20 +60,20 @@ else
ifneq ($(filter x86%,$(TCCARCH)),)
TCCARCH := i386
else
ifeq ($(_ARCH),arm64)
TCCARCH := arm64
else
ifeq ($(_ARCH),aarch64)
ifeq ($(TCCARCH),aarch64)
TCCARCH := arm64
else
ifneq ($(filter arm%,$(TCCARCH)),)
TCCARCH := arm
endif
# otherwise, just use the arch name
endif
endif
endif
endif

# note that a branch may not exist yet for the user's system configuration,
# in that case they'll get an error from git while cloning it.
# TODO: print a pretty error ourselves in that case, and ask the user to open a feature request
TCCBRANCH := thirdparty-$(TCCOS)-$(TCCARCH)

all: latest_vc latest_tcc
Expand Down

0 comments on commit 6f5c1f0

Please sign in to comment.