Changeset 94fe43 in git
- Timestamp:
- Jan 25, 2013, 10:09:01 PM (10 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 39e070d960bd0ab6d36b34b34c868cd1085371e5
- Parents:
- 5efd81570bd3d8921d3bf3272bb1214556bf665f
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2013-01-25 22:09:01+01:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2013-01-28 18:21:51+01:00
- Location:
- libpolys/misc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/misc/Makefile.am
r5efd81 r94fe43 1 CXXTEMPLFLAGS =-ftrapv 2 ## -fno-implicit-templates 1 CXXTEMPLFLAGS =-ftrapv -fno-implicit-templates 3 2 4 3 AM_CPPFLAGS = -I${top_srcdir} -I${top_srcdir}/.. -I${top_builddir} -I${top_builddir}/.. … … 13 12 libmiscdir = $(libdir)/singular 14 13 14 15 15 libmisc_la_CFLAGS = -O3 -fomit-frame-pointer ${PIPE} 16 16 libmisc_g_la_CFLAGS = ${PIPE} … … 23 23 libmisc_g_la_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H 24 24 25 SOURCES = intvec.cc int64vec.cc options.c 25 26 noinst_LTLIBRARIES = libintvec.la libintvec_g.la 27 28 libmisc_la_LIBADD = libintvec.la 29 libmisc_g_la_LIBADD = libintvec_g.la 30 31 32 SOURCES = int64vec.cc options.c 26 33 libmisc_la_SOURCES = $(SOURCES) 27 34 libmisc_g_la_SOURCES = $(SOURCES) … … 36 43 37 44 45 libintvec_la_SOURCES = intvec.cc 46 libintvec_g_la_SOURCES = ${libintvec_la_SOURCES} 38 47 39 48 49 libintvec_la_CXXFLAGS = -O3 -fomit-frame-pointer ${PIPE} -fwrapv -fno-implicit-templates 50 libintvec_g_la_CXXFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long ${PIPE} -fwrapv -fno-implicit-templates 51 52 libintvec_la_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H -DNDEBUG -DOM_NDEBUG 53 libintvec_g_la_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H 54 -
libpolys/misc/intvec.cc
r5efd81 r94fe43 8 8 #define INTVEC_CC 9 9 10 10 11 #include "config.h" 11 12 #include <misc/auxiliary.h> … … 15 16 #include <misc/options.h> 16 17 #include <omalloc/omalloc.h> 18 19 #pragma GCC push_options 20 #pragma GCC optimize ("wrapv") 17 21 18 22 /*0 implementation*/ … … 804 808 } 805 809 810 #pragma GCC pop_options 811 806 812 #endif
Note: See TracChangeset
for help on using the changeset viewer.