
Thanks again!
Yes, AIX has several odd utilities, not always compatible with the GNU ones, but I don't think sed was one of them. Anyway, I noticed that your suggested command: /usr/bin/sed -f ./ppl-config.sed >ppl-config.h made little sense, so I dug in the Makefile, realized that you meant something like: /usr/bin/sed -f ./ppl-config.sed config.h > ppl-config.h
tried that (and it worked)... Then... to make a long story short, the problem was that you are probably using some features of make that AIX make does not have (but it usually shout out loudly about them, whereas this time it was silently doing something wrong), so I tried the GNU make and that error was solved.
Unfortunately, there is another one where I'm stuck, about the privateness of a field (see make.log). I hope to not take advantage too much of your kindness, asking again for help.
Thanks Davide Del Vento, Consulting Services Software Engineer NCAR Computational & Information Services Laboratory http://www.cisl.ucar.edu/hss/csg/ office: Mesa Lab, Room 42B
On 09/19/2009 12:20 AM Enea Zaffanella wrote:
Davide Del Vento wrote:
Thanks again for your time!
I am not fluent in C++ standards, and eventually I gave up on using the IBM compiler.
I tried gcc, it configured fine, but it failed during make with the following error, and several others thereafter (see attachments for details):
globals.inlines.hh:76: error: 'PPL_SIZEOF_MP_LIMB_T' was not declared in this scope
:-(
Note that my gmp installation looked fine, and all its test passed.
Well, I am not really an expert of configuration problems ... If things were going straight, you should have a
#define SIZEOF_MP_LIMB_T ...
in file <build_path>/config.h, as well as a
#define PPL_SIZEOF_MP_LIMB_T ...
in your <build_dir>/ppl-config.h.
As far as I can see, you seems to have the first one but not the second one of those defines. Hence, I guess the problem should occur in the execution of
/usr/bin/sed -f ./ppl-config.sed >ppl-config.h
Either you are using a non-compatible version of `sed', or our script ppl-config.sed assumes something which is not generally portable.
Can you please confirm my guessing above? Which version of sed are you using?
Cheers, Enea Zaffanella.
Thanks Davide Del Vento, Consulting Services Software Engineer NCAR Computational & Information Services Laboratory http://www.cisl.ucar.edu/hss/csg/ office: Mesa Lab, Room 42B phone: (303) 497-1233
gmake all-recursive gmake[1]: Entering directory `/ptmp/ddvento/install/ppl-0.10.2' Making all in . gmake[2]: Entering directory `/ptmp/ddvento/install/ppl-0.10.2' /usr/bin/sed -f ./ppl-config.sed config.h >ppl-config.h gmake[2]: Leaving directory `/ptmp/ddvento/install/ppl-0.10.2' Making all in utils gmake[2]: Entering directory `/ptmp/ddvento/install/ppl-0.10.2/utils' g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT timings.o -MD -MP -MF .deps/timings.Tpo -c -o timings.o timings.cc mv -f .deps/timings.Tpo .deps/timings.Po rm -f libppl_utils.a ar cru libppl_utils.a timings.o ranlib libppl_utils.a /usr/bin/sed -e 's,[@]PERL[@],/usr/bin/perl,g' -e 's,[@]generated_automatically[@],Generated automatically: do not modify; modify the .in file instead.,g' < ./build_header.in > build_header chmod +x build_header /usr/bin/sed -e 's,[@]PERL[@],/usr/bin/perl,g' -e 's,[@]generated_automatically[@],Generated automatically: do not modify; modify the .in file instead.,g' < ./text2cxxarray.in > text2cxxarray chmod +x text2cxxarray gmake[2]: Leaving directory `/ptmp/ddvento/install/ppl-0.10.2/utils' Making all in src gmake[2]: Entering directory `/ptmp/ddvento/install/ppl-0.10.2/src' for file in namespaces.hh compiler.hh meta_programming.hh Slow_Copy.hh Has_Assign_Or_Swap.hh assign_or_swap.hh mp_std_bits.defs.hh mp_std_bits.inlines.hh Temp.defs.hh Temp.inlines.hh Temp.templates.hh Coefficient_traits_template.hh Checked_Number.types.hh GMP_Integer.types.hh Coefficient.types.hh stdiobuf.types.hh c_streambuf.types.hh globals.types.hh iterator_to_const.types.hh distances.types.hh Interval_Info.types.hh Interval.types.hh Box.types.hh Constraint.types.hh Generator.types.hh Grid_Generator.types.hh Congruence.types.hh Init.types.hh Row.types.hh Linear_Row.types.hh Matrix.types.hh Variable.types.hh Variables_Set.types.hh Linear_Expression.types.hh Linear_System.types.hh Bit_Row.types.hh Bit_Matrix.types.hh Constraint_System.types.hh Generator_System.types.hh Grid_Generator_System.types.hh Congruence_System.types.hh Scalar_Products.types.hh MIP_Problem.types.hh Poly_Con_Relation.types.hh Poly_Gen_Relation.types.hh BHRZ03_Certificate.types.hh H79_Certificate.types.hh Grid_Certificate.types.hh Polyhedron.types.hh C_Polyhedron.types.hh NNC_Polyhedron.types.hh Grid.types.hh Ptr_Iterator.types.hh DB_Row.types.hh DB_Matrix.types.hh BD_Shape.types.hh OR_Matrix.types.hh Octagonal_Shape.types.hh fpu.types.hh Float.defs.hh Float.inlines.hh C_Integer.hh fpu.defs.hh fpu-c99.inlines.hh fpu-ia32.inlines.hh fpu-none.inlines.hh fpu-sparc.inlines.hh Rounding_Dir.defs.hh Rounding_Dir.inlines.hh Result.defs.hh Result.inlines.hh Numeric_Format.defs.hh checked.defs.hh checked.inlines.hh checked_int.inlines.hh checked_float.inlines.hh checked_mpz.inlines.hh checked_mpq.inlines.hh checked_ext.inlines.hh Checked_Number.defs.hh Checked_Number.inlines.hh Checked_Number.templates.hh checked_numeric_limits.hh GMP_Integer.defs.hh GMP_Integer.inlines.hh Coefficient.defs.hh Coefficient.inlines.hh stdiobuf.defs.hh stdiobuf.inlines.hh c_streambuf.defs.hh c_streambuf.inlines.hh globals.defs.hh globals.inlines.hh math_utilities.defs.hh math_utilities.inlines.hh iterator_to_const.defs.hh iterator_to_const.inlines.hh distances.defs.hh distances.inlines.hh Boundary.defs.hh Interval_Info.defs.hh Interval_Info.inlines.hh Interval_Restriction.defs.hh Interval.defs.hh Interval.inlines.hh Interval.templates.hh Box.defs.hh Box_Status.inlines.hh Box.inlines.hh Box.templates.hh Rational_Interval.hh Rational_Box.hh Variable.defs.hh Variable.inlines.hh Variables_Set.defs.hh Variables_Set.inlines.hh Init.defs.hh Init.inlines.hh initializer.hh Topology.hh Row.defs.hh Row.inlines.hh Linear_Row.defs.hh Linear_Row.inlines.hh Matrix.defs.hh Matrix.inlines.hh Bit_Row.defs.hh Bit_Row.inlines.hh Linear_System.defs.hh Linear_System.inlines.hh Bit_Matrix.defs.hh Bit_Matrix.inlines.hh Constraint_System.defs.hh Generator_System.defs.hh Grid_Generator_System.defs.hh Congruence_System.defs.hh Linear_Expression.defs.hh Linear_Expression.inlines.hh Constraint.defs.hh Constraint.inlines.hh Constraint_System.inlines.hh Generator.defs.hh Generator.inlines.hh Grid_Generator.defs.hh Grid_Generator.inlines.hh Congruence.defs.hh Congruence.inlines.hh Generator_System.inlines.hh Grid_Generator_System.inlines.hh Congruence_System.inlines.hh Scalar_Products.defs.hh Scalar_Products.inlines.hh MIP_Problem.defs.hh MIP_Problem.inlines.hh MIP_Problem.templates.hh Poly_Con_Relation.defs.hh Poly_Con_Relation.inlines.hh Poly_Gen_Relation.defs.hh Poly_Gen_Relation.inlines.hh BHRZ03_Certificate.defs.hh BHRZ03_Certificate.inlines.hh H79_Certificate.defs.hh H79_Certificate.inlines.hh Grid_Certificate.defs.hh Grid_Certificate.inlines.hh Polyhedron.defs.hh Ph_Status.inlines.hh Polyhedron.inlines.hh Polyhedron.templates.hh Grid.defs.hh Grid_Status.inlines.hh Grid.inlines.hh Grid.templates.hh C_Polyhedron.defs.hh C_Polyhedron.inlines.hh NNC_Polyhedron.defs.hh NNC_Polyhedron.inlines.hh Widening_Function.types.hh Widening_Function.defs.hh Widening_Function.inlines.hh Ptr_Iterator.defs.hh Ptr_Iterator.inlines.hh DB_Row.defs.hh DB_Row.inlines.hh DB_Row.templates.hh DB_Matrix.defs.hh DB_Matrix.inlines.hh DB_Matrix.templates.hh BD_Shape.defs.hh BDS_Status.inlines.hh BD_Shape.inlines.hh BD_Shape.templates.hh OR_Matrix.defs.hh OR_Matrix.inlines.hh OR_Matrix.templates.hh Octagonal_Shape.defs.hh Og_Status.inlines.hh Octagonal_Shape.inlines.hh Octagonal_Shape.templates.hh Determinate.types.hh Determinate.defs.hh Determinate.inlines.hh Powerset.types.hh Powerset.defs.hh Powerset.inlines.hh Powerset.templates.hh Pointset_Powerset.types.hh Pointset_Powerset.defs.hh Pointset_Powerset.inlines.hh Pointset_Powerset.templates.hh Partially_Reduced_Product.types.hh Partially_Reduced_Product.defs.hh Partially_Reduced_Product.inlines.hh Partially_Reduced_Product.templates.hh max_space_dimension.hh algorithms.hh wrap.hh ; \ do \ i="#include "$file"" ; \ ( cd ../src ; /usr/local/bin//grep -F -q "$i" namespaces.hh compiler.hh meta_programming.hh Slow_Copy.hh Has_Assign_Or_Swap.hh assign_or_swap.hh mp_std_bits.defs.hh mp_std_bits.inlines.hh Temp.defs.hh Temp.inlines.hh Temp.templates.hh Coefficient_traits_template.hh Checked_Number.types.hh GMP_Integer.types.hh Coefficient.types.hh stdiobuf.types.hh c_streambuf.types.hh globals.types.hh iterator_to_const.types.hh distances.types.hh Interval_Info.types.hh Interval.types.hh Box.types.hh Constraint.types.hh Generator.types.hh Grid_Generator.types.hh Congruence.types.hh Init.types.hh Row.types.hh Linear_Row.types.hh Matrix.types.hh Variable.types.hh Variables_Set.types.hh Linear_Expression.types.hh Linear_System.types.hh Bit_Row.types.hh Bit_Matrix.types.hh Constraint_System.types.hh Generator_System.types.hh Grid_Generator_System.types.hh Congruence_System.types.hh Scalar_Products.types.hh MIP_Problem.types.hh Poly_Con_Relation.types.hh Poly_Gen_Relation.types.hh BHRZ03_Certificate.types.hh H79_Certificate.types.hh Grid_Certificate.types.hh Polyhedron.types.hh C_Polyhedron.types.hh NNC_Polyhedron.types.hh Grid.types.hh Ptr_Iterator.types.hh DB_Row.types.hh DB_Matrix.types.hh BD_Shape.types.hh OR_Matrix.types.hh Octagonal_Shape.types.hh fpu.types.hh Float.defs.hh Float.inlines.hh C_Integer.hh fpu.defs.hh fpu-c99.inlines.hh fpu-ia32.inlines.hh fpu-none.inlines.hh fpu-sparc.inlines.hh Rounding_Dir.defs.hh Rounding_Dir.inlines.hh Result.defs.hh Result.inlines.hh Numeric_Format.defs.hh checked.defs.hh checked.inlines.hh checked_int.inlines.hh checked_float.inlines.hh checked_mpz.inlines.hh checked_mpq.inlines.hh checked_ext.inlines.hh Checked_Number.defs.hh Checked_Number.inlines.hh Checked_Number.templates.hh checked_numeric_limits.hh GMP_Integer.defs.hh GMP_Integer.inlines.hh Coefficient.defs.hh Coefficient.inlines.hh stdiobuf.defs.hh stdiobuf.inlines.hh c_streambuf.defs.hh c_streambuf.inlines.hh globals.defs.hh globals.inlines.hh math_utilities.defs.hh math_utilities.inlines.hh iterator_to_const.defs.hh iterator_to_const.inlines.hh distances.defs.hh distances.inlines.hh Boundary.defs.hh Interval_Info.defs.hh Interval_Info.inlines.hh Interval_Restriction.defs.hh Interval.defs.hh Interval.inlines.hh Interval.templates.hh Box.defs.hh Box_Status.inlines.hh Box.inlines.hh Box.templates.hh Rational_Interval.hh Rational_Box.hh Variable.defs.hh Variable.inlines.hh Variables_Set.defs.hh Variables_Set.inlines.hh Init.defs.hh Init.inlines.hh initializer.hh Topology.hh Row.defs.hh Row.inlines.hh Linear_Row.defs.hh Linear_Row.inlines.hh Matrix.defs.hh Matrix.inlines.hh Bit_Row.defs.hh Bit_Row.inlines.hh Linear_System.defs.hh Linear_System.inlines.hh Bit_Matrix.defs.hh Bit_Matrix.inlines.hh Constraint_System.defs.hh Generator_System.defs.hh Grid_Generator_System.defs.hh Congruence_System.defs.hh Linear_Expression.defs.hh Linear_Expression.inlines.hh Constraint.defs.hh Constraint.inlines.hh Constraint_System.inlines.hh Generator.defs.hh Generator.inlines.hh Grid_Generator.defs.hh Grid_Generator.inlines.hh Congruence.defs.hh Congruence.inlines.hh Generator_System.inlines.hh Grid_Generator_System.inlines.hh Congruence_System.inlines.hh Scalar_Products.defs.hh Scalar_Products.inlines.hh MIP_Problem.defs.hh MIP_Problem.inlines.hh MIP_Problem.templates.hh Poly_Con_Relation.defs.hh Poly_Con_Relation.inlines.hh Poly_Gen_Relation.defs.hh Poly_Gen_Relation.inlines.hh BHRZ03_Certificate.defs.hh BHRZ03_Certificate.inlines.hh H79_Certificate.defs.hh H79_Certificate.inlines.hh Grid_Certificate.defs.hh Grid_Certificate.inlines.hh Polyhedron.defs.hh Ph_Status.inlines.hh Polyhedron.inlines.hh Polyhedron.templates.hh Grid.defs.hh Grid_Status.inlines.hh Grid.inlines.hh Grid.templates.hh C_Polyhedron.defs.hh C_Polyhedron.inlines.hh NNC_Polyhedron.defs.hh NNC_Polyhedron.inlines.hh Widening_Function.types.hh Widening_Function.defs.hh Widening_Function.inlines.hh Ptr_Iterator.defs.hh Ptr_Iterator.inlines.hh DB_Row.defs.hh DB_Row.inlines.hh DB_Row.templates.hh DB_Matrix.defs.hh DB_Matrix.inlines.hh DB_Matrix.templates.hh BD_Shape.defs.hh BDS_Status.inlines.hh BD_Shape.inlines.hh BD_Shape.templates.hh OR_Matrix.defs.hh OR_Matrix.inlines.hh OR_Matrix.templates.hh Octagonal_Shape.defs.hh Og_Status.inlines.hh Octagonal_Shape.inlines.hh Octagonal_Shape.templates.hh Determinate.types.hh Determinate.defs.hh Determinate.inlines.hh Powerset.types.hh Powerset.defs.hh Powerset.inlines.hh Powerset.templates.hh Pointset_Powerset.types.hh Pointset_Powerset.defs.hh Pointset_Powerset.inlines.hh Pointset_Powerset.templates.hh Partially_Reduced_Product.types.hh Partially_Reduced_Product.defs.hh Partially_Reduced_Product.inlines.hh Partially_Reduced_Product.templates.hh max_space_dimension.hh algorithms.hh wrap.hh ) || echo "$i" ; \ done > ppl_include_files.hh ../utils/build_header \ -I .. -I ../src \ ../src/ppl_header.hh >ppl.hh ../utils/text2cxxarray --name=BUGS_array \ ../BUGS >BUGS.cc ../utils/text2cxxarray --name=COPYING_array \ ../COPYING >COPYING.cc ../utils/text2cxxarray --name=CREDITS_array \ ../CREDITS >CREDITS.cc gmake all-am gmake[3]: Entering directory `/ptmp/ddvento/install/ppl-0.10.2/src' /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Box.lo -MD -MP -MF .deps/Box.Tpo -c -o Box.lo Box.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Box.lo -MD -MP -MF .deps/Box.Tpo -c Box.cc -DPIC -o .libs/Box.o mv -f .deps/Box.Tpo .deps/Box.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT checked.lo -MD -MP -MF .deps/checked.Tpo -c -o checked.lo checked.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT checked.lo -MD -MP -MF .deps/checked.Tpo -c checked.cc -DPIC -o .libs/checked.o mv -f .deps/checked.Tpo .deps/checked.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Checked_Number.lo -MD -MP -MF .deps/Checked_Number.Tpo -c -o Checked_Number.lo Checked_Number.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Checked_Number.lo -MD -MP -MF .deps/Checked_Number.Tpo -c Checked_Number.cc -DPIC -o .libs/Checked_Number.o mv -f .deps/Checked_Number.Tpo .deps/Checked_Number.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Float.lo -MD -MP -MF .deps/Float.Tpo -c -o Float.lo Float.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Float.lo -MD -MP -MF .deps/Float.Tpo -c Float.cc -DPIC -o .libs/Float.o mv -f .deps/Float.Tpo .deps/Float.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT fpu-ia32.lo -MD -MP -MF .deps/fpu-ia32.Tpo -c -o fpu-ia32.lo fpu-ia32.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT fpu-ia32.lo -MD -MP -MF .deps/fpu-ia32.Tpo -c fpu-ia32.cc -DPIC -o .libs/fpu-ia32.o mv -f .deps/fpu-ia32.Tpo .deps/fpu-ia32.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Constraint.lo -MD -MP -MF .deps/Constraint.Tpo -c -o Constraint.lo Constraint.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Constraint.lo -MD -MP -MF .deps/Constraint.Tpo -c Constraint.cc -DPIC -o .libs/Constraint.o mv -f .deps/Constraint.Tpo .deps/Constraint.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Constraint_System.lo -MD -MP -MF .deps/Constraint_System.Tpo -c -o Constraint_System.lo Constraint_System.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Constraint_System.lo -MD -MP -MF .deps/Constraint_System.Tpo -c Constraint_System.cc -DPIC -o .libs/Constraint_System.o mv -f .deps/Constraint_System.Tpo .deps/Constraint_System.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Congruence.lo -MD -MP -MF .deps/Congruence.Tpo -c -o Congruence.lo Congruence.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Congruence.lo -MD -MP -MF .deps/Congruence.Tpo -c Congruence.cc -DPIC -o .libs/Congruence.o mv -f .deps/Congruence.Tpo .deps/Congruence.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Congruence_System.lo -MD -MP -MF .deps/Congruence_System.Tpo -c -o Congruence_System.lo Congruence_System.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Congruence_System.lo -MD -MP -MF .deps/Congruence_System.Tpo -c Congruence_System.cc -DPIC -o .libs/Congruence_System.o mv -f .deps/Congruence_System.Tpo .deps/Congruence_System.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Generator_System.lo -MD -MP -MF .deps/Generator_System.Tpo -c -o Generator_System.lo Generator_System.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Generator_System.lo -MD -MP -MF .deps/Generator_System.Tpo -c Generator_System.cc -DPIC -o .libs/Generator_System.o mv -f .deps/Generator_System.Tpo .deps/Generator_System.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Grid_Generator_System.lo -MD -MP -MF .deps/Grid_Generator_System.Tpo -c -o Grid_Generator_System.lo Grid_Generator_System.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Grid_Generator_System.lo -MD -MP -MF .deps/Grid_Generator_System.Tpo -c Grid_Generator_System.cc -DPIC -o .libs/Grid_Generator_System.o mv -f .deps/Grid_Generator_System.Tpo .deps/Grid_Generator_System.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Generator.lo -MD -MP -MF .deps/Generator.Tpo -c -o Generator.lo Generator.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Generator.lo -MD -MP -MF .deps/Generator.Tpo -c Generator.cc -DPIC -o .libs/Generator.o mv -f .deps/Generator.Tpo .deps/Generator.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Grid_Generator.lo -MD -MP -MF .deps/Grid_Generator.Tpo -c -o Grid_Generator.lo Grid_Generator.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Grid_Generator.lo -MD -MP -MF .deps/Grid_Generator.Tpo -c Grid_Generator.cc -DPIC -o .libs/Grid_Generator.o mv -f .deps/Grid_Generator.Tpo .deps/Grid_Generator.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Init.lo -MD -MP -MF .deps/Init.Tpo -c -o Init.lo Init.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Init.lo -MD -MP -MF .deps/Init.Tpo -c Init.cc -DPIC -o .libs/Init.o mv -f .deps/Init.Tpo .deps/Init.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Coefficient.lo -MD -MP -MF .deps/Coefficient.Tpo -c -o Coefficient.lo Coefficient.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Coefficient.lo -MD -MP -MF .deps/Coefficient.Tpo -c Coefficient.cc -DPIC -o .libs/Coefficient.o mv -f .deps/Coefficient.Tpo .deps/Coefficient.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Linear_Expression.lo -MD -MP -MF .deps/Linear_Expression.Tpo -c -o Linear_Expression.lo Linear_Expression.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Linear_Expression.lo -MD -MP -MF .deps/Linear_Expression.Tpo -c Linear_Expression.cc -DPIC -o .libs/Linear_Expression.o mv -f .deps/Linear_Expression.Tpo .deps/Linear_Expression.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Linear_System.lo -MD -MP -MF .deps/Linear_System.Tpo -c -o Linear_System.lo Linear_System.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Linear_System.lo -MD -MP -MF .deps/Linear_System.Tpo -c Linear_System.cc -DPIC -o .libs/Linear_System.o mv -f .deps/Linear_System.Tpo .deps/Linear_System.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Matrix.lo -MD -MP -MF .deps/Matrix.Tpo -c -o Matrix.lo Matrix.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Matrix.lo -MD -MP -MF .deps/Matrix.Tpo -c Matrix.cc -DPIC -o .libs/Matrix.o mv -f .deps/Matrix.Tpo .deps/Matrix.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Scalar_Products.lo -MD -MP -MF .deps/Scalar_Products.Tpo -c -o Scalar_Products.lo Scalar_Products.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Scalar_Products.lo -MD -MP -MF .deps/Scalar_Products.Tpo -c Scalar_Products.cc -DPIC -o .libs/Scalar_Products.o mv -f .deps/Scalar_Products.Tpo .deps/Scalar_Products.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT MIP_Problem.lo -MD -MP -MF .deps/MIP_Problem.Tpo -c -o MIP_Problem.lo MIP_Problem.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT MIP_Problem.lo -MD -MP -MF .deps/MIP_Problem.Tpo -c MIP_Problem.cc -DPIC -o .libs/MIP_Problem.o mv -f .deps/MIP_Problem.Tpo .deps/MIP_Problem.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Poly_Con_Relation.lo -MD -MP -MF .deps/Poly_Con_Relation.Tpo -c -o Poly_Con_Relation.lo Poly_Con_Relation.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Poly_Con_Relation.lo -MD -MP -MF .deps/Poly_Con_Relation.Tpo -c Poly_Con_Relation.cc -DPIC -o .libs/Poly_Con_Relation.o mv -f .deps/Poly_Con_Relation.Tpo .deps/Poly_Con_Relation.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Poly_Gen_Relation.lo -MD -MP -MF .deps/Poly_Gen_Relation.Tpo -c -o Poly_Gen_Relation.lo Poly_Gen_Relation.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Poly_Gen_Relation.lo -MD -MP -MF .deps/Poly_Gen_Relation.Tpo -c Poly_Gen_Relation.cc -DPIC -o .libs/Poly_Gen_Relation.o mv -f .deps/Poly_Gen_Relation.Tpo .deps/Poly_Gen_Relation.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT BHRZ03_Certificate.lo -MD -MP -MF .deps/BHRZ03_Certificate.Tpo -c -o BHRZ03_Certificate.lo BHRZ03_Certificate.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT BHRZ03_Certificate.lo -MD -MP -MF .deps/BHRZ03_Certificate.Tpo -c BHRZ03_Certificate.cc -DPIC -o .libs/BHRZ03_Certificate.o mv -f .deps/BHRZ03_Certificate.Tpo .deps/BHRZ03_Certificate.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT H79_Certificate.lo -MD -MP -MF .deps/H79_Certificate.Tpo -c -o H79_Certificate.lo H79_Certificate.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT H79_Certificate.lo -MD -MP -MF .deps/H79_Certificate.Tpo -c H79_Certificate.cc -DPIC -o .libs/H79_Certificate.o mv -f .deps/H79_Certificate.Tpo .deps/H79_Certificate.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Grid_Certificate.lo -MD -MP -MF .deps/Grid_Certificate.Tpo -c -o Grid_Certificate.lo Grid_Certificate.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Grid_Certificate.lo -MD -MP -MF .deps/Grid_Certificate.Tpo -c Grid_Certificate.cc -DPIC -o .libs/Grid_Certificate.o mv -f .deps/Grid_Certificate.Tpo .deps/Grid_Certificate.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Polyhedron_nonpublic.lo -MD -MP -MF .deps/Polyhedron_nonpublic.Tpo -c -o Polyhedron_nonpublic.lo Polyhedron_nonpublic.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Polyhedron_nonpublic.lo -MD -MP -MF .deps/Polyhedron_nonpublic.Tpo -c Polyhedron_nonpublic.cc -DPIC -o .libs/Polyhedron_nonpublic.o mv -f .deps/Polyhedron_nonpublic.Tpo .deps/Polyhedron_nonpublic.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Polyhedron_public.lo -MD -MP -MF .deps/Polyhedron_public.Tpo -c -o Polyhedron_public.lo Polyhedron_public.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Polyhedron_public.lo -MD -MP -MF .deps/Polyhedron_public.Tpo -c Polyhedron_public.cc -DPIC -o .libs/Polyhedron_public.o mv -f .deps/Polyhedron_public.Tpo .deps/Polyhedron_public.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Polyhedron_chdims.lo -MD -MP -MF .deps/Polyhedron_chdims.Tpo -c -o Polyhedron_chdims.lo Polyhedron_chdims.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Polyhedron_chdims.lo -MD -MP -MF .deps/Polyhedron_chdims.Tpo -c Polyhedron_chdims.cc -DPIC -o .libs/Polyhedron_chdims.o mv -f .deps/Polyhedron_chdims.Tpo .deps/Polyhedron_chdims.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Polyhedron_widenings.lo -MD -MP -MF .deps/Polyhedron_widenings.Tpo -c -o Polyhedron_widenings.lo Polyhedron_widenings.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Polyhedron_widenings.lo -MD -MP -MF .deps/Polyhedron_widenings.Tpo -c Polyhedron_widenings.cc -DPIC -o .libs/Polyhedron_widenings.o mv -f .deps/Polyhedron_widenings.Tpo .deps/Polyhedron_widenings.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT C_Polyhedron.lo -MD -MP -MF .deps/C_Polyhedron.Tpo -c -o C_Polyhedron.lo C_Polyhedron.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT C_Polyhedron.lo -MD -MP -MF .deps/C_Polyhedron.Tpo -c C_Polyhedron.cc -DPIC -o .libs/C_Polyhedron.o mv -f .deps/C_Polyhedron.Tpo .deps/C_Polyhedron.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT NNC_Polyhedron.lo -MD -MP -MF .deps/NNC_Polyhedron.Tpo -c -o NNC_Polyhedron.lo NNC_Polyhedron.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT NNC_Polyhedron.lo -MD -MP -MF .deps/NNC_Polyhedron.Tpo -c NNC_Polyhedron.cc -DPIC -o .libs/NNC_Polyhedron.o mv -f .deps/NNC_Polyhedron.Tpo .deps/NNC_Polyhedron.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Grid_nonpublic.lo -MD -MP -MF .deps/Grid_nonpublic.Tpo -c -o Grid_nonpublic.lo Grid_nonpublic.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Grid_nonpublic.lo -MD -MP -MF .deps/Grid_nonpublic.Tpo -c Grid_nonpublic.cc -DPIC -o .libs/Grid_nonpublic.o mv -f .deps/Grid_nonpublic.Tpo .deps/Grid_nonpublic.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Grid_public.lo -MD -MP -MF .deps/Grid_public.Tpo -c -o Grid_public.lo Grid_public.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Grid_public.lo -MD -MP -MF .deps/Grid_public.Tpo -c Grid_public.cc -DPIC -o .libs/Grid_public.o mv -f .deps/Grid_public.Tpo .deps/Grid_public.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Grid_chdims.lo -MD -MP -MF .deps/Grid_chdims.Tpo -c -o Grid_chdims.lo Grid_chdims.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Grid_chdims.lo -MD -MP -MF .deps/Grid_chdims.Tpo -c Grid_chdims.cc -DPIC -o .libs/Grid_chdims.o mv -f .deps/Grid_chdims.Tpo .deps/Grid_chdims.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Grid_widenings.lo -MD -MP -MF .deps/Grid_widenings.Tpo -c -o Grid_widenings.lo Grid_widenings.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Grid_widenings.lo -MD -MP -MF .deps/Grid_widenings.Tpo -c Grid_widenings.cc -DPIC -o .libs/Grid_widenings.o mv -f .deps/Grid_widenings.Tpo .deps/Grid_widenings.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT BD_Shape.lo -MD -MP -MF .deps/BD_Shape.Tpo -c -o BD_Shape.lo BD_Shape.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT BD_Shape.lo -MD -MP -MF .deps/BD_Shape.Tpo -c BD_Shape.cc -DPIC -o .libs/BD_Shape.o mv -f .deps/BD_Shape.Tpo .deps/BD_Shape.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Octagonal_Shape.lo -MD -MP -MF .deps/Octagonal_Shape.Tpo -c -o Octagonal_Shape.lo Octagonal_Shape.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Octagonal_Shape.lo -MD -MP -MF .deps/Octagonal_Shape.Tpo -c Octagonal_Shape.cc -DPIC -o .libs/Octagonal_Shape.o mv -f .deps/Octagonal_Shape.Tpo .deps/Octagonal_Shape.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Pointset_Powerset.lo -MD -MP -MF .deps/Pointset_Powerset.Tpo -c -o Pointset_Powerset.lo Pointset_Powerset.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Pointset_Powerset.lo -MD -MP -MF .deps/Pointset_Powerset.Tpo -c Pointset_Powerset.cc -DPIC -o .libs/Pointset_Powerset.o mv -f .deps/Pointset_Powerset.Tpo .deps/Pointset_Powerset.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Row.lo -MD -MP -MF .deps/Row.Tpo -c -o Row.lo Row.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Row.lo -MD -MP -MF .deps/Row.Tpo -c Row.cc -DPIC -o .libs/Row.o mv -f .deps/Row.Tpo .deps/Row.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Linear_Row.lo -MD -MP -MF .deps/Linear_Row.Tpo -c -o Linear_Row.lo Linear_Row.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Linear_Row.lo -MD -MP -MF .deps/Linear_Row.Tpo -c Linear_Row.cc -DPIC -o .libs/Linear_Row.o mv -f .deps/Linear_Row.Tpo .deps/Linear_Row.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Bit_Matrix.lo -MD -MP -MF .deps/Bit_Matrix.Tpo -c -o Bit_Matrix.lo Bit_Matrix.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Bit_Matrix.lo -MD -MP -MF .deps/Bit_Matrix.Tpo -c Bit_Matrix.cc -DPIC -o .libs/Bit_Matrix.o mv -f .deps/Bit_Matrix.Tpo .deps/Bit_Matrix.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Bit_Row.lo -MD -MP -MF .deps/Bit_Row.Tpo -c -o Bit_Row.lo Bit_Row.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Bit_Row.lo -MD -MP -MF .deps/Bit_Row.Tpo -c Bit_Row.cc -DPIC -o .libs/Bit_Row.o mv -f .deps/Bit_Row.Tpo .deps/Bit_Row.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Ph_Status.lo -MD -MP -MF .deps/Ph_Status.Tpo -c -o Ph_Status.lo Ph_Status.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Ph_Status.lo -MD -MP -MF .deps/Ph_Status.Tpo -c Ph_Status.cc -DPIC -o .libs/Ph_Status.o mv -f .deps/Ph_Status.Tpo .deps/Ph_Status.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Grid_Status.lo -MD -MP -MF .deps/Grid_Status.Tpo -c -o Grid_Status.lo Grid_Status.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Grid_Status.lo -MD -MP -MF .deps/Grid_Status.Tpo -c Grid_Status.cc -DPIC -o .libs/Grid_Status.o mv -f .deps/Grid_Status.Tpo .deps/Grid_Status.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Variable.lo -MD -MP -MF .deps/Variable.Tpo -c -o Variable.lo Variable.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Variable.lo -MD -MP -MF .deps/Variable.Tpo -c Variable.cc -DPIC -o .libs/Variable.o mv -f .deps/Variable.Tpo .deps/Variable.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Variables_Set.lo -MD -MP -MF .deps/Variables_Set.Tpo -c -o Variables_Set.lo Variables_Set.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Variables_Set.lo -MD -MP -MF .deps/Variables_Set.Tpo -c Variables_Set.cc -DPIC -o .libs/Variables_Set.o mv -f .deps/Variables_Set.Tpo .deps/Variables_Set.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT conversion.lo -MD -MP -MF .deps/conversion.Tpo -c -o conversion.lo conversion.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT conversion.lo -MD -MP -MF .deps/conversion.Tpo -c conversion.cc -DPIC -o .libs/conversion.o mv -f .deps/conversion.Tpo .deps/conversion.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT minimize.lo -MD -MP -MF .deps/minimize.Tpo -c -o minimize.lo minimize.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT minimize.lo -MD -MP -MF .deps/minimize.Tpo -c minimize.cc -DPIC -o .libs/minimize.o mv -f .deps/minimize.Tpo .deps/minimize.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT simplify.lo -MD -MP -MF .deps/simplify.Tpo -c -o simplify.lo simplify.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT simplify.lo -MD -MP -MF .deps/simplify.Tpo -c simplify.cc -DPIC -o .libs/simplify.o mv -f .deps/simplify.Tpo .deps/simplify.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Grid_conversion.lo -MD -MP -MF .deps/Grid_conversion.Tpo -c -o Grid_conversion.lo Grid_conversion.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Grid_conversion.lo -MD -MP -MF .deps/Grid_conversion.Tpo -c Grid_conversion.cc -DPIC -o .libs/Grid_conversion.o mv -f .deps/Grid_conversion.Tpo .deps/Grid_conversion.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Grid_simplify.lo -MD -MP -MF .deps/Grid_simplify.Tpo -c -o Grid_simplify.lo Grid_simplify.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT Grid_simplify.lo -MD -MP -MF .deps/Grid_simplify.Tpo -c Grid_simplify.cc -DPIC -o .libs/Grid_simplify.o mv -f .deps/Grid_simplify.Tpo .deps/Grid_simplify.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT stdiobuf.lo -MD -MP -MF .deps/stdiobuf.Tpo -c -o stdiobuf.lo stdiobuf.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT stdiobuf.lo -MD -MP -MF .deps/stdiobuf.Tpo -c stdiobuf.cc -DPIC -o .libs/stdiobuf.o mv -f .deps/stdiobuf.Tpo .deps/stdiobuf.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT c_streambuf.lo -MD -MP -MF .deps/c_streambuf.Tpo -c -o c_streambuf.lo c_streambuf.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT c_streambuf.lo -MD -MP -MF .deps/c_streambuf.Tpo -c c_streambuf.cc -DPIC -o .libs/c_streambuf.o mv -f .deps/c_streambuf.Tpo .deps/c_streambuf.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT globals.lo -MD -MP -MF .deps/globals.Tpo -c -o globals.lo globals.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT globals.lo -MD -MP -MF .deps/globals.Tpo -c globals.cc -DPIC -o .libs/globals.o mv -f .deps/globals.Tpo .deps/globals.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT mp_std_bits.lo -MD -MP -MF .deps/mp_std_bits.Tpo -c -o mp_std_bits.lo mp_std_bits.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT mp_std_bits.lo -MD -MP -MF .deps/mp_std_bits.Tpo -c mp_std_bits.cc -DPIC -o .libs/mp_std_bits.o mv -f .deps/mp_std_bits.Tpo .deps/mp_std_bits.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT version.lo -MD -MP -MF .deps/version.Tpo -c -o version.lo version.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT version.lo -MD -MP -MF .deps/version.Tpo -c version.cc -DPIC -o .libs/version.o mv -f .deps/version.Tpo .deps/version.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT wrap.lo -MD -MP -MF .deps/wrap.Tpo -c -o wrap.lo wrap.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT wrap.lo -MD -MP -MF .deps/wrap.Tpo -c wrap.cc -DPIC -o .libs/wrap.o mv -f .deps/wrap.Tpo .deps/wrap.Plo /bin/sh ../libtool --tag=CXX --mode=link g++ -maix64 -g -O2 -frounding-math -fexceptions -W -Wall -version-info 8:0:1 -o libppl.la -rpath /contrib/ppl-0.10.2-gcc/lib Box.lo checked.lo Checked_Number.lo Float.lo fpu-ia32.lo Constraint.lo Constraint_System.lo Congruence.lo Congruence_System.lo Generator_System.lo Grid_Generator_System.lo Generator.lo Grid_Generator.lo Init.lo Coefficient.lo Linear_Expression.lo Linear_System.lo Matrix.lo Scalar_Products.lo MIP_Problem.lo Poly_Con_Relation.lo Poly_Gen_Relation.lo BHRZ03_Certificate.lo H79_Certificate.lo Grid_Certificate.lo Polyhedron_nonpublic.lo Polyhedron_public.lo Polyhedron_chdims.lo Polyhedron_widenings.lo C_Polyhedron.lo NNC_Polyhedron.lo Grid_nonpublic.lo Grid_public.lo Grid_chdims.lo Grid_widenings.lo BD_Shape.lo Octagonal_Shape.lo Pointset_Powerset.lo Row.lo Linear_Row.lo Bit_Matrix.lo Bit_Row.lo Ph_Status.lo Grid_Status.lo Variable.lo Variables_Set.lo conversion.lo minimize.lo simplify.lo Grid_conversion.lo Grid_simplify.lo stdiobuf.lo c_streambuf.lo globals.lo mp_std_bits.lo version.lo wrap.lo -lm -L/ptmp/ddvento/install/milepost/install-gmp/lib -lgmpxx -L/ptmp/jeph/gcc_build/powerpc-ibm-aix5.3.0.0/ppc64/libstdc++-v3/src -L/ptmp/jeph/gcc_build/powerpc-ibm-aix5.3.0.0/ppc64/libstdc++-v3/src/.libs -L/ptmp/jeph/gcc_build/./gcc/ppc64 -L/usr/local/lib -L/ptmp/ddvento/install/milepost/install-gmp/lib -lgmp libtool: link: /usr/bin/nm -B -BCpg .libs/Box.o .libs/checked.o .libs/Checked_Number.o .libs/Float.o .libs/fpu-ia32.o .libs/Constraint.o .libs/Constraint_System.o .libs/Congruence.o .libs/Congruence_System.o .libs/Generator_System.o .libs/Grid_Generator_System.o .libs/Generator.o .libs/Grid_Generator.o .libs/Init.o .libs/Coefficient.o .libs/Linear_Expression.o .libs/Linear_System.o .libs/Matrix.o .libs/Scalar_Products.o .libs/MIP_Problem.o .libs/Poly_Con_Relation.o .libs/Poly_Gen_Relation.o .libs/BHRZ03_Certificate.o .libs/H79_Certificate.o .libs/Grid_Certificate.o .libs/Polyhedron_nonpublic.o .libs/Polyhedron_public.o .libs/Polyhedron_chdims.o .libs/Polyhedron_widenings.o .libs/C_Polyhedron.o .libs/NNC_Polyhedron.o .libs/Grid_nonpublic.o .libs/Grid_public.o .libs/Grid_chdims.o .libs/Grid_widenings.o .libs/BD_Shape.o .libs/Octagonal_Shape.o .libs/Pointset_Powerset.o .libs/Row.o .libs/Linear_Row.o .libs/Bit_Matrix.o .libs/Bit_Row.o .libs/Ph_Status.o .libs/Grid_Status.o .libs/Variable.o .libs/Variables_Set.o .libs/conversion.o .libs/minimize.o .libs/simplify.o .libs/Grid_conversion.o .libs/Grid_simplify.o .libs/stdiobuf.o .libs/c_streambuf.o .libs/globals.o .libs/mp_std_bits.o .libs/version.o .libs/wrap.o | awk '{ if ((($ 2 == "T") || ($ 2 == "D") || ($ 2 == "B")) && (substr($ 3,1,1) != ".")) { print $ 3 } }' | sort -u > .libs/libppl.exp libtool: link: g++ -maix64 -shared -o .libs/libppl.so.7 .libs/Box.o .libs/checked.o .libs/Checked_Number.o .libs/Float.o .libs/fpu-ia32.o .libs/Constraint.o .libs/Constraint_System.o .libs/Congruence.o .libs/Congruence_System.o .libs/Generator_System.o .libs/Grid_Generator_System.o .libs/Generator.o .libs/Grid_Generator.o .libs/Init.o .libs/Coefficient.o .libs/Linear_Expression.o .libs/Linear_System.o .libs/Matrix.o .libs/Scalar_Products.o .libs/MIP_Problem.o .libs/Poly_Con_Relation.o .libs/Poly_Gen_Relation.o .libs/BHRZ03_Certificate.o .libs/H79_Certificate.o .libs/Grid_Certificate.o .libs/Polyhedron_nonpublic.o .libs/Polyhedron_public.o .libs/Polyhedron_chdims.o .libs/Polyhedron_widenings.o .libs/C_Polyhedron.o .libs/NNC_Polyhedron.o .libs/Grid_nonpublic.o .libs/Grid_public.o .libs/Grid_chdims.o .libs/Grid_widenings.o .libs/BD_Shape.o .libs/Octagonal_Shape.o .libs/Pointset_Powerset.o .libs/Row.o .libs/Linear_Row.o .libs/Bit_Matrix.o .libs/Bit_Row.o .libs/Ph_Status.o .libs/Grid_Status.o .libs/Variable.o .libs/Variables_Set.o .libs/conversion.o .libs/minimize.o .libs/simplify.o .libs/Grid_conversion.o .libs/Grid_simplify.o .libs/stdiobuf.o .libs/c_streambuf.o .libs/globals.o .libs/mp_std_bits.o .libs/version.o .libs/wrap.o -Wl,-blibpath:/ptmp/ddvento/install/milepost/install-gmp/lib:/usr/local/lib/ppc64:/ptmp/jeph/gcc_build/powerpc-ibm-aix5.3.0.0/ppc64/libstdc++-v3/src/.libs:/usr/local/lib/gcc/powerpc-ibm-aix5.3.0.0/4.1.1/ppc64:/usr/local/lib/gcc/powerpc-ibm-aix5.3.0.0/4.1.1/../../../ppc64:/usr/lib:/lib -L/ptmp/jeph/gcc_build/powerpc-ibm-aix5.3.0.0/ppc64/libstdc++-v3/src/.libs -L/ptmp/ddvento/install/milepost/install-gmp/lib -lgmpxx -L/usr/local/lib/ppc64 -L/ptmp/jeph/gcc_build/powerpc-ibm-aix5.3.0.0/ppc64/libstdc++-v3/src -L/ptmp/jeph/gcc_build/./gcc/ppc64 -L/usr/local/lib -lgmp -L/usr/local/lib/gcc/powerpc-ibm-aix5.3.0.0/4.1.1/ppc64 -L/usr/local/lib/gcc/powerpc-ibm-aix5.3.0.0/4.1.1/../../../ppc64 -lstdc++ -lm -lc -lgcc_s -Wl,-bnoentry -maix64 -Wl,-bE:.libs/libppl.exp -Wl,-berok libtool: link: ar cru .libs/libppl.a .libs/libppl.so.7 libtool: link: ( cd ".libs" && rm -f "libppl.la" && ln -s "../libppl.la" "libppl.la" ) g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT BUGS.o -MD -MP -MF .deps/BUGS.Tpo -c -o BUGS.o BUGS.cc mv -f .deps/BUGS.Tpo .deps/BUGS.Po g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT COPYING.o -MD -MP -MF .deps/COPYING.Tpo -c -o COPYING.o COPYING.cc mv -f .deps/COPYING.Tpo .deps/COPYING.Po g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT CREDITS.o -MD -MP -MF .deps/CREDITS.Tpo -c -o CREDITS.o CREDITS.cc mv -f .deps/CREDITS.Tpo .deps/CREDITS.Po g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -I.. -I../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT ppl-config.o -MD -MP -MF .deps/ppl-config.Tpo -c -o ppl-config.o ppl-config.cc In file included from ppl-config.cc:24: ppl.hh:76401:9: warning: undefining "__STDC_LIMIT_MACROS" mv -f .deps/ppl-config.Tpo .deps/ppl-config.Po /bin/sh ../libtool --tag=CXX --mode=link g++ -maix64 -g -O2 -frounding-math -fexceptions -W -Wall -o ppl-config BUGS.o COPYING.o CREDITS.o ppl-config.o libppl.la libtool: link: g++ -maix64 -g -O2 -frounding-math -fexceptions -W -Wall -o .libs/ppl-config BUGS.o COPYING.o CREDITS.o ppl-config.o -L/ptmp/jeph/gcc_build/powerpc-ibm-aix5.3.0.0/ppc64/libstdc++-v3/src/.libs -L./.libs -lppl -L/ptmp/ddvento/install/milepost/install-gmp/lib -L/ptmp/jeph/gcc_build/powerpc-ibm-aix5.3.0.0/ppc64/libstdc++-v3/src -L/ptmp/jeph/gcc_build/./gcc/ppc64 -L/usr/local/lib -lgmpxx -L/usr/local/lib/ppc64 -lgmp -lstdc++ -lm -lc -lgcc_s -Wl,-blibpath:/contrib/ppl-0.10.2-gcc/lib:/ptmp/ddvento/install/milepost/install-gmp/lib:/usr/local/lib/ppc64:/usr/local/lib/gcc/powerpc-ibm-aix5.3.0.0/4.1.1/ppc64:/usr/local/lib/gcc/powerpc-ibm-aix5.3.0.0/4.1.1/../../../ppc64:/usr/lib:/lib ld: 0711-224 WARNING: Duplicate symbol: .__divti3 ld: 0711-224 WARNING: Duplicate symbol: .__modti3 ld: 0711-224 WARNING: Duplicate symbol: .__udivti3 ld: 0711-224 WARNING: Duplicate symbol: .__umodti3 ld: 0711-224 WARNING: Duplicate symbol: .__udivmodti4 ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information. gmake[3]: Leaving directory `/ptmp/ddvento/install/ppl-0.10.2/src' gmake[2]: Leaving directory `/ptmp/ddvento/install/ppl-0.10.2/src' Making all in Watchdog gmake[2]: Entering directory `/ptmp/ddvento/install/ppl-0.10.2/Watchdog' gmake all-recursive gmake[3]: Entering directory `/ptmp/ddvento/install/ppl-0.10.2/Watchdog' Making all in . gmake[4]: Entering directory `/ptmp/ddvento/install/ppl-0.10.2/Watchdog' /usr/bin/sed -f ./pwl-config.sed config.h >pwl-config.h gmake[4]: Leaving directory `/ptmp/ddvento/install/ppl-0.10.2/Watchdog' Making all in m4 gmake[4]: Entering directory `/ptmp/ddvento/install/ppl-0.10.2/Watchdog/m4' gmake[4]: Nothing to be done for `all'. gmake[4]: Leaving directory `/ptmp/ddvento/install/ppl-0.10.2/Watchdog/m4' Making all in utils gmake[4]: Entering directory `/ptmp/ddvento/install/ppl-0.10.2/Watchdog/utils' /usr/bin/sed -e 's,[@]PERL[@],/usr/bin/perl,g' -e 's,[@]generated_automatically[@],Generated automatically: do not modify; modify the .in file instead.,g' < ./build_header.in > build_header chmod +x build_header gmake[4]: Leaving directory `/ptmp/ddvento/install/ppl-0.10.2/Watchdog/utils' Making all in src gmake[4]: Entering directory `/ptmp/ddvento/install/ppl-0.10.2/Watchdog/src' rm -f pwl_include_files.hh for file in Doubly_Linked_Object.types.hh EList.types.hh EList_Iterator.types.hh Handler.types.hh Pending_Element.types.hh Pending_List.types.hh Time.types.hh Watchdog.types.hh Handler.defs.hh Handler.inlines.hh Time.defs.hh Time.inlines.hh Doubly_Linked_Object.defs.hh Doubly_Linked_Object.inlines.hh EList_Iterator.defs.hh EList_Iterator.inlines.hh EList.defs.hh EList.inlines.hh Pending_Element.defs.hh Pending_Element.inlines.hh Pending_List.defs.hh Pending_List.inlines.hh Watchdog.defs.hh Watchdog.inlines.hh; \ do \ printf "#include "%s"\n" $file >>pwl_include_files.hh; \ done ../utils/build_header \ -I .. -I ../src \ ../src/pwl_header.hh >pwl.hh gmake all-am gmake[5]: Entering directory `/ptmp/ddvento/install/ppl-0.10.2/Watchdog/src' /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -fexceptions -g -O2 -fexceptions -W -Wall -MT Pending_Element.lo -MD -MP -MF .deps/Pending_Element.Tpo -c -o Pending_Element.lo Pending_Element.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -fexceptions -g -O2 -fexceptions -W -Wall -MT Pending_Element.lo -MD -MP -MF .deps/Pending_Element.Tpo -c Pending_Element.cc -DPIC -o .libs/Pending_Element.o mv -f .deps/Pending_Element.Tpo .deps/Pending_Element.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -fexceptions -g -O2 -fexceptions -W -Wall -MT Pending_List.lo -MD -MP -MF .deps/Pending_List.Tpo -c -o Pending_List.lo Pending_List.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -fexceptions -g -O2 -fexceptions -W -Wall -MT Pending_List.lo -MD -MP -MF .deps/Pending_List.Tpo -c Pending_List.cc -DPIC -o .libs/Pending_List.o mv -f .deps/Pending_List.Tpo .deps/Pending_List.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -fexceptions -g -O2 -fexceptions -W -Wall -MT Time.lo -MD -MP -MF .deps/Time.Tpo -c -o Time.lo Time.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -fexceptions -g -O2 -fexceptions -W -Wall -MT Time.lo -MD -MP -MF .deps/Time.Tpo -c Time.cc -DPIC -o .libs/Time.o mv -f .deps/Time.Tpo .deps/Time.Plo /bin/sh ../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -fexceptions -g -O2 -fexceptions -W -Wall -MT Watchdog.lo -MD -MP -MF .deps/Watchdog.Tpo -c -o Watchdog.lo Watchdog.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I.. -fexceptions -g -O2 -fexceptions -W -Wall -MT Watchdog.lo -MD -MP -MF .deps/Watchdog.Tpo -c Watchdog.cc -DPIC -o .libs/Watchdog.o mv -f .deps/Watchdog.Tpo .deps/Watchdog.Plo /bin/sh ../libtool --tag=CXX --mode=link g++ -maix64 -g -O2 -fexceptions -W -Wall -version-info 4:0:0 -o libpwl.la -rpath /contrib/ppl-0.10.2-gcc/lib Pending_Element.lo Pending_List.lo Time.lo Watchdog.lo libtool: link: /usr/bin/nm -B -BCpg .libs/Pending_Element.o .libs/Pending_List.o .libs/Time.o .libs/Watchdog.o | awk '{ if ((($ 2 == "T") || ($ 2 == "D") || ($ 2 == "B")) && (substr($ 3,1,1) != ".")) { print $ 3 } }' | sort -u > .libs/libpwl.exp libtool: link: g++ -maix64 -shared -o .libs/libpwl.so.4 .libs/Pending_Element.o .libs/Pending_List.o .libs/Time.o .libs/Watchdog.o -Wl,-blibpath:/usr/local/lib/ppc64:/usr/local/lib/gcc/powerpc-ibm-aix5.3.0.0/4.1.1/ppc64:/usr/local/lib/gcc/powerpc-ibm-aix5.3.0.0/4.1.1/../../../ppc64:/usr/lib:/lib -L/usr/local/lib/gcc/powerpc-ibm-aix5.3.0.0/4.1.1/ppc64 -L/usr/local/lib/gcc/powerpc-ibm-aix5.3.0.0/4.1.1/../../../ppc64 -L/usr/local/lib/ppc64 -lstdc++ -L/ptmp/jeph/gcc_build/powerpc-ibm-aix5.3.0.0/ppc64/libstdc++-v3/src -L/ptmp/jeph/gcc_build/powerpc-ibm-aix5.3.0.0/ppc64/libstdc++-v3/src/.libs -L/ptmp/jeph/gcc_build/./gcc/ppc64 -L/usr/local/lib -lm -lc -lgcc_s -Wl,-bnoentry -maix64 -Wl,-bE:.libs/libpwl.exp -Wl,-berok libtool: link: ar cru .libs/libpwl.a .libs/libpwl.so.4 libtool: link: ( cd ".libs" && rm -f "libpwl.la" && ln -s "../libpwl.la" "libpwl.la" ) gmake[5]: Leaving directory `/ptmp/ddvento/install/ppl-0.10.2/Watchdog/src' gmake[4]: Leaving directory `/ptmp/ddvento/install/ppl-0.10.2/Watchdog/src' Making all in tests gmake[4]: Entering directory `/ptmp/ddvento/install/ppl-0.10.2/Watchdog/tests' gmake[4]: Nothing to be done for `all'. gmake[4]: Leaving directory `/ptmp/ddvento/install/ppl-0.10.2/Watchdog/tests' Making all in doc gmake[4]: Entering directory `/ptmp/ddvento/install/ppl-0.10.2/Watchdog/doc' gmake[4]: Nothing to be done for `all'. gmake[4]: Leaving directory `/ptmp/ddvento/install/ppl-0.10.2/Watchdog/doc' gmake[3]: Leaving directory `/ptmp/ddvento/install/ppl-0.10.2/Watchdog' gmake[2]: Leaving directory `/ptmp/ddvento/install/ppl-0.10.2/Watchdog' Making all in tests gmake[2]: Entering directory `/ptmp/ddvento/install/ppl-0.10.2/tests' Making all in . gmake[3]: Entering directory `/ptmp/ddvento/install/ppl-0.10.2/tests' gmake[3]: Nothing to be done for `all-am'. gmake[3]: Leaving directory `/ptmp/ddvento/install/ppl-0.10.2/tests' Making all in Powerset gmake[3]: Entering directory `/ptmp/ddvento/install/ppl-0.10.2/tests/Powerset' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/ptmp/ddvento/install/ppl-0.10.2/tests/Powerset' Making all in Partially_Reduced_Product gmake[3]: Entering directory `/ptmp/ddvento/install/ppl-0.10.2/tests/Partially_Reduced_Product' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/ptmp/ddvento/install/ppl-0.10.2/tests/Partially_Reduced_Product' Making all in Box gmake[3]: Entering directory `/ptmp/ddvento/install/ppl-0.10.2/tests/Box' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/ptmp/ddvento/install/ppl-0.10.2/tests/Box' Making all in MIP_Problem gmake[3]: Entering directory `/ptmp/ddvento/install/ppl-0.10.2/tests/MIP_Problem' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/ptmp/ddvento/install/ppl-0.10.2/tests/MIP_Problem' Making all in Octagonal_Shape gmake[3]: Entering directory `/ptmp/ddvento/install/ppl-0.10.2/tests/Octagonal_Shape' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/ptmp/ddvento/install/ppl-0.10.2/tests/Octagonal_Shape' Making all in BD_Shape gmake[3]: Entering directory `/ptmp/ddvento/install/ppl-0.10.2/tests/BD_Shape' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/ptmp/ddvento/install/ppl-0.10.2/tests/BD_Shape' Making all in Polyhedron gmake[3]: Entering directory `/ptmp/ddvento/install/ppl-0.10.2/tests/Polyhedron' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/ptmp/ddvento/install/ppl-0.10.2/tests/Polyhedron' Making all in Grid gmake[3]: Entering directory `/ptmp/ddvento/install/ppl-0.10.2/tests/Grid' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/ptmp/ddvento/install/ppl-0.10.2/tests/Grid' gmake[2]: Leaving directory `/ptmp/ddvento/install/ppl-0.10.2/tests' Making all in interfaces gmake[2]: Entering directory `/ptmp/ddvento/install/ppl-0.10.2/interfaces' echo "m4_define(`m4_interface_classes_names', `Polyhedron@Grid@Rational_Box@BD_Shape_mpz_class@BD_Shape_mpq_class@Octagonal_Shape_mpz_class@Octagonal_Shape_mpq_class@Constraints_Product_C_Polyhedron_Grid@Pointset_Powerset_C_Polyhedron@Pointset_Powerset_NNC_Polyhedron')" > ppl_interface_instantiations.m4 echo "m4_define(`m4_cplusplus_classes_names', `Polyhedron@Grid@Rational_Box@BD_Shape<mpz_class>@BD_Shape<mpq_class>@Octagonal_Shape<mpz_class>@Octagonal_Shape<mpq_class>@Constraints_Product<C_Polyhedron,Grid>@Pointset_Powerset<C_Polyhedron>@Pointset_Powerset<NNC_Polyhedron>')" >> ppl_interface_instantiations.m4 gmake all-recursive gmake[3]: Entering directory `/ptmp/ddvento/install/ppl-0.10.2/interfaces' Making all in . gmake[4]: Entering directory `/ptmp/ddvento/install/ppl-0.10.2/interfaces' gmake[4]: Nothing to be done for `all-am'. gmake[4]: Leaving directory `/ptmp/ddvento/install/ppl-0.10.2/interfaces' Making all in C gmake[4]: Entering directory `/ptmp/ddvento/install/ppl-0.10.2/interfaces/C' /usr/local/bin//m4 --prefix-builtin -I.. -I. -I./.. \ ./ppl_interface_generator_c_h.m4 > ppl_c_domains.h ../../utils/build_header \ -I ../../interfaces/C -I ../../src \ ../../interfaces/C/ppl_c_header.h >ppl_c.h /usr/local/bin//m4 --prefix-builtin -I.. -I. -I./.. \ ./ppl_interface_generator_c_hh_files.m4 \ > ppl_c_hh_blob ../../utils/cm_cleaner.sh < ppl_c_hh_blob ../../utils/cm_splitter.sh < ppl_c_hh_blob rm -f ppl_c_hh_blob /usr/local/bin//m4 --prefix-builtin -I.. -I. -I./.. \ ./ppl_interface_generator_c_cc_files.m4 \ > ppl_c_cc_blob ../../utils/cm_cleaner.sh < ppl_c_cc_blob ../../utils/cm_splitter.sh < ppl_c_cc_blob rm -f ppl_c_cc_blob echo timestamp >ppl_c_implementation_domains.cc.stamp gmake all-recursive gmake[5]: Entering directory `/ptmp/ddvento/install/ppl-0.10.2/interfaces/C' Making all in . gmake[6]: Entering directory `/ptmp/ddvento/install/ppl-0.10.2/interfaces/C' /bin/sh ../../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I../.. -I../../interfaces -I../../interfaces/C -I../../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT ppl_c_implementation_common.lo -MD -MP -MF .deps/ppl_c_implementation_common.Tpo -c -o ppl_c_implementation_common.lo ppl_c_implementation_common.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I../.. -I../../interfaces -I../../interfaces/C -I../../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT ppl_c_implementation_common.lo -MD -MP -MF .deps/ppl_c_implementation_common.Tpo -c ppl_c_implementation_common.cc -DPIC -o .libs/ppl_c_implementation_common.o In file included from ppl_c_implementation_common.defs.hh:27, from ppl_c_implementation_common.cc:25: ../../src/ppl.hh:76401:9: warning: undefining "__STDC_LIMIT_MACROS" mv -f .deps/ppl_c_implementation_common.Tpo .deps/ppl_c_implementation_common.Plo /bin/sh ../../libtool --tag=CXX --mode=compile g++ -maix64 -DHAVE_CONFIG_H -I. -I../.. -I../../interfaces -I../../interfaces/C -I../../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT ppl_c_Polyhedron.lo -MD -MP -MF .deps/ppl_c_Polyhedron.Tpo -c -o ppl_c_Polyhedron.lo ppl_c_Polyhedron.cc libtool: compile: g++ -maix64 -DHAVE_CONFIG_H -I. -I../.. -I../../interfaces -I../../interfaces/C -I../../src -fexceptions -I/ptmp/ddvento/install/milepost/install-gmp/include -g -O2 -frounding-math -fexceptions -W -Wall -MT ppl_c_Polyhedron.lo -MD -MP -MF .deps/ppl_c_Polyhedron.Tpo -c ppl_c_Polyhedron.cc -DPIC -o .libs/ppl_c_Polyhedron.o In file included from ppl_c_implementation_common.defs.hh:27, from ppl_c_Polyhedron.cc:23: ../../src/ppl.hh:76401:9: warning: undefining "__STDC_LIMIT_MACROS" ../../src/ppl.hh: In member function 'typename Parma_Polyhedra_Library::OR_Matrix<T>::any_row_iterator<U>& Parma_Polyhedra_Library::OR_Matrix<T>::any_row_iterator<U>::operator++() [with U = const Parma_Polyhedra_Library::Checked_Number<__gmp_expr<__mpz_struct [1], __mpz_struct [1]>, Parma_Polyhedra_Library::WRD_Extended_Number_Policy>, T = Parma_Polyhedra_Library::Checked_Number<__gmp_expr<__mpz_struct [1], __mpz_struct [1]>, Parma_Polyhedra_Library::WRD_Extended_Number_Policy>]': ../../src/ppl.hh:56853: instantiated from 'Parma_Polyhedra_Library::Constraint_System Parma_Polyhedra_Library::Octagonal_Shape<T>::constraints() const [with T = __gmp_expr<__mpz_struct [1], __mpz_struct [1]>]' ../../src/ppl.hh:29716: instantiated from 'Parma_Polyhedra_Library::C_Polyhedron::C_Polyhedron(const Parma_Polyhedra_Library::Octagonal_Shape<U>&, Parma_Polyhedra_Library::Complexity_Class) [with U = __gmp_expr<__mpz_struct [1], __mpz_struct [1]>]' ppl_c_Polyhedron.cc:203: instantiated from here ../../src/ppl.hh:46573: error: 'const Parma_Polyhedra_Library::Checked_Number<__gmp_expr<__mpz_struct [1], __mpz_struct [1]>, Parma_Polyhedra_Library::WRD_Extended_Number_Policy>* Parma_Polyhedra_Library::OR_Matrix<Parma_Polyhedra_Library::Checked_Number<__gmp_expr<__mpz_struct [1], __mpz_struct [1]>, Parma_Polyhedra_Library::WRD_Extended_Number_Policy> >::Pseudo_Row<const Parma_Polyhedra_Library::Checked_Number<__gmp_expr<__mpz_struct [1], __mpz_struct [1]>, Parma_Polyhedra_Library::WRD_Extended_Number_Policy> >::first' is private ../../src/ppl.hh:47201: error: within this context ../../src/ppl.hh: In member function 'typename Parma_Polyhedra_Library::OR_Matrix<T>::any_row_iterator<U>& Parma_Polyhedra_Library::OR_Matrix<T>::any_row_iterator<U>::operator++() [with U = const Parma_Polyhedra_Library::Checked_Number<__gmp_expr<__mpq_struct [1], __mpq_struct [1]>, Parma_Polyhedra_Library::WRD_Extended_Number_Policy>, T = Parma_Polyhedra_Library::Checked_Number<__gmp_expr<__mpq_struct [1], __mpq_struct [1]>, Parma_Polyhedra_Library::WRD_Extended_Number_Policy>]': ../../src/ppl.hh:56853: instantiated from 'Parma_Polyhedra_Library::Constraint_System Parma_Polyhedra_Library::Octagonal_Shape<T>::constraints() const [with T = __gmp_expr<__mpq_struct [1], __mpq_struct [1]>]' ../../src/ppl.hh:29716: instantiated from 'Parma_Polyhedra_Library::C_Polyhedron::C_Polyhedron(const Parma_Polyhedra_Library::Octagonal_Shape<U>&, Parma_Polyhedra_Library::Complexity_Class) [with U = __gmp_expr<__mpq_struct [1], __mpq_struct [1]>]' ppl_c_Polyhedron.cc:225: instantiated from here ../../src/ppl.hh:46573: error: 'const Parma_Polyhedra_Library::Checked_Number<__gmp_expr<__mpq_struct [1], __mpq_struct [1]>, Parma_Polyhedra_Library::WRD_Extended_Number_Policy>* Parma_Polyhedra_Library::OR_Matrix<Parma_Polyhedra_Library::Checked_Number<__gmp_expr<__mpq_struct [1], __mpq_struct [1]>, Parma_Polyhedra_Library::WRD_Extended_Number_Policy> >::Pseudo_Row<const Parma_Polyhedra_Library::Checked_Number<__gmp_expr<__mpq_struct [1], __mpq_struct [1]>, Parma_Polyhedra_Library::WRD_Extended_Number_Policy> >::first' is private ../../src/ppl.hh:47201: error: within this context ../../src/ppl.hh: In constructor 'Parma_Polyhedra_Library::OR_Matrix<T>::any_row_iterator<U>::any_row_iterator(U&) [with U = const Parma_Polyhedra_Library::Checked_Number<__gmp_expr<__mpz_struct [1], __mpz_struct [1]>, Parma_Polyhedra_Library::WRD_Extended_Number_Policy>, T = Parma_Polyhedra_Library::Checked_Number<__gmp_expr<__mpz_struct [1], __mpz_struct [1]>, Parma_Polyhedra_Library::WRD_Extended_Number_Policy>]': ../../src/ppl.hh:47363: instantiated from 'typename Parma_Polyhedra_Library::OR_Matrix<T>::const_row_iterator Parma_Polyhedra_Library::OR_Matrix<T>::row_begin() const [with T = Parma_Polyhedra_Library::Checked_Number<__gmp_expr<__mpz_struct [1], __mpz_struct [1]>, Parma_Polyhedra_Library::WRD_Extended_Number_Policy>]' ../../src/ppl.hh:56842: instantiated from 'Parma_Polyhedra_Library::Constraint_System Parma_Polyhedra_Library::Octagonal_Shape<T>::constraints() const [with T = __gmp_expr<__mpz_struct [1], __mpz_struct [1]>]' ../../src/ppl.hh:29716: instantiated from 'Parma_Polyhedra_Library::C_Polyhedron::C_Polyhedron(const Parma_Polyhedra_Library::Octagonal_Shape<U>&, Parma_Polyhedra_Library::Complexity_Class) [with U = __gmp_expr<__mpz_struct [1], __mpz_struct [1]>]' ppl_c_Polyhedron.cc:203: instantiated from here ../../src/ppl.hh:47076: error: 'Parma_Polyhedra_Library::OR_Matrix<T>::Pseudo_Row<U>::Pseudo_Row(U&) [with U = const Parma_Polyhedra_Library::Checked_Number<__gmp_expr<__mpz_struct [1], __mpz_struct [1]>, Parma_Polyhedra_Library::WRD_Extended_Number_Policy>, T = Parma_Polyhedra_Library::Checked_Number<__gmp_expr<__mpz_struct [1], __mpz_struct [1]>, Parma_Polyhedra_Library::WRD_Extended_Number_Policy>]' is private ../../src/ppl.hh:47148: error: within this context ../../src/ppl.hh: In constructor 'Parma_Polyhedra_Library::OR_Matrix<T>::any_row_iterator<U>::any_row_iterator(U&) [with U = const Parma_Polyhedra_Library::Checked_Number<__gmp_expr<__mpq_struct [1], __mpq_struct [1]>, Parma_Polyhedra_Library::WRD_Extended_Number_Policy>, T = Parma_Polyhedra_Library::Checked_Number<__gmp_expr<__mpq_struct [1], __mpq_struct [1]>, Parma_Polyhedra_Library::WRD_Extended_Number_Policy>]': ../../src/ppl.hh:47363: instantiated from 'typename Parma_Polyhedra_Library::OR_Matrix<T>::const_row_iterator Parma_Polyhedra_Library::OR_Matrix<T>::row_begin() const [with T = Parma_Polyhedra_Library::Checked_Number<__gmp_expr<__mpq_struct [1], __mpq_struct [1]>, Parma_Polyhedra_Library::WRD_Extended_Number_Policy>]' ../../src/ppl.hh:56842: instantiated from 'Parma_Polyhedra_Library::Constraint_System Parma_Polyhedra_Library::Octagonal_Shape<T>::constraints() const [with T = __gmp_expr<__mpq_struct [1], __mpq_struct [1]>]' ../../src/ppl.hh:29716: instantiated from 'Parma_Polyhedra_Library::C_Polyhedron::C_Polyhedron(const Parma_Polyhedra_Library::Octagonal_Shape<U>&, Parma_Polyhedra_Library::Complexity_Class) [with U = __gmp_expr<__mpq_struct [1], __mpq_struct [1]>]' ppl_c_Polyhedron.cc:225: instantiated from here ../../src/ppl.hh:47076: error: 'Parma_Polyhedra_Library::OR_Matrix<T>::Pseudo_Row<U>::Pseudo_Row(U&) [with U = const Parma_Polyhedra_Library::Checked_Number<__gmp_expr<__mpq_struct [1], __mpq_struct [1]>, Parma_Polyhedra_Library::WRD_Extended_Number_Policy>, T = Parma_Polyhedra_Library::Checked_Number<__gmp_expr<__mpq_struct [1], __mpq_struct [1]>, Parma_Polyhedra_Library::WRD_Extended_Number_Policy>]' is private ../../src/ppl.hh:47148: error: within this context gmake[6]: *** [ppl_c_Polyhedron.lo] Error 1 gmake[6]: Leaving directory `/ptmp/ddvento/install/ppl-0.10.2/interfaces/C' gmake[5]: *** [all-recursive] Error 1 gmake[5]: Leaving directory `/ptmp/ddvento/install/ppl-0.10.2/interfaces/C' gmake[4]: *** [all] Error 2 gmake[4]: Leaving directory `/ptmp/ddvento/install/ppl-0.10.2/interfaces/C' gmake[3]: *** [all-recursive] Error 1 gmake[3]: Leaving directory `/ptmp/ddvento/install/ppl-0.10.2/interfaces' gmake[2]: *** [all] Error 2 gmake[2]: Leaving directory `/ptmp/ddvento/install/ppl-0.10.2/interfaces' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/ptmp/ddvento/install/ppl-0.10.2' gmake: *** [all] Error 2