1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
From: Nicolas Schodet <nico@ni.fr.eu.org>
Date: Sat, 29 Nov 2025 11:14:31 +0100
Subject: Disable C++ demo build until problem with g++ is fixed
include/c++/LightSensor.H:46: internal compiler error: Segmentation fault
Bug-Debian: https://bugs.debian.org/1121607
Forwarded: not-needed
---
demo/Makefile | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/demo/Makefile b/demo/Makefile
index 246144b..ddb804b 100644
--- a/demo/Makefile
+++ b/demo/Makefile
@@ -19,8 +19,9 @@ include ../Makefile.common
include ../Makefile.user
# for these targets, pass them on to C++ dir, too
-all clean realclean depend::
- $(MAKE) -C c++ $@
+# Disabled as there are troubles compiling C++ code.
+#all clean realclean depend::
+# $(MAKE) -C c++ $@
.depend: *.c
$(MAKEDEPEND) *.c > .depend
|