src/femlib/QuadratureFormular.cpp:358: error: STATIC_INITIALIZATION_ORDER_FIASCO Initializer of Fem2D::QF_GaussLegendre5 accesses global variable from a different translation unit: std::cout|. Showing all 4 steps of the trace src/femlib/QuadratureFormular.cpp:358:1: initialization of Fem2D::QF_GaussLegendre5 356. ); 357. 358. > const QuadratureFormular1d QF_GaussLegendre5(-1+2*5,5,GaussLegendre(5),true); 359. const QuadratureFormular1d QF_GaussLegendre6(-1+2*6,6,GaussLegendre(6),true); 360. const QuadratureFormular1d QF_GaussLegendre7(-1+2*7,7,GaussLegendre(7),true); src/femlib/QuadratureFormular.cpp:358:28: call to Fem2D::GQuadratureFormular_GQuadratureFormular 356. ); 357. 358. const QuadratureFormular1d QF_GaussLegendre5(-1+2*5,5,GaussLegendre(5),true); ^ 359. const QuadratureFormular1d QF_GaussLegendre6(-1+2*6,6,GaussLegendre(6),true); 360. const QuadratureFormular1d QF_GaussLegendre7(-1+2*7,7,GaussLegendre(7),true); src/femlib/QuadratureFormular.hpp:85:51: call to Fem2D::GQuadratureFormular_Verification 83. void Verification(); // for verification 84. GQuadratureFormular (int e,int NbOfNodes,QuadraturePoint *pp,bool c=false) 85. :exact(e), n(NbOfNodes),size(n),p(pp),clean(c) {Verification();} ^ 86. GQuadratureFormular (int e,int NbOfNodes,const QuadraturePoint *pp,bool c=false) 87. :exact(e),n(NbOfNodes),p(pp),clean(c) {Verification();} src/femlib/QuadratureFormular.cpp:665:4: access to std::cout| 663. if (err>tol) 664. { 665. cerr << " d= " << d << "T Ordre= " << k << " d!k!/(d+k)!= " << se << " " ; ^ 666. for(int l=0;l<=d;++l) 667. cerr << sa[l] << " ";