cbalint13 commented on code in PR #16409: URL: https://github.com/apache/tvm/pull/16409#discussion_r1455605590
########## apps/bundle_deploy/README.md: ########## @@ -65,3 +65,20 @@ This will: - Build a `bundle_static.o` object containing the runtime functions - Build a `demo_static` executable which has static link to `bundle_static.o` and `model.o`, functions on a cat image, then prints the output results. + + +### Cross compilation + +Example for dynamic linking for RISC-V qemu. + +```bash +CC=riscv64-unknown-linux-gnu-gcc \ +CXX=riscv64-unknown-linux-gnu-g++ \ +TVM_TARGET="llvm -device=riscv_cpu -mtriple=riscv64-unknown-linux-gnu" \ Review Comment: Does ```-device=riscv_cpu``` exists in TVM ? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
