https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81584
--- Comment #2 from ghjghj530-bubu at yahoo dot de ---
You are right. The original script from GCC 6.3.0 contains a check for new/old
string implementation in the "init" function.
This bugreport can be closed. Sorry for the inconvenience.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83127
--- Comment #3 from ghjghj530-bubu at yahoo dot de ---
Changed my testcode to int main(). The error stil occurs.
The system is Windows 7, 64 bit, mingw.
Is use the GCC in a company-specific enviroment with some customized
linkersripts.
We first
normal
Priority: P3
Component: libstdc++
Assignee: unassigned at gcc dot gnu.org
Reporter: ghjghj530-bubu at yahoo dot de
Target Milestone: ---
Compiling the following testcode
#include
#include
void Main(void)
{
std::string testStr("Hello&quo
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83014
--- Comment #7 from ghjghj530-bubu at yahoo dot de ---
I tried debugging the GCC today (not my strong side).
I ended up to extracte the call to cc1plus.exe and started GDB with cc1plus.exe
as target.
If i just run the process the ICE still occurs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83014
--- Comment #5 from ghjghj530-bubu at yahoo dot de ---
The OS is Windows 7, 64-bit.
Unfortunately i don't use the debug-version of GCC and can therefore not
provide a detailed backtrace right now. Maybe next week.
Note that my original me
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83014
--- Comment #2 from ghjghj530-bubu at yahoo dot de ---
Thanks for your quick response:
Compiling with --verbose:
Using built-in specs.
COLLECT_GCC=i686-elf-gcc.exe
Target: i686-elf
Configured with: ../gcc-6.3.0/configure --prefix=/opt/V6.3.0
: sanitizer
Assignee: unassigned at gcc dot gnu.org
Reporter: ghjghj530-bubu at yahoo dot de
CC: dodji at gcc dot gnu.org, dvyukov at gcc dot gnu.org,
jakub at gcc dot gnu.org, kcc at gcc dot gnu.org, marxin at
gcc dot gnu.org
Target Milestone
bstdc++
Assignee: unassigned at gcc dot gnu.org
Reporter: ghjghj530-bubu at yahoo dot de
Target Milestone: ---
GCC 6.3, GDB 7.10, building with: -D_GLIBCXX_USE_CXX11_ABI=1
Code:
std::string fooVar = "hello world";
std::string* pFooVar = &fooVar;
(gdb) p p