airockchip / rknn-toolkit2

Other
996 stars 104 forks source link

rknpu2/examples 无法编译为 Debug #188

Open songziming opened 1 month ago

songziming commented 1 month ago

rknpu2/examples 目录下,使用提供的 build-linux.sh、build-android.sh 脚本,即使传入参数 -b Debug 输出仍是 Release。

脚本里解析命令行参数方法有误,脚本中:

while getopts ":t:a:b" opt; do

应改为:

while getopts "t:a:b:" opt; do

冒号放在字母后面,表示参数 -b 接受参数。