diff options
| author | A2va <[email protected]> | 2024-09-03 18:08:55 +0200 |
|---|---|---|
| committer | A2va <[email protected]> | 2024-09-03 18:08:55 +0200 |
| commit | 98683d158a99d58810f42aff06c5fc43dd190d6e (patch) | |
| tree | abf7ef19f90dcdc9b58d9efa3e7dc047a9a164ae | |
| parent | 2a1bdf5e6fe01ed901eaa7d17528fc4a85daa7ad (diff) | |
Update load.lua
| -rw-r--r-- | xmake/toolchains/ndk/load.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/toolchains/ndk/load.lua b/xmake/toolchains/ndk/load.lua index bf72eaa87..f7caa3895 100644 --- a/xmake/toolchains/ndk/load.lua +++ b/xmake/toolchains/ndk/load.lua @@ -97,8 +97,8 @@ function main(toolchain) -- gnustl and stlport have been removed in ndk r18 (deprecated in ndk r17) -- https://github.com/android/ndk/wiki/Changelog-r18 local old_runtimes = {"gnustl_static", "gnustl_shared", "stlport_static", "stlport_shared"} - if ndk_sdkver and semver.new(ndk_sdkver):le("r18") then - toolchain:add("runtimes", tabl.unpack(old_runtimes)) + if ndk_sdkver and semver.new(ndk_sdkver):le("r18") then + toolchain:add("runtimes", table.unpack(old_runtimes)) end -- init flags |
