summaryrefslogtreecommitdiff
path: root/xmake/toolchains/xcode
diff options
context:
space:
mode:
authorruki <[email protected]>2023-10-13 23:33:15 +0800
committerruki <[email protected]>2023-10-13 23:33:15 +0800
commit72c1a7a5c184b855bb083411d6547b5ac98009c7 (patch)
tree637266e44141c8d2c7f0db92980fc74b4f9befe2 /xmake/toolchains/xcode
parent97ffd7a145521e930a237e8977e73fdf3d41dbf4 (diff)
add apple xros support
Diffstat (limited to 'xmake/toolchains/xcode')
-rw-r--r--xmake/toolchains/xcode/check.lua5
-rw-r--r--xmake/toolchains/xcode/load_applexros.lua64
-rw-r--r--xmake/toolchains/xcode/load_macosx.lua1
3 files changed, 69 insertions, 1 deletions
diff --git a/xmake/toolchains/xcode/check.lua b/xmake/toolchains/xcode/check.lua
index 40c05095c..225e84284 100644
--- a/xmake/toolchains/xcode/check.lua
+++ b/xmake/toolchains/xcode/check.lua
@@ -86,6 +86,8 @@ function main(toolchain)
cross = simulator and "xcrun -sdk watchsimulator " or "xcrun -sdk watchos "
elseif toolchain:is_plat("appletvos") then
cross = simulator and "xcrun -sdk appletvsimulator " or "xcrun -sdk appletvos "
+ elseif toolchain:is_plat("applexros") then
+ cross = simulator and "xcrun -sdk xrsimulator " or "xcrun -sdk xros "
else
raise("unknown platform for xcode!")
end
@@ -109,6 +111,9 @@ function main(toolchain)
elseif toolchain:is_plat("appletvos") then
local platname = simulator and "AppleTVSimulator" or "AppleTVOS"
xcode_sysroot = format("%s/Contents/Developer/Platforms/%s.platform/Developer/SDKs/%s%s.sdk", xcode.sdkdir, platname, platname, xcode_sdkver)
+ elseif toolchain:is_plat("applexros") then
+ local platname = simulator and "XRSimulator" or "XROS"
+ xcode_sysroot = format("%s/Contents/Developer/Platforms/%s.platform/Developer/SDKs/%s%s.sdk", xcode.sdkdir, platname, platname, xcode_sdkver)
end
else
-- maybe it is from CommandLineTools, e.g. /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk
diff --git a/xmake/toolchains/xcode/load_applexros.lua b/xmake/toolchains/xcode/load_applexros.lua
new file mode 100644
index 000000000..259fd18b9
--- /dev/null
+++ b/xmake/toolchains/xcode/load_applexros.lua
@@ -0,0 +1,64 @@
+--!A cross-toolchain build utility based on Lua
+--
+-- 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
+--
+-- http://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.
+--
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
+--
+-- @author ruki
+-- @file load_applexros.lua
+--
+
+-- imports
+import("core.project.config")
+
+-- main entry
+function main(toolchain)
+
+ local arch = toolchain:arch()
+ local xcode_sdkver = toolchain:config("xcode_sdkver")
+ local xcode_sysroot = toolchain:config("xcode_sysroot")
+ local target_minver = toolchain:config("target_minver")
+
+ -- init target flags
+ local appledev = toolchain:config("appledev")
+ if target_minver then
+ local target = ("%s-apple-xros%s"):format(arch, target_minver)
+ toolchain:add("cxflags", "-target", target)
+ toolchain:add("mxflags", "-target", target)
+ toolchain:add("asflags", "-target", target)
+ toolchain:add("ldflags", "-target", target)
+ toolchain:add("shflags", "-target", target)
+ toolchain:add("scflags", "-target", target)
+ toolchain:add("scldflags", "-target", target)
+ toolchain:add("scshflags", "-target", target)
+ end
+
+ -- init flags for c/c++
+ toolchain:add("cxflags", "-isysroot", xcode_sysroot)
+ toolchain:add("ldflags", "-ObjC", "-lstdc++", "-fobjc-link-runtime", target_minver_flags, "-isysroot", xcode_sysroot)
+ toolchain:add("shflags", "-ObjC", "-lstdc++", "-fobjc-link-runtime", target_minver_flags, "-isysroot", xcode_sysroot)
+
+ -- init flags for objc/c++
+ toolchain:add("mxflags", "-isysroot", xcode_sysroot)
+ -- we can use `add_mxflags("-fno-objc-arc")` to override it in xmake.lua
+ toolchain:add("mxflags", "-fobjc-arc")
+
+ -- init flags for asm
+ toolchain:add("asflags", "-isysroot", xcode_sysroot)
+
+ -- init flags for swift (with toolchain:add("ldflags and toolchain:add("shflags)
+ toolchain:add("scflags", "-sdk " .. xcode_sysroot)
+ toolchain:add("scshflags", "-sdk " .. xcode_sysroot)
+ toolchain:add("scldflags", "-sdk " .. xcode_sysroot)
+end
+
diff --git a/xmake/toolchains/xcode/load_macosx.lua b/xmake/toolchains/xcode/load_macosx.lua
index fb7c3d615..039152067 100644
--- a/xmake/toolchains/xcode/load_macosx.lua
+++ b/xmake/toolchains/xcode/load_macosx.lua
@@ -24,7 +24,6 @@ import("core.project.config")
-- main entry
function main(toolchain)
- -- init flags for architecture
local arch = toolchain:arch()
local target_minver = toolchain:config("target_minver")
local xcode_sysroot = toolchain:config("xcode_sysroot")