ruki 1 год назад
Родитель
Сommit
ebd3c97ca9

+ 0 - 2
README.md

@@ -37,8 +37,6 @@ If you want to know more, please refer to: the [Documentation](https://xmake.io/
 
 
 The official Xmake repository can be found at [xmake-io/xmake-repo](https://github.com/xmake-io/xmake-repo).
 The official Xmake repository can be found at [xmake-io/xmake-repo](https://github.com/xmake-io/xmake-repo).
 
 
-![](https://github.com/xmake-io/xmake-docs/raw/master/assets/img/index/xmake-basic-render.gif)
-
 ## Installation
 ## Installation
 
 
 ### With cURL
 ### With cURL

+ 3 - 3
guide/quickstart.md

@@ -24,7 +24,7 @@ The content of `xmake.lua` is very simple:
 ```lua
 ```lua
 target("hello")
 target("hello")
     set_kind("binary")
     set_kind("binary")
-    add_files("src/*.c") 
+    add_files("src/*.c")
 ```
 ```
 
 
 Supported Languages
 Supported Languages
@@ -66,14 +66,14 @@ $ xmake run hello
 To debug the hello, you need change to the debug mode and build it.
 To debug the hello, you need change to the debug mode and build it.
 
 
 ```bash
 ```bash
-$ xmake config -m debug 
+$ xmake config -m debug
 $ xmake
 $ xmake
 ```
 ```
 
 
 Then run the following command to debug target program.
 Then run the following command to debug target program.
 
 
 ```bash
 ```bash
-$ xmake run -d hello 
+$ xmake run -d hello
 ```
 ```
 
 
 It will start the debugger (.e.g lldb, gdb, windbg, vsjitdebugger, ollydbg ..) to load our program.
 It will start the debugger (.e.g lldb, gdb, windbg, vsjitdebugger, ollydbg ..) to load our program.

+ 22 - 0
mirror/about/changelog.html

@@ -93,6 +93,28 @@
 }
 }
 </style>
 </style>
     <h1 id="changelog">Changelog</h1>
     <h1 id="changelog">Changelog</h1>
+<h2 id="v291">v2.9.1</h2>
+<h3 id="newfeatures">New features</h3>
+<ul>
+<li><a href="https://github.com/xmake-io/xmake/pull/4874">#4874</a>: Add Harmony SDK support</li>
+<li><a href="https://github.com/xmake-io/xmake/issues/4889">#4889</a>: Add signal module to register signal handler in lua</li>
+<li><a href="https://github.com/xmake-io/xmake/issues/4925">#4925</a>: Add native modules support</li>
+<li><a href="https://github.com/xmake-io/xmake/issues/4938">#4938</a>: Support for cppfront/h2</li>
+</ul>
+<h3 id="changes">Changes</h3>
+<ul>
+<li>Improve packages to support for clang-cl</li>
+<li><a href="https://github.com/xmake-io/xmake/issues/4893">#4893</a>: Improve rc includes deps</li>
+<li><a href="https://github.com/xmake-io/xmake/issues/4928">#4928</a>: Improve to build and link speed</li>
+<li><a href="https://github.com/xmake-io/xmake/pull/4931">#4931</a>: Update pdcurses</li>
+<li><a href="https://github.com/xmake-io/xmake/issues/4973">#4973</a>: Improve to select script</li>
+</ul>
+<h3 id="bugsfixed">Bugs fixed</h3>
+<ul>
+<li><a href="https://github.com/xmake-io/xmake/issues/4882">#4882</a>: Fix install deps with --group</li>
+<li><a href="https://github.com/xmake-io/xmake/issues/4877">#4877</a>: Fix compile error for xpack with unity build</li>
+<li><a href="https://github.com/xmake-io/xmake/issues/4887">#4887</a>: Fix object deps</li>
+</ul>
 <h2 id="v289">v2.8.9</h2>
 <h2 id="v289">v2.8.9</h2>
 <h3 id="newfeatures">New features</h3>
 <h3 id="newfeatures">New features</h3>
 <ul>
 <ul>

+ 0 - 1
mirror/index.html

@@ -115,7 +115,6 @@
 <pre><code>Xmake ≈ Make/Ninja + CMake/Meson + Vcpkg/Conan + distcc + ccache/sccache
 <pre><code>Xmake ≈ Make/Ninja + CMake/Meson + Vcpkg/Conan + distcc + ccache/sccache
 </code></pre><p>If you want to know more, please refer to: the <a href="https://xmake.io/#/getting_started">Documentation</a>, <a href="https://github.com/xmake-io/xmake">GitHub</a> or <a href="https://gitee.com/tboox/xmake">Gitee</a>. You are also welcome to join our <a href="https://xmake.io/#/about/contact">community</a>.</p>
 </code></pre><p>If you want to know more, please refer to: the <a href="https://xmake.io/#/getting_started">Documentation</a>, <a href="https://github.com/xmake-io/xmake">GitHub</a> or <a href="https://gitee.com/tboox/xmake">Gitee</a>. You are also welcome to join our <a href="https://xmake.io/#/about/contact">community</a>.</p>
 <p>The official Xmake repository can be found at <a href="https://github.com/xmake-io/xmake-repo">xmake-io/xmake-repo</a>.</p>
 <p>The official Xmake repository can be found at <a href="https://github.com/xmake-io/xmake-repo">xmake-io/xmake-repo</a>.</p>
-<p><img src="https://github.com/xmake-io/xmake-docs/raw/master/assets/img/index/xmake-basic-render.gif" alt=""></p>
 <h2 id="installation">Installation</h2>
 <h2 id="installation">Installation</h2>
 <h3 id="withcurl">With cURL</h3>
 <h3 id="withcurl">With cURL</h3>
 <pre><code class="lang-bash">curl -fsSL https://xmake.io/shget.text | bash
 <pre><code class="lang-bash">curl -fsSL https://xmake.io/shget.text | bash

+ 8 - 1
mirror/manual/package_dependencies.html

@@ -429,7 +429,7 @@ end)
 </code></pre>
 </code></pre>
 <p>In 2.8.7, we have improved pattern matching support and added the ability to exclude specific platforms and architectures, such as:</p>
 <p>In 2.8.7, we have improved pattern matching support and added the ability to exclude specific platforms and architectures, such as:</p>
 <pre><code>!plat|!arch@!subhost|!subarch
 <pre><code>!plat|!arch@!subhost|!subarch
-</code></pre><pre><code class="lang-bash">@!linux
+</code></pre><pre><code class="lang-lua">@!linux
 @!linux|x86_64
 @!linux|x86_64
 @!macosx,!linux
 @!macosx,!linux
 !android@macosx,!linux
 !android@macosx,!linux
@@ -444,6 +444,13 @@ android|armeabi-v7a,!iphoneos@macosx,!linux|x86_64
 <p>The above configuration, if used on a macOS x86_64 device, will only match the local architecture compilation of <code>xmake f -a x86_64</code>.</p>
 <p>The above configuration, if used on a macOS x86_64 device, will only match the local architecture compilation of <code>xmake f -a x86_64</code>.</p>
 <p>If it is cross-compiled with <code>xmake f -a arm64</code>, it will not be matched.</p>
 <p>If it is cross-compiled with <code>xmake f -a arm64</code>, it will not be matched.</p>
 <p>In the same way, if you only want to match cross-compilation, you can use <code>macosx|!native</code> to negate and exclude.</p>
 <p>In the same way, if you only want to match cross-compilation, you can use <code>macosx|!native</code> to negate and exclude.</p>
+<p>In version 2.9.1, we have continued to improve it and added support for conditional logic judgments:</p>
+<p>For example:</p>
+<pre><code class="lang-lua">on_install("!wasm|!arm* and !cross|!arm*", function (package)
+end)
+</code></pre>
+<p>To describe the arm architecture excluding the wasm and cross platforms.</p>
+<p>Moreover, it also supports nested logic described by <code>()</code>, <code>a and b or (a and (c or d))</code>.</p>
 <h5 id="compilationtools">Compilation tools</h5>
 <h5 id="compilationtools">Compilation tools</h5>
 <p>We have built-in scripts for installing common compilation tools to provide convenient architecture support for build tool chains with different source code dependencies, such as: autoconf, cmake, meson, etc.</p>
 <p>We have built-in scripts for installing common compilation tools to provide convenient architecture support for build tool chains with different source code dependencies, such as: autoconf, cmake, meson, etc.</p>
 <h6 id="xmake">xmake</h6>
 <h6 id="xmake">xmake</h6>

+ 23 - 1
mirror/zh-cn/about/changelog.html

@@ -92,7 +92,29 @@
   line-height: 1;
   line-height: 1;
 }
 }
 </style>
 </style>
-    <h2 id="v289">v2.8.9</h2>
+    <h2 id="v291">v2.9.1</h2>
+<h3 id="">新特性</h3>
+<ul>
+<li><a href="https://github.com/xmake-io/xmake/pull/4874">#4874</a>: 添加鸿蒙 SDK 支持</li>
+<li><a href="https://github.com/xmake-io/xmake/issues/4889">#4889</a>: 添加 signal 模块 去注册信号处理</li>
+<li><a href="https://github.com/xmake-io/xmake/issues/4925">#4925</a>: 添加 native 模块支持</li>
+<li><a href="https://github.com/xmake-io/xmake/issues/4938">#4938</a>: 增加对 cppfront/h2 的支持</li>
+</ul>
+<h3 id="">改进</h3>
+<ul>
+<li>改进包管理,支持切换 clang-cl</li>
+<li><a href="https://github.com/xmake-io/xmake/issues/4893">#4893</a>: 改进 rc 头文件依赖检测</li>
+<li><a href="https://github.com/xmake-io/xmake/issues/4928">#4928</a>: 改进构建和链接速度,增量编译时候效果更加明显</li>
+<li><a href="https://github.com/xmake-io/xmake/pull/4931">#4931</a>: 更新 pdcurses</li>
+<li><a href="https://github.com/xmake-io/xmake/issues/4973">#4973</a>: 改进选择脚本的匹配模式</li>
+</ul>
+<h3 id="bugs">Bugs 修复</h3>
+<ul>
+<li><a href="https://github.com/xmake-io/xmake/issues/4882">#4882</a>: 修复安装组依赖问题</li>
+<li><a href="https://github.com/xmake-io/xmake/issues/4877">#4877</a>: 修复 xpack 打包时,unit build 编译失败问题</li>
+<li><a href="https://github.com/xmake-io/xmake/issues/4887">#4887</a>: 修复 object 依赖链接</li>
+</ul>
+<h2 id="v289">v2.8.9</h2>
 <h3 id="">新特性</h3>
 <h3 id="">新特性</h3>
 <ul>
 <ul>
 <li><a href="https://github.com/xmake-io/xmake/issues/4843">#4843</a>: 添加 check_bigendian 接口实现大小端探测</li>
 <li><a href="https://github.com/xmake-io/xmake/issues/4843">#4843</a>: 添加 check_bigendian 接口实现大小端探测</li>

+ 0 - 1
mirror/zh-cn/index.html

@@ -112,7 +112,6 @@
 </code></pre><p>尽管不是很准确,但我们还是可以把 Xmake 按下面的方式来理解:</p>
 </code></pre><p>尽管不是很准确,但我们还是可以把 Xmake 按下面的方式来理解:</p>
 <pre><code>Xmake ≈ Make/Ninja + CMake/Meson + Vcpkg/Conan + distcc + ccache/sccache
 <pre><code>Xmake ≈ Make/Ninja + CMake/Meson + Vcpkg/Conan + distcc + ccache/sccache
 </code></pre><p>如果你想要了解更多,请参考:<a href="https://xmake.io/#/zh-cn/getting_started">在线文档</a>, <a href="https://github.com/xmake-io/xmake">Github</a>以及<a href="https://gitee.com/tboox/xmake">Gitee</a>,同时也欢迎加入我们的 <a href="https://xmake.io/#/zh-ch/about/contact">社区</a>.</p>
 </code></pre><p>如果你想要了解更多,请参考:<a href="https://xmake.io/#/zh-cn/getting_started">在线文档</a>, <a href="https://github.com/xmake-io/xmake">Github</a>以及<a href="https://gitee.com/tboox/xmake">Gitee</a>,同时也欢迎加入我们的 <a href="https://xmake.io/#/zh-ch/about/contact">社区</a>.</p>
-<p><img src="https://github.com/xmake-io/xmake-docs/raw/master/assets/img/index/xmake-basic-render.gif" alt=""></p>
 <h2 id="">课程</h2>
 <h2 id="">课程</h2>
 <p>xmake 官方也推出了一些入门课程,带你一步步快速上手 xmake,课程列表如下:</p>
 <p>xmake 官方也推出了一些入门课程,带你一步步快速上手 xmake,课程列表如下:</p>
 <ul>
 <ul>

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

@@ -423,7 +423,7 @@ end)
 </code></pre>
 </code></pre>
 <p>在 2.8.7 中,我们改进了模式匹配支持,新增排除指定平台和架构,例如:</p>
 <p>在 2.8.7 中,我们改进了模式匹配支持,新增排除指定平台和架构,例如:</p>
 <pre><code>!plat|!arch@!subhost|!subarch
 <pre><code>!plat|!arch@!subhost|!subarch
-</code></pre><pre><code class="lang-bash">@!linux
+</code></pre><pre><code class="lang-lua">@!linux
 @!linux|x86_64
 @!linux|x86_64
 @!macosx,!linux
 @!macosx,!linux
 !android@macosx,!linux
 !android@macosx,!linux
@@ -438,6 +438,13 @@ android|armeabi-v7a,!iphoneos@macosx,!linux|x86_64
 <p>上面的配置,如果在 macOS x86_64 的设备上,它仅仅只会匹配 <code>xmake f -a x86_64</code> 的本地架构编译。</p>
 <p>上面的配置,如果在 macOS x86_64 的设备上,它仅仅只会匹配 <code>xmake f -a x86_64</code> 的本地架构编译。</p>
 <p>如果是 <code>xmake f -a arm64</code> 交叉编译,就不会被匹配到。</p>
 <p>如果是 <code>xmake f -a arm64</code> 交叉编译,就不会被匹配到。</p>
 <p>同理,如果只想匹配交叉编译,可以使用 <code>macosx|!native</code> 进行取反排除就行了。</p>
 <p>同理,如果只想匹配交叉编译,可以使用 <code>macosx|!native</code> 进行取反排除就行了。</p>
+<p>2.9.1 版本,我们继续对它做了改进,增加了条件逻辑判断的支持:</p>
+<p>例如:</p>
+<pre><code class="lang-lua">on_install("!wasm|!arm* and !cross|!arm*", function (package)
+end)
+</code></pre>
+<p>来表述排除 wasm 和 cross 平台之外的 arm 架构。</p>
+<p>并且,它也支持通过 <code>()</code> 描述的嵌套逻辑,<code>a and b or (a and (c or d))</code>。</p>
 <h5 id="">编译工具</h5>
 <h5 id="">编译工具</h5>
 <p>我们内置了一些安装常用编译工具脚本,用于针对不同源码依赖的构建工具链,进行方便的构架支持,例如:autoconf, cmake, meson等,</p>
 <p>我们内置了一些安装常用编译工具脚本,用于针对不同源码依赖的构建工具链,进行方便的构架支持,例如:autoconf, cmake, meson等,</p>
 <h6 id="xmake">xmake</h6>
 <h6 id="xmake">xmake</h6>

+ 106 - 106
sitemap.xml

@@ -12,532 +12,532 @@
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/guide/project_examples.html</loc>
   <loc>https://xmake.io/mirror/guide/project_examples.html</loc>
-  <lastmod>2024-04-22T12:08:41+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:39+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/guide/quickstart.html</loc>
   <loc>https://xmake.io/mirror/guide/quickstart.html</loc>
-  <lastmod>2024-04-22T12:08:41+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:39+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/guide/faq.html</loc>
   <loc>https://xmake.io/mirror/guide/faq.html</loc>
-  <lastmod>2024-04-22T12:08:41+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:40+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/guide/build_policies.html</loc>
   <loc>https://xmake.io/mirror/guide/build_policies.html</loc>
-  <lastmod>2024-04-22T12:08:41+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:40+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/guide/configuration.html</loc>
   <loc>https://xmake.io/mirror/guide/configuration.html</loc>
-  <lastmod>2024-04-22T12:08:42+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:40+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/guide/syntax_description.html</loc>
   <loc>https://xmake.io/mirror/guide/syntax_description.html</loc>
-  <lastmod>2024-04-22T12:08:42+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:40+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/guide/installation.html</loc>
   <loc>https://xmake.io/mirror/guide/installation.html</loc>
-  <lastmod>2024-04-22T12:08:42+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:40+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/features/remote_build.html</loc>
   <loc>https://xmake.io/mirror/features/remote_build.html</loc>
-  <lastmod>2024-04-22T12:08:42+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:41+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/features/unity_build.html</loc>
   <loc>https://xmake.io/mirror/features/unity_build.html</loc>
-  <lastmod>2024-04-22T12:08:42+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:41+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/features/distcc_build.html</loc>
   <loc>https://xmake.io/mirror/features/distcc_build.html</loc>
-  <lastmod>2024-04-22T12:08:43+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:41+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/features/trybuild.html</loc>
   <loc>https://xmake.io/mirror/features/trybuild.html</loc>
-  <lastmod>2024-04-22T12:08:43+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:41+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/features/autogen.html</loc>
   <loc>https://xmake.io/mirror/features/autogen.html</loc>
-  <lastmod>2024-04-22T12:08:43+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:41+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/features/build_cache.html</loc>
   <loc>https://xmake.io/mirror/features/build_cache.html</loc>
-  <lastmod>2024-04-22T12:08:43+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:42+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/plugin/plugin_development.html</loc>
   <loc>https://xmake.io/mirror/plugin/plugin_development.html</loc>
-  <lastmod>2024-04-22T12:08:43+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:42+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/plugin/more_plugins.html</loc>
   <loc>https://xmake.io/mirror/plugin/more_plugins.html</loc>
-  <lastmod>2024-04-22T12:08:44+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:42+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/plugin/builtin_plugins.html</loc>
   <loc>https://xmake.io/mirror/plugin/builtin_plugins.html</loc>
-  <lastmod>2024-04-22T12:08:44+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:42+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/about/awesome.html</loc>
   <loc>https://xmake.io/mirror/about/awesome.html</loc>
-  <lastmod>2024-04-22T12:08:44+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:42+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/about/technical_support.html</loc>
   <loc>https://xmake.io/mirror/about/technical_support.html</loc>
-  <lastmod>2024-04-22T12:08:44+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:43+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/about/changelog.html</loc>
   <loc>https://xmake.io/mirror/about/changelog.html</loc>
-  <lastmod>2024-04-22T12:08:44+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:43+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/about/contact.html</loc>
   <loc>https://xmake.io/mirror/about/contact.html</loc>
-  <lastmod>2024-04-22T12:08:44+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:43+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/about/introduction.html</loc>
   <loc>https://xmake.io/mirror/about/introduction.html</loc>
-  <lastmod>2024-04-22T12:08:45+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:43+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/about/who_is_using_xmake.html</loc>
   <loc>https://xmake.io/mirror/about/who_is_using_xmake.html</loc>
-  <lastmod>2024-04-22T12:08:45+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:43+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/about/sponsor.html</loc>
   <loc>https://xmake.io/mirror/about/sponsor.html</loc>
-  <lastmod>2024-04-22T12:08:45+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:44+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/index.html</loc>
   <loc>https://xmake.io/mirror/index.html</loc>
-  <lastmod>2024-04-22T12:08:45+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:44+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/guide/project_examples.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/guide/project_examples.html</loc>
-  <lastmod>2024-04-22T12:08:45+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:44+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/guide/quickstart.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/guide/quickstart.html</loc>
-  <lastmod>2024-04-22T12:08:46+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:44+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/guide/faq.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/guide/faq.html</loc>
-  <lastmod>2024-04-22T12:08:46+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:44+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/guide/build_policies.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/guide/build_policies.html</loc>
-  <lastmod>2024-04-22T12:08:46+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:45+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/guide/configuration.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/guide/configuration.html</loc>
-  <lastmod>2024-04-22T12:08:46+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:45+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/guide/syntax_description.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/guide/syntax_description.html</loc>
-  <lastmod>2024-04-22T12:08:46+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:45+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/guide/installation.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/guide/installation.html</loc>
-  <lastmod>2024-04-22T12:08:47+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:45+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/features/remote_build.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/features/remote_build.html</loc>
-  <lastmod>2024-04-22T12:08:47+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:46+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/features/unity_build.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/features/unity_build.html</loc>
-  <lastmod>2024-04-22T12:08:47+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:46+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/features/distcc_build.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/features/distcc_build.html</loc>
-  <lastmod>2024-04-22T12:08:47+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:46+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/features/trybuild.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/features/trybuild.html</loc>
-  <lastmod>2024-04-22T12:08:47+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:46+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/features/autogen.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/features/autogen.html</loc>
-  <lastmod>2024-04-22T12:08:47+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:46+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/features/build_cache.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/features/build_cache.html</loc>
-  <lastmod>2024-04-22T12:08:48+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:47+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/plugin/plugin_development.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/plugin/plugin_development.html</loc>
-  <lastmod>2024-04-22T12:08:48+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:47+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/plugin/more_plugins.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/plugin/more_plugins.html</loc>
-  <lastmod>2024-04-22T12:08:48+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:47+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/plugin/builtin_plugins.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/plugin/builtin_plugins.html</loc>
-  <lastmod>2024-04-22T12:08:48+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:47+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/awesome.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/about/awesome.html</loc>
-  <lastmod>2024-04-22T12:08:49+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:47+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/technical_support.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/about/technical_support.html</loc>
-  <lastmod>2024-04-22T12:08:49+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:48+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/changelog.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/about/changelog.html</loc>
-  <lastmod>2024-04-22T12:08:49+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:48+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/contact.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/about/contact.html</loc>
-  <lastmod>2024-04-22T12:08:49+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:48+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/peripheral_items.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/about/peripheral_items.html</loc>
-  <lastmod>2024-04-22T12:08:49+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:48+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/introduction.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/about/introduction.html</loc>
-  <lastmod>2024-04-22T12:08:50+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:48+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/who_is_using_xmake.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/about/who_is_using_xmake.html</loc>
-  <lastmod>2024-04-22T12:08:50+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:49+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/sponsor.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/about/sponsor.html</loc>
-  <lastmod>2024-04-22T12:08:50+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:49+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/course.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/about/course.html</loc>
-  <lastmod>2024-04-22T12:08:50+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:49+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/index.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/index.html</loc>
-  <lastmod>2024-04-22T12:08:50+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:49+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/getting_started.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/getting_started.html</loc>
-  <lastmod>2024-04-22T12:08:51+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:49+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/native_modules.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/manual/native_modules.html</loc>
-  <lastmod>2024-04-22T12:08:51+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:50+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/specification.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/manual/specification.html</loc>
-  <lastmod>2024-04-22T12:08:51+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:50+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/builtin_variables.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/manual/builtin_variables.html</loc>
-  <lastmod>2024-04-22T12:08:51+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:50+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/conditions.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/manual/conditions.html</loc>
-  <lastmod>2024-04-22T12:08:51+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:50+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/custom_rule.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/manual/custom_rule.html</loc>
-  <lastmod>2024-04-22T12:08:51+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:50+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/target_instance.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/manual/target_instance.html</loc>
-  <lastmod>2024-04-22T12:08:52+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:51+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/project_target.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/manual/project_target.html</loc>
-  <lastmod>2024-04-22T12:08:52+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:51+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/builtin_modules.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/manual/builtin_modules.html</loc>
-  <lastmod>2024-04-22T12:08:52+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:51+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/custom_toolchain.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/manual/custom_toolchain.html</loc>
-  <lastmod>2024-04-22T12:08:52+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:51+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/plugin_task.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/manual/plugin_task.html</loc>
-  <lastmod>2024-04-22T12:08:53+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:52+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/package_dependencies.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/manual/package_dependencies.html</loc>
-  <lastmod>2024-04-22T12:08:53+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:52+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/configuration_option.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/manual/configuration_option.html</loc>
-  <lastmod>2024-04-22T12:08:53+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:52+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/extension_modules.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/manual/extension_modules.html</loc>
-  <lastmod>2024-04-22T12:08:53+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:52+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/helper_interfaces.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/manual/helper_interfaces.html</loc>
-  <lastmod>2024-04-22T12:08:53+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:52+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/global_interfaces.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/manual/global_interfaces.html</loc>
-  <lastmod>2024-04-22T12:08:53+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:53+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/package_instance.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/manual/package_instance.html</loc>
-  <lastmod>2024-04-22T12:08:54+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:53+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/xpack.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/manual/xpack.html</loc>
-  <lastmod>2024-04-22T12:08:54+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:53+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/option_instance.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/manual/option_instance.html</loc>
-  <lastmod>2024-04-22T12:08:54+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:53+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/theme/builtin_themes.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/theme/builtin_themes.html</loc>
-  <lastmod>2024-04-22T12:08:54+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:53+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/theme/switch_theme.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/theme/switch_theme.html</loc>
-  <lastmod>2024-04-22T12:08:54+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:54+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/package/local_3rd_source_library.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/package/local_3rd_source_library.html</loc>
-  <lastmod>2024-04-22T12:08:55+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:54+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/package/local_package_old.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/package/local_package_old.html</loc>
-  <lastmod>2024-04-22T12:08:55+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:54+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/package/local_package.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/package/local_package.html</loc>
-  <lastmod>2024-04-22T12:08:55+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:54+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/package/system_package.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/package/system_package.html</loc>
-  <lastmod>2024-04-22T12:08:55+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:55+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/package/remote_package.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/package/remote_package.html</loc>
-  <lastmod>2024-04-22T12:08:55+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:55+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/toolchain/remote_toolchain.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/toolchain/remote_toolchain.html</loc>
-  <lastmod>2024-04-22T12:08:56+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:55+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/zh-cn/toolchain/builtin_toolchains.html</loc>
   <loc>https://xmake.io/mirror/zh-cn/toolchain/builtin_toolchains.html</loc>
-  <lastmod>2024-04-22T12:08:56+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:55+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/getting_started.html</loc>
   <loc>https://xmake.io/mirror/getting_started.html</loc>
-  <lastmod>2024-04-22T12:08:56+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:55+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/manual/native_modules.html</loc>
   <loc>https://xmake.io/mirror/manual/native_modules.html</loc>
-  <lastmod>2024-04-22T12:08:56+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:56+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/manual/specification.html</loc>
   <loc>https://xmake.io/mirror/manual/specification.html</loc>
-  <lastmod>2024-04-22T12:08:56+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:56+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/manual/builtin_variables.html</loc>
   <loc>https://xmake.io/mirror/manual/builtin_variables.html</loc>
-  <lastmod>2024-04-22T12:08:57+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:56+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/manual/conditions.html</loc>
   <loc>https://xmake.io/mirror/manual/conditions.html</loc>
-  <lastmod>2024-04-22T12:08:57+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:56+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/manual/custom_rule.html</loc>
   <loc>https://xmake.io/mirror/manual/custom_rule.html</loc>
-  <lastmod>2024-04-22T12:08:57+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:56+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/manual/target_instance.html</loc>
   <loc>https://xmake.io/mirror/manual/target_instance.html</loc>
-  <lastmod>2024-04-22T12:08:57+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:57+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/manual/project_target.html</loc>
   <loc>https://xmake.io/mirror/manual/project_target.html</loc>
-  <lastmod>2024-04-22T12:08:57+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:57+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/manual/builtin_modules.html</loc>
   <loc>https://xmake.io/mirror/manual/builtin_modules.html</loc>
-  <lastmod>2024-04-22T12:08:58+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:57+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/manual/custom_toolchain.html</loc>
   <loc>https://xmake.io/mirror/manual/custom_toolchain.html</loc>
-  <lastmod>2024-04-22T12:08:58+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:57+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/manual/plugin_task.html</loc>
   <loc>https://xmake.io/mirror/manual/plugin_task.html</loc>
-  <lastmod>2024-04-22T12:08:58+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:57+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/manual/package_dependencies.html</loc>
   <loc>https://xmake.io/mirror/manual/package_dependencies.html</loc>
-  <lastmod>2024-04-22T12:08:58+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:58+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/manual/configuration_option.html</loc>
   <loc>https://xmake.io/mirror/manual/configuration_option.html</loc>
-  <lastmod>2024-04-22T12:08:58+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:58+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/manual/extension_modules.html</loc>
   <loc>https://xmake.io/mirror/manual/extension_modules.html</loc>
-  <lastmod>2024-04-22T12:08:59+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:58+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/manual/helper_interfaces.html</loc>
   <loc>https://xmake.io/mirror/manual/helper_interfaces.html</loc>
-  <lastmod>2024-04-22T12:08:59+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:58+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/manual/global_interfaces.html</loc>
   <loc>https://xmake.io/mirror/manual/global_interfaces.html</loc>
-  <lastmod>2024-04-22T12:08:59+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:59+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/manual/package_instance.html</loc>
   <loc>https://xmake.io/mirror/manual/package_instance.html</loc>
-  <lastmod>2024-04-22T12:08:59+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:59+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/manual/xpack.html</loc>
   <loc>https://xmake.io/mirror/manual/xpack.html</loc>
-  <lastmod>2024-04-22T12:08:59+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:59+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/manual/option_instance.html</loc>
   <loc>https://xmake.io/mirror/manual/option_instance.html</loc>
-  <lastmod>2024-04-22T12:09:00+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:59+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/theme/builtin_themes.html</loc>
   <loc>https://xmake.io/mirror/theme/builtin_themes.html</loc>
-  <lastmod>2024-04-22T12:09:00+08:00</lastmod>
+  <lastmod>2024-04-26T21:31:59+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/theme/switch_theme.html</loc>
   <loc>https://xmake.io/mirror/theme/switch_theme.html</loc>
-  <lastmod>2024-04-22T12:09:00+08:00</lastmod>
+  <lastmod>2024-04-26T21:32:00+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/package/local_3rd_source_library.html</loc>
   <loc>https://xmake.io/mirror/package/local_3rd_source_library.html</loc>
-  <lastmod>2024-04-22T12:09:00+08:00</lastmod>
+  <lastmod>2024-04-26T21:32:00+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/package/local_package_old.html</loc>
   <loc>https://xmake.io/mirror/package/local_package_old.html</loc>
-  <lastmod>2024-04-22T12:09:00+08:00</lastmod>
+  <lastmod>2024-04-26T21:32:00+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/package/local_package.html</loc>
   <loc>https://xmake.io/mirror/package/local_package.html</loc>
-  <lastmod>2024-04-22T12:09:00+08:00</lastmod>
+  <lastmod>2024-04-26T21:32:00+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/package/system_package.html</loc>
   <loc>https://xmake.io/mirror/package/system_package.html</loc>
-  <lastmod>2024-04-22T12:09:01+08:00</lastmod>
+  <lastmod>2024-04-26T21:32:00+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/package/remote_package.html</loc>
   <loc>https://xmake.io/mirror/package/remote_package.html</loc>
-  <lastmod>2024-04-22T12:09:01+08:00</lastmod>
+  <lastmod>2024-04-26T21:32:01+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/toolchain/remote_toolchain.html</loc>
   <loc>https://xmake.io/mirror/toolchain/remote_toolchain.html</loc>
-  <lastmod>2024-04-22T12:09:01+08:00</lastmod>
+  <lastmod>2024-04-26T21:32:01+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xmake.io/mirror/toolchain/builtin_toolchains.html</loc>
   <loc>https://xmake.io/mirror/toolchain/builtin_toolchains.html</loc>
-  <lastmod>2024-04-22T12:09:01+08:00</lastmod>
+  <lastmod>2024-04-26T21:32:01+08:00</lastmod>
 </url>
 </url>
 
 
 </urlset>
 </urlset>

+ 0 - 2
zh-cn/README.md

@@ -38,8 +38,6 @@ Xmake ≈ Make/Ninja + CMake/Meson + Vcpkg/Conan + distcc + ccache/sccache
 
 
 如果你想要了解更多,请参考:[在线文档](https://xmake.io/#/zh-cn/getting_started), [Github](https://github.com/xmake-io/xmake)以及[Gitee](https://gitee.com/tboox/xmake),同时也欢迎加入我们的 [社区](https://xmake.io/#/zh-ch/about/contact).
 如果你想要了解更多,请参考:[在线文档](https://xmake.io/#/zh-cn/getting_started), [Github](https://github.com/xmake-io/xmake)以及[Gitee](https://gitee.com/tboox/xmake),同时也欢迎加入我们的 [社区](https://xmake.io/#/zh-ch/about/contact).
 
 
-![](https://github.com/xmake-io/xmake-docs/raw/master/assets/img/index/xmake-basic-render.gif)
-
 ## 课程
 ## 课程
 
 
 xmake 官方也推出了一些入门课程,带你一步步快速上手 xmake,课程列表如下:
 xmake 官方也推出了一些入门课程,带你一步步快速上手 xmake,课程列表如下: