babeltrace compilation regression [Re: [PATCH] Avoid non-C++-enabled babeltrace versions]

Message ID 20160703154333.GA9193@host1.jankratochvil.net
State New, archived
Headers

Commit Message

Jan Kratochvil July 3, 2016, 3:43 p.m. UTC
  On Wed, 27 Apr 2016 16:24:23 +0200, Andreas Arnez wrote:
> Thanks, pushed after adjusting the commit message.

Since:
	commit 2d681be471cf8aff8f296cb7713c39e9aa4fc2bb
	Author: Andreas Arnez <arnez@linux.vnet.ibm.com>
	Date:   Wed Apr 27 15:52:16 2016 +0200
	    Avoid non-C++-enabled babeltrace versions
tested with:
	libbabeltrace-devel-1.2.4-4.fc24.x86_64
	libbabeltrace-devel-1.4.0-2.fc25.x86_64
it can no longer build due to:
	configure:16435: gcc -o conftest -m64 -g3 -pipe -Wall -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -fno-diagnostics-show-caret  -Werror  -static-libstdc++ -static-libgcc  conftest.c -ldl -ldl -lncurses -lm -ldl  -lbabeltrace -lbabeltrace-ctf >&5
	conftest.c: In function 'main':
	conftest.c:208:7: error: 'pos' is a pointer; did you mean to use '->'?

Have you tested that your line
	pos.type = BT_SEEK_BEGIN;
with some libbabeltrace version or was that just a typo?

OK for check-in?


Thanks,
Jan
gdb/ChangeLog
2016-07-03  Jan Kratochvil  <jan.kratochvil@redhat.com>

	* configure: Regenerate.
	* configure.ac (HAVE_LIBBABELTRACE): Fix pos variable dereference.
  

Comments

Andreas Arnez July 4, 2016, 8:39 a.m. UTC | #1
On Sun, Jul 03 2016, Jan Kratochvil wrote:

> On Wed, 27 Apr 2016 16:24:23 +0200, Andreas Arnez wrote:
>> Thanks, pushed after adjusting the commit message.
>
> Since:
> 	commit 2d681be471cf8aff8f296cb7713c39e9aa4fc2bb
> 	Author: Andreas Arnez <arnez@linux.vnet.ibm.com>
> 	Date:   Wed Apr 27 15:52:16 2016 +0200
> 	    Avoid non-C++-enabled babeltrace versions
> tested with:
> 	libbabeltrace-devel-1.2.4-4.fc24.x86_64
> 	libbabeltrace-devel-1.4.0-2.fc25.x86_64
> it can no longer build due to:
> 	configure:16435: gcc -o conftest -m64 -g3 -pipe -Wall -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -fno-diagnostics-show-caret  -Werror  -static-libstdc++ -static-libgcc  conftest.c -ldl -ldl -lncurses -lm -ldl  -lbabeltrace -lbabeltrace-ctf >&5
> 	conftest.c: In function 'main':
> 	conftest.c:208:7: error: 'pos' is a pointer; did you mean to use '->'?
>
> Have you tested that your line
> 	pos.type = BT_SEEK_BEGIN;
> with some libbabeltrace version or was that just a typo?

Phew, curious... this sure looks like a typo.  IIRC, I've tested that
GDB *builds*, but probably forgot to verify that the babeltrace
configure check actually succeeds.  Sorry about that.

--
Andreas
  
Jan Kratochvil July 5, 2016, 8:49 a.m. UTC | #2
On Mon, 04 Jul 2016 10:39:42 +0200, Andreas Arnez wrote:
> On Sun, Jul 03 2016, Jan Kratochvil wrote:
> > Have you tested that your line
> > 	pos.type = BT_SEEK_BEGIN;
> > with some libbabeltrace version or was that just a typo?
> 
> Phew, curious... this sure looks like a typo.  IIRC, I've tested that
> GDB *builds*, but probably forgot to verify that the babeltrace
> configure check actually succeeds.  Sorry about that.

Checked in as obvious:
	13cdc2afb7873547ec2910ba647fb4a68602252f


Jan
  

Patch

diff --git a/gdb/configure.ac b/gdb/configure.ac
index 920c228..5e2e938 100644
--- a/gdb/configure.ac
+++ b/gdb/configure.ac
@@ -2309,7 +2309,7 @@  else
 			struct bt_ctf_event *event = NULL;
 			const struct bt_definition *scope;
 
-			pos.type = BT_SEEK_BEGIN;
+			pos->type = BT_SEEK_BEGIN;
 			bt_iter_set_pos (bt_ctf_get_iter (NULL), pos);
 			scope = bt_ctf_get_top_level_scope (event,
 			      				   BT_STREAM_EVENT_HEADER);