Changeset c3d175 in git


Ignore:
Timestamp:
Jun 8, 2010, 10:31:13 PM (13 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0604212ebb110535022efecad887940825b97c3f')
Children:
2b957aaac9e8428774b24a75c7520073a5f4f90d
Parents:
01e7a1d2a92546f79319f8b6368955396525c869
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2010-06-08 22:31:13+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 11:55:02+01:00
Message:
Trying to link anything... Switch to the correct "assume".
Files:
1 added
8 edited

Legend:

Unmodified
Added
Removed
  • coeffs/Makefile.in

    r01e7a1d rc3d175  
    3232PIPE            = -pipe
    3333CFLAGS          = -O3 -w -fomit-frame-pointer ${PIPE}
    34 CXXFLAGS        = -O3 -w -fomit-frame-pointer --no-rtti ${PIPE}
     34CXXFLAGS        = -O3 -w -fomit-frame-pointer --no-rtti ${PIPE} -g
    3535CXXTEMPLFLAGS   = -fno-implicit-templates --no-exceptions
    36 CPPFLAGS        = -I${srcdir} -I${includedir} -I${srcdir}/../misc/ -I${srcdir}/../resource/
     36CPPFLAGS        = -I${srcdir} -I${includedir} -I${srcdir}/../misc/ -I${srcdir}/../resource/ -I${srcdir}/../output/ -L${srcdir}/../output/ -L${libdir} -lgmp
    3737DEFS            = -DNDEBUG -DOM_NDEBUG -Dix86_Linux -DHAVE_CONFIG_H
    3838
     
    7878
    7979clean: mostlyclean
    80         -rm -f *.bak *.d *.dd depend *.a *.so*
     80        -rm -f *.bak *.d *.dd depend *.a *.so* test
     81
    8182
    8283tags:   
     
    9091        ${INSTALL_DATA} libcoeffs.a ${libdir}/libcoeffs.a
    9192        $(INSTALL_DATA) coeffs.h $(includedir)/coeffs.h
     93
     94test: libcoeffs.a
     95        ${CXX} ${CXXFLAGS} ${CXXTEMPLFLAGS} ${CPPFLAGS} ${DEFS} test.cc -L. -I. -lcoeffs -o test -lomalloc -loutput
  • coeffs/config.h.in

    r01e7a1d rc3d175  
    1 #define assume(x) ((void) 0)
     1// #define assume(x) ((void) 0)
    22#define memcpy4 memcpy
     3
     4#define HAVE_ASSUME
     5
  • coeffs/gnumpc.cc

    r01e7a1d rc3d175  
    88* ngc == number gnu complex
    99*/
     10
     11#include "config.h"
    1012
    1113#include "coeffs.h"
  • coeffs/gnumpc.h

    r01e7a1d rc3d175  
    2121
    2222
    23 /* // Private interface should be hidden!!!
     23// Private interface should be hidden!!!
    2424     
    2525/// Note: MAY NOT WORK AS EXPECTED!
     
    5252BOOLEAN  ngcDBTest(number a, const char *f, const int l, const coeffs r);
    5353#endif
    54 */
    55 
    5654
    5755
     
    5957// number ngcMapQ(number from, const coeffs r, const coeffs aRing);
    6058#endif
    61 
    62 
    63 // local Variables: ***
    64 // folded-file: t ***
    65 // compile-command: "make installg" ***
    66 // End: ***
     59/* GMPCOMPLEX_H */
  • coeffs/longrat.cc

    r01e7a1d rc3d175  
    4545#include <string.h>
    4646#include <float.h>
     47#include "config.h"
    4748#include "coeffs.h"
    4849#include "output.h"
  • coeffs/longrat.h

    r01e7a1d rc3d175  
    99*/
    1010#include "coeffs.h"
    11 #include "config.h"
     11// #include "config.h"
    1212#include "si_gmp.h"
    1313#include <aux.h>
  • coeffs/longrat0.cc

    r01e7a1d rc3d175  
    1010#include <stdio.h>
    1111#include <string.h>
     12#include "config.h"
    1213#include "output.h"
    13 #include "config.h"
    1414#include "coeffs.h"
    1515#include "omalloc.h"
  • output/config.h.in

    r01e7a1d rc3d175  
    1212#undef HAVE_VSNPRINTF
    1313
     14#define HAVE_ASSUME
     15
    1416#endif
Note: See TracChangeset for help on using the changeset viewer.