Closed GoogleCodeExporter closed 9 years ago
Thanks for your attentions!
Original comment by at20042...@gmail.com
on 24 Jul 2013 at 10:37
What version of gcc did you build minidump_stackwalk with? I assume it built
with -O2 ?
Original comment by thestig@chromium.org
on 24 Jul 2013 at 9:02
You are right!
I have these in generated Makefile:
CCASFLAGS = -g -O2
CFLAGS = -g -O2
CXXFLAGS = -g -O2
After manually removing -O2, it works.
Thank you!
And more for this, in *README* file, this is one line:
CXXFLAGS=-m32 CFLAGS=-m32 CPPFLAGS=-m32 ./configure
This failed on Linux x64. And then I used only ./configure. It brings in -O2.
Now I use
CXXFLAGS=-m64 CFLAGS=-m64 CPPFLAGS=-m64 ./configure
or simply
CXXFLAGS= CFLAGS= CPPFLAGS= ./configure
Both work.
Thank you again!
Original comment by at20042...@gmail.com
on 25 Jul 2013 at 2:49
You never mentioned what version of gcc you are using. I suspect this is
another case of bug 474.
Original comment by thestig@chromium.org
on 25 Jul 2013 at 3:10
sorry!
Here it is.
$ gcc --version
gcc (Debian 4.3.2-1.1) 4.3.2
Copyright (C) 2008 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.
Original comment by at20042...@gmail.com
on 25 Jul 2013 at 3:58
Original comment by thestig@chromium.org
on 25 Jul 2013 at 8:17
Original issue reported on code.google.com by
at20042...@gmail.com
on 24 Jul 2013 at 10:35Attachments: