X11/Xcursor/Xcursor.h: No such file or directory #545
-
Hi everyone, I have been trying too build with
I have all the system requirements and have done all the steps in the README. I am trying to compile the project on on a AWS Deep Learning AMI Instance (Ubuntu 18.04) Version 50.0 The full output after running [ 1%] Building CUDA object dependencies/tiny-cuda-nn/src/CMakeFiles/tiny-cuda-nn.dir/common_device.cu.o I am stuck in this step and I am unsure of what might be causing the build issue. Any help would be much appreciated! Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Looks like certain GUI-related headers aren't installed on that machine. You could try compiling without GUI support -- then the compilation won't try to loop in GL and X11 stuff: delete your build folder and add |
Beta Was this translation helpful? Give feedback.
Looks like certain GUI-related headers aren't installed on that machine. You could try compiling without GUI support -- then the compilation won't try to loop in GL and X11 stuff: delete your build folder and add
-DNGP_BUILD_WITH_GUI=off
to the CMake calls.