First I get this:
Code: Select all
swig -c++ -python -I../../plot/src -I../../math/src -I../../rclib/src/util -I../../rclib/src/conui -I../../rclib/src/io -I../../_gene\
ral -I../../clop/src -I../../clop/src/real -I../../clop/src/artificial -I../../clop/src/math -DPTHREADS -DGUI=nogui -Drestrict=__restr\
ict__ -DKBHIT_UNIX -DCLOCK_FTIME -MM ../swig/clop_swig.i >../swig/clop_swig_wrap.d
compiling with ccache g++: ../../plot/compgcc/bin/CDiscretizedLine.o
compiling with ccache g++: ../../plot/compgcc/bin/CPGF.o
compiling with ccache g++: ../../plot/compgcc/bin/CPlot.o
compiling with ccache g++: ../../plot/compgcc/bin/CSplineFit.o
compiling with ccache g++: ../../plot/compgcc/bin/CContour.o
compiling with ccache g++: ../../rclib/compgcc/bin/CTimeIO.o
compiling with ccache g++: ../../rclib/compgcc/bin/ReadLineToString.o
compiling with ccache g++: ../../rclib/compgcc/bin/chtime.o
compiling with ccache g++: ../../rclib/compgcc/bin/clktimer.o
compiling with ccache g++: ../../rclib/compgcc/bin/consolui.o
compiling with ccache g++: ../../rclib/compgcc/bin/justtext.o
compiling with ccache g++: ../../rclib/compgcc/bin/mykbhit.o
compiling with ccache g++: ../../rclib/compgcc/bin/mybeep.o
compiling with ccache g++: ../../rclib/compgcc/bin/readstr.o
../../rclib/src/util/readstr.cpp: In function âint ReadString(std::istream&, char*, int)â:
../../rclib/src/util/readstr.cpp:47:19: warning: conversion to âcharâ from âintâ may alter its value [-Wconversion]
compiling with ccache g++: ../../rclib/compgcc/bin/userflag.o
compiling with ccache g++: ../../rclib/compgcc/bin/version.o
compiling with ccache g++: ../../clop/compgcc/bin/C2SPSA.o
../../clop/src/C2SPSA.cpp: In member function âvirtual void C2SPSA::OnOutcome(int)â:
../../clop/src/C2SPSA.cpp:80:16: warning: unused variable âa_kâ [-Wunused-variable]
compiling with ccache g++: ../../clop/compgcc/bin/CArtificialExperiment.o
compiling with ccache g++: ../../clop/compgcc/bin/CArtificialProblem.o
compiling with ccache g++: ../../clop/compgcc/bin/CBAST.o
compiling with ccache g++: ../../clop/compgcc/bin/CCheckPointData.o
compiling with ccache g++: ../../clop/compgcc/bin/CCPLConsole.o
In file included from ../../clop/src/artificial/CCPLConsole.h:14:0,
from ../../clop/src/artificial/CCPLConsole.cpp:10:
../../rclib/src/util/userflag.h:27:9: error: âsize_tâ does not name a type
make: *** [../../clop/compgcc/bin/CCPLConsole.o] Error 1
-UUU:----F1 errors Bot L84 (Fundamental)-----------------------------------------------------------------------------------
#include <cstring>
to the userflag.h file.
Then I get:
Code: Select all
ccache g++ -Wall -O0 -fno-strict-aliasing -I/usr/include/python2.6 -I/usr/include/python2.5 -g -pthread -fpic -I../../plot/src -I../../math/src -I../../rclib/src/util -I../../rclib/src/conui -I../../rclib/src/io -I../../_general -I../../clop/src -I../../clop/src/real -I../../clop/src/artificial -I../../clop/src/math -DPTHREADS -DGUI=nogui -Drestrict=__restrict__ -DKBHIT_UNIX -DCLOCK_FTIME -c -o ../swig/clop_swig_wrap.o ../swig/clop_swig_wrap.cxx
../swig/clop_swig_wrap.cxx:149:20: fatal error: Python.h: No such file or directory
compilation terminated.
--Jon