From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2744 invoked by alias); 24 Jul 2014 20:35:36 -0000 Mailing-List: contact gdb-prs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-prs-owner@sourceware.org Received: (qmail 2719 invoked by uid 48); 24 Jul 2014 20:35:36 -0000 From: "harry at harrydole dot com" To: gdb-prs@sourceware.org Subject: [Bug breakpoints/16439] rbreak . gives "unmatched quote" on Firefox Date: Thu, 24 Jul 2014 20:35:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gdb X-Bugzilla-Component: breakpoints X-Bugzilla-Version: 7.6 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: harry at harrydole dot com X-Bugzilla-Status: NEW X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at sourceware dot org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: http://sourceware.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2014-q3/txt/msg00149.txt.bz2 https://sourceware.org/bugzilla/show_bug.cgi?id=16439 harry at harrydole dot com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |harry at harrydole dot com --- Comment #1 from harry at harrydole dot com --- Perhaps this is a simpler "hello, world" example showing that "info function <<.*string" works, but "rb <<.*string" returns the dreaded unmatched quote". sh> cat hello.cpp #include int main() { std::cout << "hello, world" << std::endl; return 0; } sh> g++ --version g++ (GCC) 4.7.2 Copyright (C) 2012 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. sh> g++ -g hello.cpp sh> gdb a.out GNU gdb (GDB) 7.5 Copyright (C) 2012 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "x86_64-redhat-linux-gnu". For bug reporting instructions, please see: ... Reading symbols from /remote/icwb1/hdole/p4/fw/xmain/src/bool/a.out...done. (gdb) b 5 Breakpoint 1 at 0x400870: file hello.cpp, line 5. (gdb) r Starting program: /remote/icwb1/hdole/p4/fw/xmain/src/bool/a.out warning: no loadable sections found in added symbol-file system-supplied DSO at 0x2aaaaaac7000 Breakpoint 1, main () at hello.cpp:5 5 std::cout << "hello, world" << std::endl; (gdb) info function <<.*string All functions matching regular expression "<<.*string": File /remote/depotsrc/depotsrc/amd64-2.6/gcc-4.7.2/x86_64-redhat-linux/libstdc++-v3/include/bits/basic_string.h: std::basic_ostream > &std::operator<< , std::allocator >(std::basic_ostream >&, std::basic_string, std::allocator > const&); std::basic_ostream > &std::operator<< , std::allocator >(std::basic_ostream >&, std::basic_string, std::allocator > const&); (gdb) rb <<.*string unmatched quote -- You are receiving this mail because: You are on the CC list for the bug.