https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67903
--- Comment #5 from Yucheng Low ---
After some deep investigation on a related issue, I think might finally have a
root cause.
Introduction
- We compile as a shared library to be imported into Python as part of a
python
module.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67903
--- Comment #4 from Yucheng Low ---
I have tried version scripts and it ought to work but I couldn't quite figure
out what symbols to hide.
In any case, the proposed modification does fix a questionable bit of code in
locale.cc (i.e. the resize
Component: libstdc++
Assignee: unassigned at gcc dot gnu.org
Reporter: ylow at graphlab dot com
Target Milestone: ---
Created attachment 36466
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=36466&action=edit
patch to locale.cc
This is a complex issue and is prob
Priority: P3
Component: libstdc++
Assignee: unassigned at gcc dot gnu.org
Reporter: ylow at graphlab dot com
I am sorry I do not have a simple reproduction for this failure. It cropped up
in the middle of a rather large project. However, I traced it to this function
: target
Assignee: unassigned at gcc dot gnu.org
Reporter: ylow at graphlab dot com
The program computes the Gregory Liebniz Pi approximation for 100M iterations.
The algorithm is simple:
double pi_apx() {
double val = 0.0;
for (size_t i = 0;i < PI_ITERATIONS; ++i) {