rknpu2/examples 无法编译为 Debug
Opened this issue · 0 comments
songziming commented
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 接受参数。