Skip to content

Commit 485ab1b

Browse files
dennisamelingdscho
authored andcommitted
config.mak.uname: add support for clangarm64
CLANGARM64 is a relatively new MSYSTEM added by the MSYS2 team. In order to have Git build correctly for this platform, let's add some configuration for it to config.mak.uname. Signed-off-by: Dennis Ameling <[email protected]>
1 parent 6aad259 commit 485ab1b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

config.mak.uname

+4
Original file line numberDiff line numberDiff line change
@@ -706,6 +706,10 @@ else
706706
prefix = /mingw64
707707
HOST_CPU = x86_64
708708
BASIC_LDFLAGS += -Wl,--pic-executable,-e,mainCRTStartup
709+
else ifeq (CLANGARM64,$(MSYSTEM))
710+
prefix = /clangarm64
711+
HOST_CPU = aarch64
712+
BASIC_LDFLAGS += -Wl,--pic-executable,-e,mainCRTStartup
709713
else
710714
COMPAT_CFLAGS += -D_USE_32BIT_TIME_T
711715
BASIC_LDFLAGS += -Wl,--large-address-aware

0 commit comments

Comments
 (0)