# TASSL-Demo **Repository Path**: includelyh/TASSL-Demo ## Basic Information - **Project Name**: TASSL-Demo - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-06-20 - **Last Updated**: 2025-06-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 编译指令 Note: 将编译好的Tassl库文件放在depend/lib里,然后进行本demo编译 ### 非交叉编译 ``` mkdir build cd build cmake .. make -j ``` ### 交叉编译 ``` mkdir build cd build # -DCMAKE_TOOLCHAIN_FILE 传入交叉编译工具链 cmake .. -DCMAKE_TOOLCHAIN_FILE=../toolchainfile/rk3588.cmake make -j ```