Changeset cab375 in git


Ignore:
Timestamp:
Jul 19, 2011, 11:13:10 AM (13 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', 'c5facdfddea2addfd91babd8b9019161dea4b695')
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
Message:
ADD: LIBPOLYS_CFLAGS for GMP and etc... includes
FIX: use coeffs/si_gmp.h for a moment
Location:
kernel
Files:
5 edited
1 moved

Legend:

Unmodified
Added
Removed
  • kernel/GMPrat.h

    r9d53d0 rcab375  
    1010#define  GMPRAT_H
    1111
    12 #include <kernel/si_gmp.h>
     12#include <coeffs/si_gmp.h>
    1313
    1414class Rational
  • kernel/makefile

    r9d53d0 rcab375  
    3535## compiler and linker options
    3636##
     37LIBPOLYS_CFLAGS = `sh ../libpolys/libpolys-config --cflags`
     38
    3739PIPE            = -pipe
    38 CFLAGS          = -O3 -w -fomit-frame-pointer ${PIPE}
    39 CXXFLAGS        = -O3 -w -fomit-frame-pointer --no-rtti ${PIPE}
     40CFLAGS          = -O3 -w -fomit-frame-pointer ${PIPE} ${LIBPOLYS_CFLAGS}
     41CXXFLAGS        = -O3 -w -fomit-frame-pointer --no-rtti ${PIPE} ${LIBPOLYS_CFLAGS}
    4042CXXTEMPLFLAGS   = -fno-implicit-templates --no-exceptions
    41 CPPFLAGS        = -I${srcdir} -I..  -I${includedir}
     43CPPFLAGS        = -I${srcdir} -I..  -I${includedir}   ${LIBPOLYS_CFLAGS}
    4244DEFS            = -DNDEBUG -DOM_NDEBUG
    4345LDFLAGS         = -L${srcdir}/lib
     
    217219CCM             = gcc -MM -MG -DGENERATE_DEPEND
    218220
    219 CFLAGSG         = -g ${PIPE}
    220 CXXFLAGSG       = -g ${PIPE}
     221CFLAGSG         = -g ${PIPE} ${LIBPOLYS_CFLAGS}
     222CXXFLAGSG       = -g ${PIPE} ${LIBPOLYS_CFLAGS}
    221223DEFSG           =
    222224
     
    255257CXXP            = ${CXX}
    256258
    257 CFLAGSP         = -g -pg -O ${PIPE}
    258 CXXFLAGSP       = -g -pg -O ${PIPE}
     259CFLAGSP         = -g -pg -O ${PIPE} ${LIBPOLYS_CFLAGS}
     260CXXFLAGSP       = -g -pg -O ${PIPE} ${LIBPOLYS_CFLAGS}
    259261DEFSP           =
    260262
  • kernel/misc.cc

    r9d53d0 rcab375  
    3939#endif
    4040
    41 #include <si_gmp.h>
     41#include <coeffs/si_gmp.h>
     42
    4243#ifdef HAVE_MPSR
    4344#include <MP_Config.h>
  • kernel/structs.h

    r9d53d0 rcab375  
    1313#include <misc/auxiliary.h>
    1414#ifdef HAVE_RINGS
    15 #include <kernel/si_gmp.h>
     15#include <coeffs/si_gmp.h>
    1616#endif
    1717
  • kernel/test.cc

    r9d53d0 rcab375  
    1313#include <coeffs/coeffs.h>
    1414
    15 // #include <coeffs/si_gmp.h>
     15#include <coeffs/si_gmp.h>
    1616
    1717#include <polys/clapconv.h>
     
    144144#include "semic.h"
    145145#include "shiftgb.h"
    146 #include "si_gmp.h"
     146// #include "si_gmp.h" // remove it...
    147147#include "spectrum.h"
    148148#include "splist.h"
Note: See TracChangeset for help on using the changeset viewer.