mirror of
https://github.com/webui-dev/webui
synced 2025-03-28 21:13:17 +00:00
Adding ARCH_TARGET x64 (macOS)
This commit is contained in:
parent
e01fb64666
commit
4a67f91554
12
GNUmakefile
12
GNUmakefile
@ -73,12 +73,18 @@ else
|
||||
LLVM_OPT := llvm-
|
||||
endif
|
||||
endif
|
||||
# macOS can set `ARCH_TARGET=arm64` - intented for CI cross-compilation.
|
||||
|
||||
# macOS can set `ARCH_TARGET=arm64` for cross-compilation.
|
||||
ifneq ($(ARCH_TARGET),)
|
||||
ifneq ($(PLATFORM),macos)
|
||||
$(error ARCH_TARGET is only available on macOS)
|
||||
else ifeq ($(ARCH_TARGET),arm64)
|
||||
TARGET := -target arm64-apple-darwin
|
||||
endif
|
||||
ifeq ($(ARCH_TARGET),arm64)
|
||||
TARGET := -target arm64-apple-darwin -arch arm64
|
||||
else ifeq ($(ARCH_TARGET),x64)
|
||||
TARGET := -target x86_64-apple-darwin -arch x86_64
|
||||
else
|
||||
$(error Unsupported ARCH_TARGET: $(ARCH_TARGET). Use 'arm64' or 'x64'.)
|
||||
endif
|
||||
endif
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user