Using Nsight Eclipse Edition with OpenCV for Cross Compilation?

Hi vincentroberge,

Please use ‘Expert setting’ to add ‘-gencode arch=compute_62,code=sm_62’ option: (both NVCC compiler and linker)

1. NVCC Compiler:
Properties → Settings → Tool Settings → NVCC Compiler → Expert Setting:

${COMMAND} ${FLAGS} -gencode arch=compute_62,code=sm_62 ${OUTPUT_FLAG} ${OUTPUT_PREFIX} ${OUTPUT} ${INPUTS}

2. NVCC Linker:
Properties → Settings → Tool Settings → NVCC Linker → Expert Setting:

${COMMAND} ${FLAGS} -gencode arch=compute_62,code=sm_62 ${OUTPUT_FLAG} ${OUTPUT_PREFIX} ${OUTPUT} ${INPUTS}

Please let us know the results.
Thanks.