diff options
| author | ruki <[email protected]> | 2023-10-13 23:33:15 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2023-10-13 23:33:15 +0800 |
| commit | 72c1a7a5c184b855bb083411d6547b5ac98009c7 (patch) | |
| tree | 637266e44141c8d2c7f0db92980fc74b4f9befe2 /xmake/toolchains/xcode/load_applexros.lua | |
| parent | 97ffd7a145521e930a237e8977e73fdf3d41dbf4 (diff) | |
add apple xros support
Diffstat (limited to 'xmake/toolchains/xcode/load_applexros.lua')
| -rw-r--r-- | xmake/toolchains/xcode/load_applexros.lua | 64 |
1 files changed, 64 insertions, 0 deletions
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 + |
