Browse Source

update docs

ruki 4 years ago
parent
commit
95c08e93fc

+ 2 - 2
mirror/manual/conditions.html

@@ -174,9 +174,9 @@ if is_arch("armv7", "arm64", "armv7s", "armv7-a") then
     -- ...
 end
 </code></pre>
-<p>And you can also use the wildcard: <code>*</code> to check all matched architectures.</p>
+<p>And you can also use the lua regular expression: <code>.*</code> to check all matched architectures.</p>
 <pre><code class="lang-lua">-- if the current architecture is arm which contains armv7, arm64, armv7s and armv7-a ...
-if is_arch("arm*") then
+if is_arch("arm.*") then
     -- ...
 end
 </code></pre>

+ 1 - 1
mirror/zh-cn/manual/builtin_modules.html

@@ -206,7 +206,7 @@ foo(1, 2)
 <pre><code class="lang-lua">import("foo")
 foo.add(1, 2)
 </code></pre>
-<p>而里面带下划线前缀的 _foo 是私有函数,模块内部使用,不对外导出,所以在外面用户是不能够调用它的。</p>
+<p>而里面带下划线前缀的 <code>_foo</code> 是私有函数,模块内部使用,不对外导出,所以在外面用户是不能够调用它的。</p>
 <h3 id="inherit">inherit</h3>
 <h4 id="">导入并继承基类模块</h4>
 <p>这个等价于<a href="#import">import</a>接口的<code>inherit</code>模式,也就是:</p>

+ 3 - 3
mirror/zh-cn/manual/conditions.html

@@ -175,13 +175,13 @@ if is_arch("armv7", "arm64", "armv7s", "armv7-a") then
     -- ...
 end
 </code></pre>
-<p>如果像上面那样一个个去判断所有arm架构,也许会很繁琐,毕竟每个平台的架构类型很多,xmake提供了类似<a href="#targetadd_files">add_files</a>中的通配符匹配模式,来更加简洁的进行判断:</p>
+<p>如果像上面那样一个个去判断所有arm架构,也许会很繁琐,毕竟每个平台的架构类型很多,xmake提供了比<a href="#targetadd_files">add_files</a>更强的lua正则表达式匹配模式,来更加简洁的进行判断:</p>
 <pre><code class="lang-lua">--如果当前平台是arm平台
-if is_arch("arm*") then
+if is_arch("arm.*") then
     -- ...
 end
 </code></pre>
-<p>用<code>*</code>就可以匹配所有了。</p>
+<p>用<code>.*</code>就可以匹配所有了。</p>
 <h3 id="is_plat">is_plat</h3>
 <h4 id="">判断当前编译平台</h4>
 <p>用于检测编译配置:<code>xmake f -p iphoneos</code></p>

+ 90 - 90
sitemap.xml

@@ -12,452 +12,452 @@
 
 <url>
   <loc>https://xmake.io/mirror/guide/project_examples.html</loc>
-  <lastmod>2021-11-13T14:43:09+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:39+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/guide/other_features.html</loc>
-  <lastmod>2021-11-13T14:43:09+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:39+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/guide/quickstart.html</loc>
-  <lastmod>2021-11-13T14:43:09+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:40+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/guide/faq.html</loc>
-  <lastmod>2021-11-13T14:43:09+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:40+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/guide/configuration.html</loc>
-  <lastmod>2021-11-13T14:43:10+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:40+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/guide/syntax_description.html</loc>
-  <lastmod>2021-11-13T14:43:10+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:40+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/guide/installation.html</loc>
-  <lastmod>2021-11-13T14:43:10+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:40+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/plugin/plugin_development.html</loc>
-  <lastmod>2021-11-13T14:43:10+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:41+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/plugin/more_plugins.html</loc>
-  <lastmod>2021-11-13T14:43:10+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:41+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/plugin/builtin_plugins.html</loc>
-  <lastmod>2021-11-13T14:43:10+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:41+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/about/awesome.html</loc>
-  <lastmod>2021-11-13T14:43:11+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:41+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/about/technical_support.html</loc>
-  <lastmod>2021-11-13T14:43:11+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:41+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/about/changelog.html</loc>
-  <lastmod>2021-11-13T14:43:11+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:42+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/about/contact.html</loc>
-  <lastmod>2021-11-13T14:43:11+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:42+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/about/introduction.html</loc>
-  <lastmod>2021-11-13T14:43:11+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:42+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/about/who_is_using_xmake.html</loc>
-  <lastmod>2021-11-13T14:43:11+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:42+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/about/sponsor.html</loc>
-  <lastmod>2021-11-13T14:43:12+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:42+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/guide/project_examples.html</loc>
-  <lastmod>2021-11-13T14:43:12+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:42+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/guide/other_features.html</loc>
-  <lastmod>2021-11-13T14:43:12+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:43+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/guide/quickstart.html</loc>
-  <lastmod>2021-11-13T14:43:12+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:43+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/guide/faq.html</loc>
-  <lastmod>2021-11-13T14:43:12+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:43+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/guide/configuration.html</loc>
-  <lastmod>2021-11-13T14:43:13+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:43+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/guide/syntax_description.html</loc>
-  <lastmod>2021-11-13T14:43:13+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:43+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/guide/installation.html</loc>
-  <lastmod>2021-11-13T14:43:13+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:44+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/plugin/plugin_development.html</loc>
-  <lastmod>2021-11-13T14:43:13+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:44+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/plugin/more_plugins.html</loc>
-  <lastmod>2021-11-13T14:43:13+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:44+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/plugin/builtin_plugins.html</loc>
-  <lastmod>2021-11-13T14:43:13+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:44+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/awesome.html</loc>
-  <lastmod>2021-11-13T14:43:14+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:44+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/technical_support.html</loc>
-  <lastmod>2021-11-13T14:43:14+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:45+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/changelog.html</loc>
-  <lastmod>2021-11-13T14:43:14+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:45+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/contact.html</loc>
-  <lastmod>2021-11-13T14:43:14+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:45+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/peripheral_items.html</loc>
-  <lastmod>2021-11-13T14:43:14+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:45+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/introduction.html</loc>
-  <lastmod>2021-11-13T14:43:14+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:45+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/who_is_using_xmake.html</loc>
-  <lastmod>2021-11-13T14:43:15+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:45+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/sponsor.html</loc>
-  <lastmod>2021-11-13T14:43:15+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:46+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/course.html</loc>
-  <lastmod>2021-11-13T14:43:15+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:46+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/getting_started.html</loc>
-  <lastmod>2021-11-13T14:43:15+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:46+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/specification.html</loc>
-  <lastmod>2021-11-13T14:43:15+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:46+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/builtin_variables.html</loc>
-  <lastmod>2021-11-13T14:43:15+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:46+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/conditions.html</loc>
-  <lastmod>2021-11-13T14:43:16+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:46+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/custom_rule.html</loc>
-  <lastmod>2021-11-13T14:43:16+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:47+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/target_instance.html</loc>
-  <lastmod>2021-11-13T14:43:16+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:47+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/project_target.html</loc>
-  <lastmod>2021-11-13T14:43:16+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:47+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/builtin_modules.html</loc>
-  <lastmod>2021-11-13T14:43:16+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:47+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/custom_toolchain.html</loc>
-  <lastmod>2021-11-13T14:43:16+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:47+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/plugin_task.html</loc>
-  <lastmod>2021-11-13T14:43:17+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:48+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/package_dependencies.html</loc>
-  <lastmod>2021-11-13T14:43:17+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:48+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/configuration_option.html</loc>
-  <lastmod>2021-11-13T14:43:17+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:48+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/extension_modules.html</loc>
-  <lastmod>2021-11-13T14:43:17+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:48+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/helper_interfaces.html</loc>
-  <lastmod>2021-11-13T14:43:17+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:48+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/global_interfaces.html</loc>
-  <lastmod>2021-11-13T14:43:17+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:48+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/package_instance.html</loc>
-  <lastmod>2021-11-13T14:43:18+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:49+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/option_instance.html</loc>
-  <lastmod>2021-11-13T14:43:18+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:49+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/theme/builtin_themes.html</loc>
-  <lastmod>2021-11-13T14:43:18+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:49+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/theme/switch_theme.html</loc>
-  <lastmod>2021-11-13T14:43:18+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:49+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/index.html</loc>
-  <lastmod>2021-11-13T14:43:18+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:49+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/package/local_3rd_source_library.html</loc>
-  <lastmod>2021-11-13T14:43:18+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:50+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/package/local_package_old.html</loc>
-  <lastmod>2021-11-13T14:43:19+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:50+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/package/local_package.html</loc>
-  <lastmod>2021-11-13T14:43:19+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:50+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/package/system_package.html</loc>
-  <lastmod>2021-11-13T14:43:19+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:50+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/package/remote_package.html</loc>
-  <lastmod>2021-11-13T14:43:19+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:50+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/toolchain/remote_toolchain.html</loc>
-  <lastmod>2021-11-13T14:43:19+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:50+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/toolchain/builtin_toolchains.html</loc>
-  <lastmod>2021-11-13T14:43:19+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:51+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/getting_started.html</loc>
-  <lastmod>2021-11-13T14:43:20+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:51+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/specification.html</loc>
-  <lastmod>2021-11-13T14:43:20+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:51+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/builtin_variables.html</loc>
-  <lastmod>2021-11-13T14:43:20+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:51+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/conditions.html</loc>
-  <lastmod>2021-11-13T14:43:20+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:51+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/custom_rule.html</loc>
-  <lastmod>2021-11-13T14:43:20+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:52+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/target_instance.html</loc>
-  <lastmod>2021-11-13T14:43:20+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:52+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/project_target.html</loc>
-  <lastmod>2021-11-13T14:43:21+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:52+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/builtin_modules.html</loc>
-  <lastmod>2021-11-13T14:43:21+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:52+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/custom_toolchain.html</loc>
-  <lastmod>2021-11-13T14:43:21+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:52+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/plugin_task.html</loc>
-  <lastmod>2021-11-13T14:43:21+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:53+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/package_dependencies.html</loc>
-  <lastmod>2021-11-13T14:43:21+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:53+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/configuration_option.html</loc>
-  <lastmod>2021-11-13T14:43:22+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:53+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/extension_modules.html</loc>
-  <lastmod>2021-11-13T14:43:22+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:53+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/helper_interfaces.html</loc>
-  <lastmod>2021-11-13T14:43:22+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:53+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/global_interfaces.html</loc>
-  <lastmod>2021-11-13T14:43:22+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:54+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/package_instance.html</loc>
-  <lastmod>2021-11-13T14:43:22+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:54+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/option_instance.html</loc>
-  <lastmod>2021-11-13T14:43:22+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:54+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/theme/builtin_themes.html</loc>
-  <lastmod>2021-11-13T14:43:23+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:54+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/theme/switch_theme.html</loc>
-  <lastmod>2021-11-13T14:43:23+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:54+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/index.html</loc>
-  <lastmod>2021-11-13T14:43:23+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:54+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/package/local_3rd_source_library.html</loc>
-  <lastmod>2021-11-13T14:43:23+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:55+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/package/local_package_old.html</loc>
-  <lastmod>2021-11-13T14:43:23+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:55+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/package/local_package.html</loc>
-  <lastmod>2021-11-13T14:43:24+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:55+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/package/system_package.html</loc>
-  <lastmod>2021-11-13T14:43:24+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:55+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/package/remote_package.html</loc>
-  <lastmod>2021-11-13T14:43:24+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:55+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/toolchain/remote_toolchain.html</loc>
-  <lastmod>2021-11-13T14:43:24+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:55+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/toolchain/builtin_toolchains.html</loc>
-  <lastmod>2021-11-13T14:43:24+08:00</lastmod>
+  <lastmod>2021-11-13T23:17:56+08:00</lastmod>
 </url>
 
 </urlset>