From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 56304 invoked by alias); 28 Apr 2015 05:23:12 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 56265 invoked by uid 48); 28 Apr 2015 05:23:08 -0000 From: "mannu7410 at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/42033] libstdc++ seems to miss std::basic_string, std::allocator >::basic_string(char*, char*, std::allocator const&) Date: Tue, 28 Apr 2015 05:23:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 4.5.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: mannu7410 at gmail dot com X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.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://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2015-04/txt/msg02351.txt.bz2 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=42033 Manoj changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mannu7410 at gmail dot com --- Comment #12 from Manoj --- Hi, I am facing a similar issue. Following is the error that I am facing at run time: 0x00007ffff6a69e3e in ?? () from /lib/x86_64-linux-gnu/libc.so.6 (gdb) bt #0 0x00007ffff6a69e3e in ?? () from /lib/x86_64-linux-gnu/libc.so.6 #1 0x00007ffff704c842 in std::string::_Rep::_M_clone(std::allocator const&, unsigned long) () from /usr/lib/x86_64-linux-gnu/libstdc++.so.6 #2 0x00007ffff704c8e0 in std::string::reserve(unsigned long) () from /usr/lib/x86_64-linux-gnu/libstdc++.so.6 #3 0x00007ffff704cc10 in std::string::append(char const*, unsigned long) () from /usr/lib/x86_64-linux-gnu/libstdc++.so.6 #4 0x0000000000414577 in std::basic_string, std::allocator > std::operator+, std::allocator >(std::basic_string, std::allocator > const&, char const*) () #5 0x000000000040bb78 in ?? () #6 0x00000000004273ef in ?? () #7 0x0000000000427adc in ?? () #8 0x000000000040e01d in ?? () #9 0x00000000004273ef in ?? () #10 0x0000000000427adc in ?? () #11 0x000000000040beec in ?? () #12 0x00000000004273ef in ?? () #13 0x0000000000427adc in ?? () #14 0x000000000040beec in ?? () #15 0x00000000004273ef in ?? () #16 0x0000000000427adc in ?? () ---Type to continue, or q to quit--- #17 0x000000000040c38c in ?? () #18 0x00000000004273ef in ?? () #19 0x00000000004219ea in ?? () #20 0x000000000041c9c0 in ?? () #21 0x00007ffff69f2ec5 in __libc_start_main () from /lib/x86_64-linux-gnu/libc.so.6 #22 0x0000000000408cb9 in ?? () (gdb) fr #0 0x00007ffff6a69e3e in ?? () from /lib/x86_64-linux-gnu/libc.so.6 This is very random and I am not sure if this is some memory related issue or what. Any help will be great. Thanks