Skip to content

Commit

Permalink
Makefile: Default to clang on ARM64
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreRH committed Jan 3, 2021
1 parent 6be89e5 commit 25651b3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ ifeq ($(UNAME_M),x86_64)
ARCHFLAG_TOOLS = --enable-win64
ARCHFLAG_HOST = --enable-win64
endif
ifeq ($(UNAME_M),aarch64)
HANGOVER_WINE_CC = clang
HANGOVER_WINE_CXX = clang++
endif
ifeq ($(UNAME_M3),arm)
HOSTBIT = 32
endif
Expand Down

0 comments on commit 25651b3

Please sign in to comment.