57 lines
1.1 KiB
Plaintext
57 lines
1.1 KiB
Plaintext
|
代码说明:
|
|||
|
https://caorp7hx0jl.feishu.cn/wiki/IUjewYEEGiVfbykjt1PcW3gjn4c
|
|||
|
cmake: 编译脚本函数(头文件目录, 编译函数)
|
|||
|
app:通用应用层目录
|
|||
|
common:通用共用代码
|
|||
|
hal:硬件层封装
|
|||
|
mw:middlewaren向应用提供统一能力
|
|||
|
third_party: 第三方的开源库
|
|||
|
project:具体项目的代码
|
|||
|
|
|||
|
|
|||
|
|
|||
|
编译操作:
|
|||
|
1. libhv
|
|||
|
cd fusion
|
|||
|
cd third_party/libhv
|
|||
|
mkdir build
|
|||
|
cd build
|
|||
|
cmake .. && cmake --build .
|
|||
|
|
|||
|
2. fusion(链接到 third_party/libhv/build/lib/libhv.so)
|
|||
|
cd ../../../
|
|||
|
mkdir build
|
|||
|
cd build
|
|||
|
cmake .. && cmake --build .
|
|||
|
./fusion.bin
|
|||
|
|
|||
|
|
|||
|
2024-07-21
|
|||
|
创建libhv
|
|||
|
2024-07-22
|
|||
|
实现 hv的mmc
|
|||
|
2024-07-23
|
|||
|
add ngx_slab
|
|||
|
2024-07-26
|
|||
|
add kpacket
|
|||
|
add threadpool
|
|||
|
2024-07-28
|
|||
|
add soft_watchdog
|
|||
|
2024-07-28
|
|||
|
add iobuffer/ringbuffer/utils/xbuf
|
|||
|
2024-08-01
|
|||
|
fix ringbuffer free bug
|
|||
|
2024-08-04
|
|||
|
add mmc with multiple threads and priority
|
|||
|
2024-09-02
|
|||
|
v1.3.3
|
|||
|
libhv.so 190800Bytes
|
|||
|
libhv_static.a 251112Bytes
|
|||
|
2024-09-02
|
|||
|
libfusion.so 227976Bytes
|
|||
|
fusion.bin 16832Bytes
|
|||
|
2024-09-07
|
|||
|
add unittest demo
|
|||
|
2024-09-23
|
|||
|
bug for mmc_init bug
|