ruki 1 rok temu
rodzic
commit
7a14dfe32c

+ 2 - 2
mirror/zh-cn/guide/build_policies.html

@@ -152,7 +152,7 @@ target("test")
 <p>然后我们就可以随意设置各种原始flags,xmake不会去自动检测和忽略他们了。</p>
 <h3 id="checkauto_map_flags">check.auto_map_flags</h3>
 <p>这是xmake的另外一个对flags的智能分析处理,通常像<code>add_links</code>, <code>add_defines</code>这种xmake内置的api去设置的配置,是具有跨平台特性的,不同编译器平台会自动处理成对应的原始flags。</p>
-<p>但是,有些情况,用户还是需要自己通过add_cxflags, add_ldflags设置原始的编译链接flags,这些flags并不能很好的跨编译器</p>
+<p>但是,有些情况,用户还是需要自己通过<code>add_cxflags</code>, <code>add_ldflags</code>设置原始的编译链接flags,这些flags并不能很好的跨编译器</p>
 <p>就拿<code>-O0</code>的编译优化flags来说,虽然有<code>set_optimize</code>来实现跨编译器配置,但如果用户直接设置<code>add_cxflags("-O0")</code>呢?gcc/clang下可以正常处理,但是msvc下就不支持了</p>
 <p>也许我们能通过<code>if is_plat() then</code>来分平台处理,但很繁琐,因此xmake内置了flags的自动映射功能。</p>
 <p>基于gcc flags的普及性,xmake采用gcc的flags命名规范,对其根据不同的编译实现自动映射,例如:</p>
@@ -316,7 +316,7 @@ $ xmake run
 <h3 id="packagefetch_only">package.fetch_only</h3>
 <p>如果开启这个策略,那么所有的依赖包仅仅只会从系统获取,不会从远程下载安装。</p>
 <h3 id="packageinstall_only">package.install_only</h3>
-<p>如果开启这个策略,纳闷所有的依赖包仅仅只会走远程下载安装,不会从系统查找获取。</p>
+<p>如果开启这个策略,那么所有的依赖包仅仅只会走远程下载安装,不会从系统查找获取。</p>
 <h3 id="packagelibrarydepsstrict_compatibility">package.librarydeps.strict_compatibility</h3>
 <p>默认禁用,如果启用它,那么当前包和它的所有库依赖包之间会保持严格的兼容性,任何依赖包的版本更新,都会强制触发当前包的重新编译安装。</p>
 <p>以确保所有的包都是二进制兼容的,不会因为某个依赖包接口改动,导致和其他已被安装的其他包一起链接时候,发生链接和运行错误。</p>

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

@@ -146,7 +146,7 @@
 <p>设置包的源码包或者git仓库地址,跟add_urls不同的是,此接口是覆盖性设置,而add_urls是追加设置,其他使用方式类似,这个根据不同需要来选择。</p>
 <h3 id="packageadd_urls">package:add_urls</h3>
 <h4 id="">添加包源地址</h4>
-<p>添加包的源码包或者git仓库地址,此接口一般跟add_version配对使用,用于设置每个源码包的版本和对应的sha256值。</p>
+<p>添加包的源码包或者git仓库地址,此接口一般跟add_version配对使用,用于设置每个源码包的版本和对应的sha256值或者git的commit或者tag或者branch。</p>
 <p>!> 可以通过添加多个urls作为镜像源,xmake会自动检测优先选用最快的url进行下载,如果下载失败则会尝试其他urls。</p>
 <pre><code class="lang-lua">add_urls("https://github.com/protobuf-c/protobuf-c/releases/download/v$(version)/protobuf-c-$(version).tar.gz")
 add_versions("1.3.1", "51472d3a191d6d7b425e32b612e477c06f73fe23e07f6a6a839b11808e9d2267")

+ 1 - 1
mirror/zh-cn/package/remote_package.html

@@ -233,7 +233,7 @@ add_requires("tbox dev")
 <pre><code class="lang-console">-I /Users/ruki/.xmake/packages/z/zlib/1.2.11/d639b7d6e3244216b403b39df5101abf/include
 </code></pre>
 <h2 id="">第三方依赖包安装</h2>
-<p>2.2.5版本之后,xmake支持对对第三方包管理器里面的依赖库安装支持,例如:conanbrew, vcpkg等</p>
+<p>2.2.5版本之后,xmake支持对对第三方包管理器里面的依赖库安装支持,例如:conan, brew, vcpkg等</p>
 <h3 id="homebrew">添加 homebrew 的依赖包</h3>
 <pre><code class="lang-lua">add_requires("brew::zlib", {alias = "zlib"})
 add_requires("brew::pcre2/libpcre2-8", {alias = "pcre2"})

+ 2 - 2
mirror/zh-cn/plugin/builtin_plugins.html

@@ -110,7 +110,7 @@
 <h3 id="compiler_flags">生成compiler_flags</h3>
 <pre><code class="lang-console">$ xmake project -k compiler_flags
 </code></pre>
-<h3 id="compiler_commands">生成compiler_commands</h3>
+<h3 id="compile_commands">生成compile_commands</h3>
 <p>导出每个源文件的编译信息,生成基于clang的编译数据库文件,json格式,可用于跟ide,编辑器,静态分析工具进行交互。</p>
 <pre><code class="lang-console">$ xmake project -k compile_commands
 </code></pre>
@@ -130,7 +130,7 @@
 <p>!> 等之后有时间,我们会重新自己实现各更加完善的xcode输出插件,也欢迎大家帮忙贡献。</p>
 <h3 id="visualstudio">生成VisualStudio工程</h3>
 <h4 id="xmake">使用xmake集成编译</h4>
-<p>v2.2.8以上版本,提供了新版本的vs工程生成插件扩展,跟之前的生成vs的插件处理模式上有很大的不同,之前生成的vs工程是所有文件的编译展开后,转交给vs来处理编译。</p>
+<p>v2.2.8以上版本,提供了新版本的vs工程生成插件扩展,跟之前的生成vs的插件处理模式上有很大的不同,之前生成的vs工程是所有文件的编译展开后,转交给vs来处理编译。</p>
 <p>但是这种模式,对xmake的rules是没法支持的。因为xmake的rules里面用了很多的<code>on_build</code>此类自定义脚本,无法展开,所以像qt, wdk此类的项目就没法支持导出到vs里面进行编译了。</p>
 <p>因此,为了解决这个问题,新版本的vs生成插件通过在vs下直接调用xmake命令,去执行编译操作,并且对intellsence和定义跳转,还有断点调试也做了支持。</p>
 <p>具体使用方式跟老版本类似:</p>

+ 1 - 1
mirror/zh-cn/toolchain/builtin_toolchains.html

@@ -122,7 +122,7 @@ $ xmake
 $ xmake
 </code></pre>
 <p>如果是手动下载的 llvm sdk,我们需要额外指定 llvm sdk 根目录,确保 xmake 能找到它,当然,如果用户已经安装到 PATH 目录下,<code>--sdk</code> 参数的设置也是可选的。</p>
-<h3 id="cirle">Cirle</h3>
+<h3 id="circle">Circle</h3>
 <p>v2.5.9 xmake 新增了 circle 编译器的支持,这是个新的 C++20 编译器,额外附带了一些有趣的编译期元编程特性,有兴趣的同学可以到官网查看:<a href="https://www.circle-lang.org/">https://www.circle-lang.org/</a></p>
 <pre><code class="lang-console">$ xmake f --toolchain=circle
 $ xmake

+ 106 - 106
sitemap.xml

@@ -12,532 +12,532 @@
 
 <url>
   <loc>https://xmake.io/mirror/guide/project_examples.html</loc>
-  <lastmod>2024-05-24T08:03:11+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:46+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/guide/quickstart.html</loc>
-  <lastmod>2024-05-24T08:03:11+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:46+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/guide/faq.html</loc>
-  <lastmod>2024-05-24T08:03:11+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:47+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/guide/build_policies.html</loc>
-  <lastmod>2024-05-24T08:03:11+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:47+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/guide/configuration.html</loc>
-  <lastmod>2024-05-24T08:03:12+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:47+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/guide/syntax_description.html</loc>
-  <lastmod>2024-05-24T08:03:12+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:47+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/guide/installation.html</loc>
-  <lastmod>2024-05-24T08:03:12+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:47+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/features/remote_build.html</loc>
-  <lastmod>2024-05-24T08:03:12+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:48+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/features/unity_build.html</loc>
-  <lastmod>2024-05-24T08:03:12+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:48+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/features/distcc_build.html</loc>
-  <lastmod>2024-05-24T08:03:13+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:48+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/features/trybuild.html</loc>
-  <lastmod>2024-05-24T08:03:13+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:48+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/features/autogen.html</loc>
-  <lastmod>2024-05-24T08:03:13+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:48+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/features/build_cache.html</loc>
-  <lastmod>2024-05-24T08:03:13+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:49+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/plugin/plugin_development.html</loc>
-  <lastmod>2024-05-24T08:03:13+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:49+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/plugin/more_plugins.html</loc>
-  <lastmod>2024-05-24T08:03:14+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:49+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/plugin/builtin_plugins.html</loc>
-  <lastmod>2024-05-24T08:03:14+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:49+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/about/awesome.html</loc>
-  <lastmod>2024-05-24T08:03:14+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:49+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/about/technical_support.html</loc>
-  <lastmod>2024-05-24T08:03:14+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:50+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/about/changelog.html</loc>
-  <lastmod>2024-05-24T08:03:14+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:50+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/about/contact.html</loc>
-  <lastmod>2024-05-24T08:03:15+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:50+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/about/introduction.html</loc>
-  <lastmod>2024-05-24T08:03:15+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:50+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/about/who_is_using_xmake.html</loc>
-  <lastmod>2024-05-24T08:03:15+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:50+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/about/sponsor.html</loc>
-  <lastmod>2024-05-24T08:03:15+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:51+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/index.html</loc>
-  <lastmod>2024-05-24T08:03:15+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:51+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/guide/project_examples.html</loc>
-  <lastmod>2024-05-24T08:03:16+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:51+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/guide/quickstart.html</loc>
-  <lastmod>2024-05-24T08:03:16+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:51+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/guide/faq.html</loc>
-  <lastmod>2024-05-24T08:03:16+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:51+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/guide/build_policies.html</loc>
-  <lastmod>2024-05-24T08:03:16+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:52+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/guide/configuration.html</loc>
-  <lastmod>2024-05-24T08:03:16+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:52+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/guide/syntax_description.html</loc>
-  <lastmod>2024-05-24T08:03:17+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:52+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/guide/installation.html</loc>
-  <lastmod>2024-05-24T08:03:17+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:52+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/features/remote_build.html</loc>
-  <lastmod>2024-05-24T08:03:17+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:52+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/features/unity_build.html</loc>
-  <lastmod>2024-05-24T08:03:17+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:53+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/features/distcc_build.html</loc>
-  <lastmod>2024-05-24T08:03:17+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:53+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/features/trybuild.html</loc>
-  <lastmod>2024-05-24T08:03:18+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:53+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/features/autogen.html</loc>
-  <lastmod>2024-05-24T08:03:18+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:53+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/features/build_cache.html</loc>
-  <lastmod>2024-05-24T08:03:18+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:53+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/plugin/plugin_development.html</loc>
-  <lastmod>2024-05-24T08:03:18+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:54+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/plugin/more_plugins.html</loc>
-  <lastmod>2024-05-24T08:03:18+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:54+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/plugin/builtin_plugins.html</loc>
-  <lastmod>2024-05-24T08:03:19+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:54+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/awesome.html</loc>
-  <lastmod>2024-05-24T08:03:19+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:54+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/technical_support.html</loc>
-  <lastmod>2024-05-24T08:03:19+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:54+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/changelog.html</loc>
-  <lastmod>2024-05-24T08:03:19+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:55+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/contact.html</loc>
-  <lastmod>2024-05-24T08:03:19+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:55+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/peripheral_items.html</loc>
-  <lastmod>2024-05-24T08:03:20+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:55+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/introduction.html</loc>
-  <lastmod>2024-05-24T08:03:20+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:55+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/who_is_using_xmake.html</loc>
-  <lastmod>2024-05-24T08:03:20+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:55+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/sponsor.html</loc>
-  <lastmod>2024-05-24T08:03:20+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:56+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/course.html</loc>
-  <lastmod>2024-05-24T08:03:21+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:56+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/index.html</loc>
-  <lastmod>2024-05-24T08:03:21+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:56+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/getting_started.html</loc>
-  <lastmod>2024-05-24T08:03:21+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:56+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/native_modules.html</loc>
-  <lastmod>2024-05-24T08:03:21+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:56+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/specification.html</loc>
-  <lastmod>2024-05-24T08:03:21+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:57+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/builtin_variables.html</loc>
-  <lastmod>2024-05-24T08:03:21+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:57+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/conditions.html</loc>
-  <lastmod>2024-05-24T08:03:22+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:57+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/custom_rule.html</loc>
-  <lastmod>2024-05-24T08:03:22+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:57+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/target_instance.html</loc>
-  <lastmod>2024-05-24T08:03:22+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:57+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/project_target.html</loc>
-  <lastmod>2024-05-24T08:03:22+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:58+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/builtin_modules.html</loc>
-  <lastmod>2024-05-24T08:03:23+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:58+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/custom_toolchain.html</loc>
-  <lastmod>2024-05-24T08:03:23+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:58+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/plugin_task.html</loc>
-  <lastmod>2024-05-24T08:03:23+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:58+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/package_dependencies.html</loc>
-  <lastmod>2024-05-24T08:03:23+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:58+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/configuration_option.html</loc>
-  <lastmod>2024-05-24T08:03:23+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:59+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/extension_modules.html</loc>
-  <lastmod>2024-05-24T08:03:24+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:59+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/helper_interfaces.html</loc>
-  <lastmod>2024-05-24T08:03:24+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:59+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/global_interfaces.html</loc>
-  <lastmod>2024-05-24T08:03:24+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:59+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/package_instance.html</loc>
-  <lastmod>2024-05-24T08:03:24+08:00</lastmod>
+  <lastmod>2024-06-04T21:41:59+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/xpack.html</loc>
-  <lastmod>2024-05-24T08:03:24+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:00+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/option_instance.html</loc>
-  <lastmod>2024-05-24T08:03:24+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:00+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/theme/builtin_themes.html</loc>
-  <lastmod>2024-05-24T08:03:25+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:00+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/theme/switch_theme.html</loc>
-  <lastmod>2024-05-24T08:03:25+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:00+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/package/local_3rd_source_library.html</loc>
-  <lastmod>2024-05-24T08:03:25+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:00+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/package/local_package_old.html</loc>
-  <lastmod>2024-05-24T08:03:25+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:01+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/package/local_package.html</loc>
-  <lastmod>2024-05-24T08:03:25+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:01+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/package/system_package.html</loc>
-  <lastmod>2024-05-24T08:03:26+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:01+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/package/remote_package.html</loc>
-  <lastmod>2024-05-24T08:03:26+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:01+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/toolchain/remote_toolchain.html</loc>
-  <lastmod>2024-05-24T08:03:26+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:01+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/toolchain/builtin_toolchains.html</loc>
-  <lastmod>2024-05-24T08:03:26+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:02+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/getting_started.html</loc>
-  <lastmod>2024-05-24T08:03:26+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:02+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/native_modules.html</loc>
-  <lastmod>2024-05-24T08:03:27+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:02+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/specification.html</loc>
-  <lastmod>2024-05-24T08:03:27+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:02+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/builtin_variables.html</loc>
-  <lastmod>2024-05-24T08:03:27+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:02+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/conditions.html</loc>
-  <lastmod>2024-05-24T08:03:27+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:03+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/custom_rule.html</loc>
-  <lastmod>2024-05-24T08:03:27+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:03+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/target_instance.html</loc>
-  <lastmod>2024-05-24T08:03:28+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:03+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/project_target.html</loc>
-  <lastmod>2024-05-24T08:03:28+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:03+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/builtin_modules.html</loc>
-  <lastmod>2024-05-24T08:03:28+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:04+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/custom_toolchain.html</loc>
-  <lastmod>2024-05-24T08:03:28+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:04+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/plugin_task.html</loc>
-  <lastmod>2024-05-24T08:03:28+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:04+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/package_dependencies.html</loc>
-  <lastmod>2024-05-24T08:03:29+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:04+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/configuration_option.html</loc>
-  <lastmod>2024-05-24T08:03:29+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:04+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/extension_modules.html</loc>
-  <lastmod>2024-05-24T08:03:29+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:05+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/helper_interfaces.html</loc>
-  <lastmod>2024-05-24T08:03:29+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:05+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/global_interfaces.html</loc>
-  <lastmod>2024-05-24T08:03:29+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:05+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/package_instance.html</loc>
-  <lastmod>2024-05-24T08:03:30+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:05+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/xpack.html</loc>
-  <lastmod>2024-05-24T08:03:30+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:05+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/option_instance.html</loc>
-  <lastmod>2024-05-24T08:03:30+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:06+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/theme/builtin_themes.html</loc>
-  <lastmod>2024-05-24T08:03:30+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:06+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/theme/switch_theme.html</loc>
-  <lastmod>2024-05-24T08:03:30+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:06+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/package/local_3rd_source_library.html</loc>
-  <lastmod>2024-05-24T08:03:31+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:06+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/package/local_package_old.html</loc>
-  <lastmod>2024-05-24T08:03:31+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:06+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/package/local_package.html</loc>
-  <lastmod>2024-05-24T08:03:31+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:07+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/package/system_package.html</loc>
-  <lastmod>2024-05-24T08:03:31+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:07+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/package/remote_package.html</loc>
-  <lastmod>2024-05-24T08:03:31+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:07+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/toolchain/remote_toolchain.html</loc>
-  <lastmod>2024-05-24T08:03:32+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:07+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/toolchain/builtin_toolchains.html</loc>
-  <lastmod>2024-05-24T08:03:32+08:00</lastmod>
+  <lastmod>2024-06-04T21:42:07+08:00</lastmod>
 </url>
 
 </urlset>