mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-08 22:36:48 +00:00
* bugfix: 程序加载器映射内存时,计算要映射的大小不正确的问题。 * 修正brk系统调用不符合规范的地方 * bugfix: 修正fat文件系统未能正确的扩展文件大小的bug * 增加fcntl系统调用 * 移植sqlite3
29 lines
481 B
Plaintext
29 lines
481 B
Plaintext
{
|
|
"name": "test_sqlite3",
|
|
"version": "3.42.0",
|
|
"description": "测试sqlite3",
|
|
"task_type": {
|
|
"BuildFromSource": {
|
|
"Local": {
|
|
"path": "apps/test_sqlite3"
|
|
}
|
|
}
|
|
},
|
|
"depends": [
|
|
{
|
|
"name": "relibc",
|
|
"version": "0.1.0"
|
|
}
|
|
],
|
|
"build": {
|
|
"build_command": "make download_sqlite3 && make -j $(nproc)"
|
|
},
|
|
"install": {
|
|
"in_dragonos_path": "/bin"
|
|
},
|
|
"clean": {
|
|
"clean_command": "make clean"
|
|
},
|
|
"envs": []
|
|
}
|