Replies: 1 comment 7 replies
-
Are you running this on the Jetson target? If so, do you see the C++ 8.5.0 headers under |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We are migrating from gatesgarth to kirkstone and running into issues building CUDA with CMake on kirkstone. We are building on a Jetson AGX Xavier.
We are noticing that there seems to be a missing library for gcc, namely
/usr/local/cuda-10.2/include/cuda/std/detail/libcxx/include
isn't being included by gcc when buildingCMakeCUDACompilerId.cu
. This previously worked on gatesgarth, but gatesgarth was using the native gcc version, whereas kirkstone is natively gcc-11.2 and includes gcc-8.5 for backwards compatibility with CUDA 10.2Here's the top of our CMakeLists.txt:
The build is failing at this line:
I am able to recreate it by running:
However, if I change the includes to include the path to the missing
new
file, compilation is successful:Any idea what's going on here?
Beta Was this translation helpful? Give feedback.
All reactions