Changeset cab375 in git
- Timestamp:
- Jul 19, 2011, 11:13:10 AM (12 years ago)
- Branches:
- (u'spielwiese', 'd1b01e9d51ade4b46b745d3bada5c5f3696be3a8')
- Children:
- ed47edfe6cd330b5befd43ea05889c3359a9d64a
- Parents:
- 9d53d0ba60a48685fd21921665282099d9253c1e
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-07-19 11:13:10+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:39:57+01:00
- Location:
- kernel
- Files:
-
- 5 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
kernel/GMPrat.h
r9d53d0 rcab375 10 10 #define GMPRAT_H 11 11 12 #include < kernel/si_gmp.h>12 #include <coeffs/si_gmp.h> 13 13 14 14 class Rational -
kernel/makefile
r9d53d0 rcab375 35 35 ## compiler and linker options 36 36 ## 37 LIBPOLYS_CFLAGS = `sh ../libpolys/libpolys-config --cflags` 38 37 39 PIPE = -pipe 38 CFLAGS = -O3 -w -fomit-frame-pointer ${PIPE} 39 CXXFLAGS = -O3 -w -fomit-frame-pointer --no-rtti ${PIPE} 40 CFLAGS = -O3 -w -fomit-frame-pointer ${PIPE} ${LIBPOLYS_CFLAGS} 41 CXXFLAGS = -O3 -w -fomit-frame-pointer --no-rtti ${PIPE} ${LIBPOLYS_CFLAGS} 40 42 CXXTEMPLFLAGS = -fno-implicit-templates --no-exceptions 41 CPPFLAGS = -I${srcdir} -I.. -I${includedir} 43 CPPFLAGS = -I${srcdir} -I.. -I${includedir} ${LIBPOLYS_CFLAGS} 42 44 DEFS = -DNDEBUG -DOM_NDEBUG 43 45 LDFLAGS = -L${srcdir}/lib … … 217 219 CCM = gcc -MM -MG -DGENERATE_DEPEND 218 220 219 CFLAGSG = -g ${PIPE} 220 CXXFLAGSG = -g ${PIPE} 221 CFLAGSG = -g ${PIPE} ${LIBPOLYS_CFLAGS} 222 CXXFLAGSG = -g ${PIPE} ${LIBPOLYS_CFLAGS} 221 223 DEFSG = 222 224 … … 255 257 CXXP = ${CXX} 256 258 257 CFLAGSP = -g -pg -O ${PIPE} 258 CXXFLAGSP = -g -pg -O ${PIPE} 259 CFLAGSP = -g -pg -O ${PIPE} ${LIBPOLYS_CFLAGS} 260 CXXFLAGSP = -g -pg -O ${PIPE} ${LIBPOLYS_CFLAGS} 259 261 DEFSP = 260 262 -
kernel/misc.cc
r9d53d0 rcab375 39 39 #endif 40 40 41 #include <si_gmp.h> 41 #include <coeffs/si_gmp.h> 42 42 43 #ifdef HAVE_MPSR 43 44 #include <MP_Config.h> -
kernel/structs.h
r9d53d0 rcab375 13 13 #include <misc/auxiliary.h> 14 14 #ifdef HAVE_RINGS 15 #include < kernel/si_gmp.h>15 #include <coeffs/si_gmp.h> 16 16 #endif 17 17 -
kernel/test.cc
r9d53d0 rcab375 13 13 #include <coeffs/coeffs.h> 14 14 15 //#include <coeffs/si_gmp.h>15 #include <coeffs/si_gmp.h> 16 16 17 17 #include <polys/clapconv.h> … … 144 144 #include "semic.h" 145 145 #include "shiftgb.h" 146 #include "si_gmp.h" 146 // #include "si_gmp.h" // remove it... 147 147 #include "spectrum.h" 148 148 #include "splist.h"
Note: See TracChangeset
for help on using the changeset viewer.