We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在ubuntu上将darknet模型成功转换为ncnn后推理成功。 现在想将ncnn模型用在arm上, $ cd ncnn $ mkdir -p build $ cd build-arm-linux-gnueabi $ cmake -DCMAKE_TOOLCHAIN_FILE=../toolchains/arm-linux-gnueabi.toolchain.cmake .. $ make -j4 $ make install 交叉编译ncnn成功了
再进行libdarknet2ncnn.a生成操作,报错: /usr/bin/ld: skipping incompatible ncnn/build/install/lib//libncnn.a when searching for -lncnn /usr/bin/ld: cannot find -lncnn
我的ncnn/build/install/lib下是有libncnn.a的。 请问下libdarknet2ncnn交叉编译需要怎么操作?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
在ubuntu上将darknet模型成功转换为ncnn后推理成功。
现在想将ncnn模型用在arm上,
$ cd ncnn
$ mkdir -p build
$ cd build-arm-linux-gnueabi
$ cmake -DCMAKE_TOOLCHAIN_FILE=../toolchains/arm-linux-gnueabi.toolchain.cmake ..
$ make -j4
$ make install
交叉编译ncnn成功了
再进行libdarknet2ncnn.a生成操作,报错:
/usr/bin/ld: skipping incompatible ncnn/build/install/lib//libncnn.a when searching for -lncnn
/usr/bin/ld: cannot find -lncnn
我的ncnn/build/install/lib下是有libncnn.a的。
请问下libdarknet2ncnn交叉编译需要怎么操作?
The text was updated successfully, but these errors were encountered: