summaryrefslogtreecommitdiff
path: root/tests/projects
diff options
context:
space:
mode:
authorruki <[email protected]>2021-02-10 23:31:34 +0800
committerruki <[email protected]>2021-02-10 23:31:34 +0800
commitd2e70dd2430454e9fcacc8a543d7710737e32ca1 (patch)
treec242085385149c497ae48a57c136559dcca63cd0 /tests/projects
parent0264096936203a11e4ea1d91b06f7c4fbb2a52d6 (diff)
move toolchain package to beginning
Diffstat (limited to 'tests/projects')
-rw-r--r--tests/projects/package/toolchain_muslcc/xmake.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/projects/package/toolchain_muslcc/xmake.lua b/tests/projects/package/toolchain_muslcc/xmake.lua
index 930a116c7..48c048457 100644
--- a/tests/projects/package/toolchain_muslcc/xmake.lua
+++ b/tests/projects/package/toolchain_muslcc/xmake.lua
@@ -4,12 +4,12 @@ add_rules("mode.debug", "mode.release")
set_plat("cross")
set_arch("arm")
--- add toolchains package
-add_requires("muslcc")
-
-- add library packages
add_requires("zlib", "libplist", {system = false})
+-- add toolchains package
+add_requires("muslcc")
+
-- set global toolchains for target and packages
set_toolchains("@muslcc")