Quellcode durchsuchen

autoupdate docs by xmake-repo/ci

ruki vor 2 Jahren
Ursprung
Commit
1272d05bb4
9 geänderte Dateien mit 131 neuen und 19 gelöschten Zeilen
  1. 1 1
      _coverpage.md
  2. 1 1
      _sidebar.md
  3. 33 0
      mirror/packages/linux.html
  4. 33 0
      mirror/packages/macosx.html
  5. 23 0
      packages/linux.md
  6. 23 0
      packages/macosx.md
  7. 15 15
      sitemap.xml
  8. 1 1
      zh-cn/_coverpage.md
  9. 1 1
      zh-cn/_sidebar.md

+ 1 - 1
_coverpage.md

@@ -6,7 +6,7 @@
 
 - *Simple, lightweight, cross-platform*
 - *Modern C/C++ package manager, support distributed repositories*
-- **Recently added: snitch, rocksdb, godotcpp4**
+- **Recently added: llama.cpp, snitch, rocksdb**
 
 [Gitee](https://gitee.com/tboox/xrepo/)
 [Github](https://github.com/xmake-io/xrepo/)

+ 1 - 1
_sidebar.md

@@ -1,7 +1,7 @@
 - Getting Started
   - [Sponsor](https://xmake.io/#/about/sponsor)
   - [Quick Start](getting_started.md)
-- Packages (854)
+- Packages (855)
   - [android](packages/android.md)
   - [bsd](packages/bsd.md)
   - [cross](packages/cross.md)

+ 33 - 0
mirror/packages/linux.html

@@ -15564,6 +15564,39 @@
 <h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
 <pre><code class="lang-lua">add_requires("littlefs")
 </code></pre>
+<h3 id="llamacpplinux">llama.cpp (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Port of Facebook&#39;s LLaMA model in C/C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/ggerganov/llama.cpp">https://github.com/ggerganov/llama.cpp</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2023.03.11</td>
+</tr>
+<tr>
+<td>Architectures</td>
+<td>arm64-v8a, armv7, armv7s, i386, mips, mips64, mips64el, mipsel, x86_64</td>
+</tr>
+<tr>
+<td>Definition</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/llama.cpp/xmake.lua">llama.cpp/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install llama.cpp
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("llama.cpp")
+</code></pre>
 <h3 id="llfiolinux">llfio (linux)</h3>
 <table>
 <thead>

+ 33 - 0
mirror/packages/macosx.html

@@ -14350,6 +14350,39 @@
 <h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
 <pre><code class="lang-lua">add_requires("littlefs")
 </code></pre>
+<h3 id="llamacppmacosx">llama.cpp (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Port of Facebook&#39;s LLaMA model in C/C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/ggerganov/llama.cpp">https://github.com/ggerganov/llama.cpp</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2023.03.11</td>
+</tr>
+<tr>
+<td>Architectures</td>
+<td>arm64, x86_64</td>
+</tr>
+<tr>
+<td>Definition</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/llama.cpp/xmake.lua">llama.cpp/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install llama.cpp
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("llama.cpp")
+</code></pre>
 <h3 id="llfiomacosx">llfio (macosx)</h3>
 <table>
 <thead>

+ 23 - 0
packages/linux.md

@@ -10356,6 +10356,29 @@ add_requires("littlefs")
 ```
 
 
+### llama.cpp (linux)
+
+
+| Description | *Port of Facebook's LLaMA model in C/C++* |
+| -- | -- |
+| Homepage | [https://github.com/ggerganov/llama.cpp](https://github.com/ggerganov/llama.cpp) |
+| Versions | 2023.03.11 |
+| Architectures | arm64-v8a, armv7, armv7s, i386, mips, mips64, mips64el, mipsel, x86_64 |
+| Definition | [llama.cpp/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/llama.cpp/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install llama.cpp
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("llama.cpp")
+```
+
+
 ### llfio (linux)
 
 

+ 23 - 0
packages/macosx.md

@@ -9551,6 +9551,29 @@ add_requires("littlefs")
 ```
 
 
+### llama.cpp (macosx)
+
+
+| Description | *Port of Facebook's LLaMA model in C/C++* |
+| -- | -- |
+| Homepage | [https://github.com/ggerganov/llama.cpp](https://github.com/ggerganov/llama.cpp) |
+| Versions | 2023.03.11 |
+| Architectures | arm64, x86_64 |
+| Definition | [llama.cpp/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/llama.cpp/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install llama.cpp
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("llama.cpp")
+```
+
+
 ### llfio (macosx)
 
 

+ 15 - 15
sitemap.xml

@@ -7,77 +7,77 @@
     
 <url>
   <loc>https://xrepo.xmake.io</loc>
-  <lastmod>2023-03-11T13:47:41+08:00</lastmod>
+  <lastmod>2023-03-11T14:55:46+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/zh-cn/index.html</loc>
-  <lastmod>2023-03-11T13:47:44+08:00</lastmod>
+  <lastmod>2023-03-11T14:55:50+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/zh-cn/getting_started.html</loc>
-  <lastmod>2023-03-11T13:47:44+08:00</lastmod>
+  <lastmod>2023-03-11T14:55:50+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/index.html</loc>
-  <lastmod>2023-03-11T13:47:45+08:00</lastmod>
+  <lastmod>2023-03-11T14:55:50+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/getting_started.html</loc>
-  <lastmod>2023-03-11T13:47:45+08:00</lastmod>
+  <lastmod>2023-03-11T14:55:51+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/bsd.html</loc>
-  <lastmod>2023-03-11T13:47:45+08:00</lastmod>
+  <lastmod>2023-03-11T14:55:51+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/linux.html</loc>
-  <lastmod>2023-03-11T13:47:45+08:00</lastmod>
+  <lastmod>2023-03-11T14:55:51+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/windows.html</loc>
-  <lastmod>2023-03-11T13:47:46+08:00</lastmod>
+  <lastmod>2023-03-11T14:55:52+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/mingw.html</loc>
-  <lastmod>2023-03-11T13:47:46+08:00</lastmod>
+  <lastmod>2023-03-11T14:55:52+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/android.html</loc>
-  <lastmod>2023-03-11T13:47:46+08:00</lastmod>
+  <lastmod>2023-03-11T14:55:53+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/macosx.html</loc>
-  <lastmod>2023-03-11T13:47:47+08:00</lastmod>
+  <lastmod>2023-03-11T14:55:53+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/wasm.html</loc>
-  <lastmod>2023-03-11T13:47:47+08:00</lastmod>
+  <lastmod>2023-03-11T14:55:53+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/msys.html</loc>
-  <lastmod>2023-03-11T13:47:47+08:00</lastmod>
+  <lastmod>2023-03-11T14:55:54+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/cross.html</loc>
-  <lastmod>2023-03-11T13:47:48+08:00</lastmod>
+  <lastmod>2023-03-11T14:55:54+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/iphoneos.html</loc>
-  <lastmod>2023-03-11T13:47:48+08:00</lastmod>
+  <lastmod>2023-03-11T14:55:54+08:00</lastmod>
 </url>
 
 </urlset>

+ 1 - 1
zh-cn/_coverpage.md

@@ -6,7 +6,7 @@
 
 - *简单,轻量,跨平台*
 - *现代化的 C/C++ 包管理工具,分布式仓库支持*
-- **Recently added: snitch, rocksdb, godotcpp4**
+- **Recently added: llama.cpp, snitch, rocksdb**
 
 [Gitee](https://gitee.com/tboox/xrepo/)
 [GitHub](https://github.com/xmake-io/xrepo/)

+ 1 - 1
zh-cn/_sidebar.md

@@ -1,7 +1,7 @@
 - 快速入门
   - [赞助](https://xmake.io/#/zh-cn/about/sponsor)
   - [快速上手](zh-cn/getting_started.md)
-- 包列表 (854)
+- 包列表 (855)
   - [android](packages/android.md)
   - [bsd](packages/bsd.md)
   - [cross](packages/cross.md)