diff options
| author | Jérôme Leclercq <[email protected]> | 2024-07-21 21:39:35 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-07-21 21:39:35 +0200 |
| commit | cba65da4b698a7a2a672c36f366a4b9aa1586678 (patch) | |
| tree | 2c8a542c74794c119bfedd0fb0c475a270827479 /xmake/toolchains/xcode | |
| parent | 2412ed94e70b00b0c2f3bd8c4553828efd458b1b (diff) | |
Apple tvOS: Fix typo in flag
Flag is "mappletv-simulator-version-min" not "mappletvsimulator-version-min"
Diffstat (limited to 'xmake/toolchains/xcode')
| -rw-r--r-- | xmake/toolchains/xcode/load_appletvos.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/toolchains/xcode/load_appletvos.lua b/xmake/toolchains/xcode/load_appletvos.lua index 8d723149f..3833b8956 100644 --- a/xmake/toolchains/xcode/load_appletvos.lua +++ b/xmake/toolchains/xcode/load_appletvos.lua @@ -30,7 +30,7 @@ function main(toolchain) -- init target minimal version local target_minver = toolchain:config("target_minver") - local target_minver_flags = (simulator and "-mappletv-simulator-version-min=" or "-mappletvos-version-min=") .. target_minver + local target_minver_flags = (simulator and "-mappletvsimulator-version-min=" or "-mappletvos-version-min=") .. target_minver -- init flags for c/c++ toolchain:add("cxflags", "-arch", arch, target_minver_flags, "-isysroot", xcode_sysroot) |
