File: 018_disable_c%2B%2B_demo.patch

package info (click to toggle)
brickos 0.9.0.dfsg-16
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,076 kB
  • sloc: ansic: 9,139; cpp: 860; asm: 693; makefile: 654; sh: 134; perl: 61
file content (28 lines) | stat: -rw-r--r-- 805 bytes parent folder | download
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