Changeset 53ca3d in git
- Timestamp:
- Mar 23, 2011, 5:45:45 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 1b49fffcc09b3cc35d86a2d919252c972d6515eb
- Parents:
- 0145cb4989c3ace04091d0ad6bbda0bb91971b14
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-03-23 17:45:45+01:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:04:12+01:00
- Location:
- libpolys/misc
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/misc/Makefile.am
r0145cb4 r53ca3d 1 1 lib_LIBRARIES=libmisc.a libmisc_g.a 2 2 3 AM_CFLAGS = -O3 -w -fomit-frame-pointer ${PIPE} 4 CXXTEMPLFLAGS = -fno-implicit-templates --no-exceptions 5 AM_CXXFLAGS = -O3 -w -fomit-frame-pointer --no-rtti ${PIPE} ${CXXTEMPLFLAGS} 6 INCLUDES = -I${top_srcdir}/.. -I${top_srcdir}/../.. -I${top_builddir}/.. 7 AM_CPPFLAGS = -DNDEBUG -DOM_NDEBUG -DHAVE_CONFIG_H 3 CXXTEMPLFLAGS = -fno-implicit-templates --no-exceptions 8 4 9 SOURCES = intvec.cc 5 libmisc_a_CFLAGS = -O3 -fomit-frame-pointer ${PIPE} 6 libmisc_g_a_CFLAGS = ${PIPE} 10 7 11 libmisc_a_SOURCES = $(SOURCES) 8 libmisc_a_CXXFLAGS = -O3 -fomit-frame-pointer --no-rtti ${PIPE} ${CXXTEMPLFLAGS} 9 libmisc_g_a_CXXFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long ${PIPE} ${CXXTEMPLFLAGS} 10 # -fdiagnostics-show-option 12 11 13 libmisc_a_includedir=$(includedir)/libpolys/misc 12 libmisc_a_CPPFLAGS = -DNDEBUG -DOM_NDEBUG -DHAVE_CONFIG_H 13 libmisc_g_a_CPPFLAGS = -DHAVE_CONFIG_H 14 14 15 libmisc_a_include_HEADERS = auxiliary.h mylimits.h options.h intvec.h 15 INCLUDES = -I${top_srcdir}/.. -I${top_srcdir}/../.. -I${top_builddir}/.. 16 16 17 SOURCES = intvec.cc 18 libmisc_a_SOURCES = $(SOURCES) 17 19 libmisc_g_a_SOURCES = $(SOURCES) 18 20 19 libmisc_g_a_CXXFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long 20 # -fdiagnostics-show-option 21 libmisc_a_includedir =$(includedir)/libpolys/misc 22 libmisc_g_a_includedir=$(includedir)/libpolys/misc 23 24 MISCHEADERS = auxiliary.h mylimits.h options.h intvec.h 25 libmisc_a_include_HEADERS = $(MISCHEADERS) 26 libmisc_g_a_include_HEADERS = $(MISCHEADERS) 27 28 29 -
libpolys/misc/auxiliary.h
r0145cb4 r53ca3d 18 18 #define MISC_AUXILIARY_H 19 19 20 #include "misc/config.h"21 22 20 // ----------------- which parts/extensions of Singular to build 23 21 #define HAVE_RINGS 22 #define HAVE_PLURAL 24 23 25 24 // no factory yet... … … 30 29 // ----------------- configure stuff 31 30 32 /* CPU type: i[3456]86: */ 31 /* 32 // CPU type: i[3456]86: 33 33 #undef SI_CPU_I386 34 / * CPU type: sparc: */34 // CPU type: sparc: 35 35 #undef SI_CPU_SPARC 36 / * CPU type: ppc: */36 // CPU type: ppc: 37 37 #undef SI_CPU_PPC 38 / * CPU type: IA64: */38 // CPU type: IA64: 39 39 #undef SI_CPU_IA64 40 / * CPU type: x86_64: */40 // CPU type: x86_64: 41 41 #undef SI_CPU_X86_64 42 43 /* Define sizeof(long) */ 42 // Define sizeof(long) 44 43 #define SIZEOF_LONG 4 44 */ 45 46 45 47 46 48 /* Define version as a string */ … … 49 51 /* Absolute pathname of root directory of Singular source */ 50 52 #define S_ROOT_DIR "" 51 52 53 53 54 // ----------------- end of configure stuff -
libpolys/misc/intvec.cc
r0145cb4 r53ca3d 8 8 #ifndef INTVEC_CC 9 9 #define INTVEC_CC 10 11 #include "config.h" 12 #include <misc/auxiliary.h> 13 10 14 // #include <resources/feFopen.h> 11 15 #include <misc/intvec.h>
Note: See TracChangeset
for help on using the changeset viewer.