forked from apple/containerization
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
99 lines (82 loc) · 3.22 KB
/
Makefile
File metadata and controls
99 lines (82 loc) · 3.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# Copyright © 2025 Apple Inc. and the Containerization project authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
BUILD_CONFIGURATION := debug
SWIFT_CONFIGURATION := --swift-sdk aarch64-swift-linux-musl
SWIFT_VERSION = 6.2-snapshot-2025-06-25
SWIFT_SDK_URL = https://download.swift.org/swift-6.2-branch/static-sdk/swift-6.2-DEVELOPMENT-SNAPSHOT-2025-06-25-a/swift-6.2-DEVELOPMENT-SNAPSHOT-2025-06-25-a_static-linux-0.0.1.artifactbundle.tar.gz
SWIFT_SDK_PATH = /tmp/$(notdir $(SWIFT_SDK_URL))
SWIFTLY_URL := https://download.swift.org/swiftly/darwin/swiftly.pkg
SWIFTLY_FILENAME = $(notdir $(SWIFTLY_URL))
SWIFTLY_BIN_DIR ?= ~/.swiftly/bin
VMINITD_BIN_PATH := $(shell swift build -c $(BUILD_CONFIGURATION) $(SWIFT_CONFIGURATION) --show-bin-path)
MACOS_VERSION := $(shell sw_vers -productVersion)
MACOS_MAJOR := $(shell echo $(MACOS_VERSION) | cut -d. -f1)
MACOS_RELEASE_TYPE := $(shell sw_vers | grep ReleaseType)
.DEFAULT_GOAL := all
.PHONY: all
all: bin/vminitd bin/vmexec
.PHONY: swift-build
swift-build:
@echo Building vminitd and vmexec...
@swift build -c $(BUILD_CONFIGURATION) $(SWIFT_CONFIGURATION)
$(VMINITD_BIN_PATH)/vminitd $(VMINITD_BIN_PATH)/vmexec:
@$(MAKE) swift-build
bin/%: $(VMINITD_BIN_PATH)/%
@mkdir -p bin/
@rm -f $@
@install $< bin/
.PHONY: cross-prep
cross-prep: linux-sdk macos-sdk
.PHONY: swiftly
swiftly:
@if ! command -v ${SWIFTLY_BIN_DIR}/swiftly > /dev/null 2>&1; then \
echo "Installing Swiftly..."; \
curl -o /var/tmp/$(SWIFTLY_FILENAME) $(SWIFTLY_URL) && \
installer -pkg /var/tmp/$(SWIFTLY_FILENAME) -target CurrentUserHomeDirectory && \
${SWIFTLY_BIN_DIR}/swiftly init --quiet-shell-followup --skip-install && \
. ~/.swiftly/env.sh && \
hash -r && \
rm /var/tmp/$(SWIFTLY_FILENAME); \
fi
.PHONY: swift
swift: swiftly
@echo Installing Swift $(SWIFT_VERSION)...
@${SWIFTLY_BIN_DIR}/swiftly install $(SWIFT_VERSION)
.PHONY: linux-sdk
linux-sdk: swift
@echo Installing Static Linux SDK...
@curl -L -o $(SWIFT_SDK_PATH) $(SWIFT_SDK_URL)
-@swift sdk install $(SWIFT_SDK_PATH)
@rm $(SWIFT_SDK_PATH)
.PHONY: macos-sdk
macos-sdk:
# Consider switching back to `xcode-cltools`, when possible.
@if [ $(MACOS_MAJOR) -gt 15 ] && [ "$(MACOS_RELEASE_TYPE)" = "" ]; then \
"$(MAKE)" xcode; \
else \
"$(MAKE)" xcode; \
fi
.PHONY: xcode-cltools
xcode-cltools:
@echo Activating Xcode Command Line Tools...
@sudo xcode-select --switch /Library/Developer/CommandLineTools
.PHONY: xcode
xcode:
@echo "Please install the latest version of Xcode 26 and set the path for the active developer directory using \`sudo xcode-select -s <PATH_TO_XCODE>\`".
.PHONY: clean
clean:
@echo Cleaning the vminitd build files...
@rm -f ./bin/vminitd
@rm -f ./bin/vmexec
@swift package clean $(SWIFT_CONFIGURATION)