Skip to content

Commit 1d8de19

Browse files
committed
fixup! config.mak.uname: add support for clangarm64
This reverts a mistake of mine: My change to introduce an "else ifeq" chain missed that there is an `else` clause that should be used for MINGW32 (to add large-address-awareness and use 32-bit `time_t`) but not for CLANGARM64 nor for MINGW64. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 3196303 commit 1d8de19

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

config.mak.uname

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -728,7 +728,8 @@ ifeq ($(uname_S),MINGW)
728728
prefix = /mingw32
729729
HOST_CPU = i686
730730
BASIC_LDFLAGS += -Wl,--pic-executable,-e,_mainCRTStartup
731-
else ifeq (MINGW64,$(MSYSTEM))
731+
endif
732+
ifeq (MINGW64,$(MSYSTEM))
732733
prefix = /mingw64
733734
HOST_CPU = x86_64
734735
BASIC_LDFLAGS += -Wl,--pic-executable,-e,mainCRTStartup

0 commit comments

Comments
 (0)