All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] testsuite: smokey: Fix CFLAGS for gdb test
@ 2019-07-12 15:21 Jan Kiszka
  0 siblings, 0 replies; only message in thread
From: Jan Kiszka @ 2019-07-12 15:21 UTC (permalink / raw)
  To: Xenomai

From: Jan Kiszka <jan.kiszka@siemens.com>

CXXFLAGS is for C++, but we are C here. That misplacement cause the
non-debug build of the testcase to fail due to missing symbols.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
---
 testsuite/smokey/gdb/Makefile.am | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/testsuite/smokey/gdb/Makefile.am b/testsuite/smokey/gdb/Makefile.am
index 987d6ee2d5..9c0843d9bf 100644
--- a/testsuite/smokey/gdb/Makefile.am
+++ b/testsuite/smokey/gdb/Makefile.am
@@ -8,6 +8,5 @@ CCLD = $(top_srcdir)/scripts/wrap-link.sh $(CC)
 libgdb_a_CPPFLAGS = 		\
 	@XENO_USER_CFLAGS@	\
 	-I$(top_srcdir)		\
-	-I$(top_srcdir)/include
-
-libgdb_a_CXXFLAGS = -g -O0
+	-I$(top_srcdir)/include	\
+	-g -O0
-- 
2.16.4


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2019-07-12 15:21 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-12 15:21 [PATCH] testsuite: smokey: Fix CFLAGS for gdb test Jan Kiszka

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.