File tree Expand file tree Collapse file tree 3 files changed +17
-5
lines changed
build.macos64ARMv8/common Expand file tree Collapse file tree 3 files changed +17
-5
lines changed Original file line number Diff line number Diff line change @@ -14,11 +14,15 @@ else # Allow Makefile to set specific SDK
1414override SDK:=$(realpath $(addprefix $(SDKsDIR)/, $(SDK)))
1515endif
1616ifeq ($(strip $(SDK)),)
17- $(error could not find a valid SDK)
17+ ifeq ($(wildcard $(realpath $(addprefix $(SDKsDIR)/,MacOSX.sdk))),)
18+ $(error could not find a valid SDK)
19+ else
20+ SDK:=$(realpath $(addprefix $(SDKsDIR)/,MacOSX.sdk))
21+ endif
1822endif
1923TARGET_ARCH:=i386
2024ifeq ($(TARGET_VERSION_MIN),) # Allow Makefile to set TARGET_VERSION_MIN
21- TARGET_VERSION_MIN:=10.7
25+ TARGET_VERSION_MIN:=10.9
2226endif
2327
2428# Determine where to install plugins in the .app bundle using the Squeak
Original file line number Diff line number Diff line change @@ -14,7 +14,11 @@ else # Allow Makefile to set specific SDK
1414override SDK:=$(realpath $(addprefix $(SDKsDIR)/, $(SDK)))
1515endif
1616ifeq ($(strip $(SDK)),)
17- $(error could not find a valid SDK)
17+ ifeq ($(wildcard $(realpath $(addprefix $(SDKsDIR)/,MacOSX.sdk))),)
18+ $(error could not find a valid SDK)
19+ else
20+ SDK:=$(realpath $(addprefix $(SDKsDIR)/,MacOSX.sdk))
21+ endif
1822endif
1923TARGET_ARCH:=arm64
2024#TARGET_CPU:=apple-a12
Original file line number Diff line number Diff line change @@ -14,11 +14,15 @@ else # Allow Makefile to set specific SDK
1414override SDK:=$(realpath $(addprefix $(SDKsDIR)/, $(SDK)))
1515endif
1616ifeq ($(strip $(SDK)),)
17- $(error could not find a valid SDK)
17+ ifeq ($(wildcard $(realpath $(addprefix $(SDKsDIR)/,MacOSX.sdk))),)
18+ $(error could not find a valid SDK)
19+ else
20+ SDK:=$(realpath $(addprefix $(SDKsDIR)/,MacOSX.sdk))
21+ endif
1822endif
1923TARGET_ARCH:=x86_64
2024ifeq ($(TARGET_VERSION_MIN),) # Allow Makefile to set TARGET_VERSION_MIN
21- TARGET_VERSION_MIN:=10.7
25+ TARGET_VERSION_MIN:=10.9
2226endif
2327
2428# Determine where to install plugins in the .app bundle using the Squeak
You can’t perform that action at this time.
0 commit comments