Skip to content

Commit 98683d1

Browse files
committed
Update load.lua
1 parent 2a1bdf5 commit 98683d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

xmake/toolchains/ndk/load.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ function main(toolchain)
9797
-- gnustl and stlport have been removed in ndk r18 (deprecated in ndk r17)
9898
-- https://github.com/android/ndk/wiki/Changelog-r18
9999
local old_runtimes = {"gnustl_static", "gnustl_shared", "stlport_static", "stlport_shared"}
100-
if ndk_sdkver and semver.new(ndk_sdkver):le("r18") then
101-
toolchain:add("runtimes", tabl.unpack(old_runtimes))
100+
if ndk_sdkver and semver.new(ndk_sdkver):le("r18") then
101+
toolchain:add("runtimes", table.unpack(old_runtimes))
102102
end
103103

104104
-- init flags

0 commit comments

Comments
 (0)