fatal error: screen/screen.h: No such file or directory

cuda samples make eorr jetpack 3.2
what should i do?

Hi,

Screen is a windowing system on the QNX operating system:
[url]CUDA Samples :: CUDA Toolkit Documentation

Could you share the environment information of your device?
Is it aarch64 Linux?

Thanks.

flashing jetpack3.2 on jetson tx2, the error happened when i Make the cuda-9.0 samples.
thanks for your reply.

Thanks for your feedback.

We are checking this issue internally
Will update information with you later.

I got the same error when I make the cuda-9.0 samples.

Hi,

The error is caused by some QNX-only samples.
We are checking our CUDA samples packaging process internally.

Will update information with you later.
Thanks.

Hi,

These screen-based samples are only for QNX system and not supported by Jetson environment.

If you want to compile the sample on the top of CUDA sample folder, please apply this WAR to filter out the incorrect samples:

diff --git a/Makefile b/Makefile
index 6d0e027..84fd5ab 100644
--- a/Makefile
+++ b/Makefile
@@ -46,6 +46,12 @@ FILTER_OUT += 3_Imaging/cudaDecodeGL/Makefile
 FILTER_OUT += 5_Simulations/nbody_screen/Makefile
 endif
 
+ifeq ($(TARGET_ARCH),aarch64)
+FILTER_OUT += 2_Graphics/simpleGLES_screen/Makefile
+FILTER_OUT += 3_Imaging/cudaDecodeGL/Makefile
+FILTER_OUT += 5_Simulations/nbody_screen/Makefile
+endif
+
 PROJECTS := $(filter-out $(FILTER_OUT),$(PROJECTS))
 
 %.ph_build :

Thanks