Changeset 86b7aca in git
- Timestamp:
- Sep 13, 2011, 9:02:52 PM (11 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '2234726c50d679d6664181a5c72f75a6fd64a787')
- Children:
- 207e0b5049d84b076f3338c694dca299e831cbd4
- Parents:
- 3aea089efd1ccd3c6daa1855e3394ff462d8f1fb
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-09-13 21:02:52+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:12:46+01:00
- Files:
-
- 1 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
r3aea08 r86b7aca 42 42 libpolys/polys/templates/p_Procs.inc 43 43 libpolys/polys/m4/ 44 libpolys/coeffs/tt-r45 libpolys/coeffs/tt-g46 44 libpolys/polys/templates/.dirstamp 47 45 libpolys/libpolys-config -
Makefile.am
r3aea08 r86b7aca 1 ACLOCAL_AMFLAGS = -I m4 2 1 3 ALLOC=omalloc 2 3 4 4 5 if ENABLE_FACTORY -
kernel/Makefile.am
r3aea08 r86b7aca 7 7 #STATIC_LDFLAGS = -static 8 8 9 ACLOCAL_AMFLAGS = -I ${top_srcdir}/m4 9 10 10 11 -
libpolys/coeffs/Makefile.am
r3aea08 r86b7aca 1 lib_LIBRARIES=libcoeffs.a libcoeffs_g.a 2 CXXTEMPLFLAGS = --no-exceptions ## -fno-implicit-templates 1 lib_LIBRARIES = libcoeffs.a libcoeffs_g.a 2 CXXTEMPLFLAGS = --no-exceptions 3 ## -fno-implicit-templates 3 4 4 5 libcoeffs_a_CFLAGS = -O3 -fomit-frame-pointer ${PIPE} … … 47 48 AM_LDFLAGS = -L${top_builddir}/coeffs -L${top_builddir}/reporter -L${top_builddir}/resources -L${top_builddir}/misc ${USE_FACTORY} -L${top_builddir}/../omalloc 48 49 49 TESTS = tt-g tt-r 50 51 TESTS_ENVIRONMENT = SINGULARPATH='${top_srcdir}/../factory:${top_builddir}/../factory' 52 TESTS_ENVIRONMENT += SINGULAR_ROOT_DIR='$(top_builddir)' 53 54 55 TESTS = testg testr 50 56 check_PROGRAMS = $(TESTS) 51 57 52 t t_r_SOURCES = test.cc53 t t_g_SOURCES = test.cc58 testr_SOURCES = test.cc 59 testg_SOURCES = test.cc 54 60 55 t t_r_LDADD = -lcoeffs -lresources -lreporter -lmisc ${FACTORY_LIBS} -lomalloc ${NTL_LIBS} ${GMP_LIBS}56 t t_g_LDADD = -lcoeffs_g -lresources_g -lreporter_g -lmisc_g ${FACTORY_LIBS} -lomalloc_g ${NTL_LIBS} ${GMP_LIBS}61 testr_LDADD = -lcoeffs -lresources -lreporter -lmisc ${FACTORY_LIBS} -lomalloc ${NTL_LIBS} ${GMP_LIBS} 62 testg_LDADD = -lcoeffs_g -lresources_g -lreporter_g -lmisc_g ${FACTORY_LIBS} -lomalloc_g ${NTL_LIBS} ${GMP_LIBS} 57 63 58 tt_r: gftables59 tt_g: gftables60 64 61 tt_r_CFLAGS = -O3 -fomit-frame-pointer ${PIPE} 62 tt_g_CFLAGS = ${PIPE} 65 # testr: libcoeffs.a 66 # testg: libcoeffs_g.a 67 # gftables 63 68 64 tt_r_CXXFLAGS = -O3 -fomit-frame-pointer --no-rtti ${PIPE} ${CXXTEMPLFLAGS} -fimplicit-templates 65 tt_g_CXXFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long ${PIPE} ${CXXTEMPLFLAGS} -fimplicit-templates 69 testr_CFLAGS = -O3 -fomit-frame-pointer ${PIPE} 70 testg_CFLAGS = ${PIPE} 71 72 testr_CXXFLAGS = -O3 -fomit-frame-pointer --no-rtti ${PIPE} ${CXXTEMPLFLAGS} 73 # -fimplicit-templates 74 testg_CXXFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long ${PIPE} ${CXXTEMPLFLAGS} 75 # -fimplicit-templates 66 76 # -fdiagnostics-show-option 67 77 68 t t_r_CPPFLAGS = -DNDEBUG -DOM_NDEBUG -DHAVE_CONFIG_H69 t t_g_CPPFLAGS = -DHAVE_CONFIG_H78 testr_CPPFLAGS = -DNDEBUG -DOM_NDEBUG -DHAVE_CONFIG_H 79 testg_CPPFLAGS = -DHAVE_CONFIG_H 70 80 71 gftables: ${top_srcdir}/../factory/gftables72 ln -snf ${top_srcdir}/../factory/gftables ${builddir}81 #gftables: ${top_srcdir}/../factory/gftables 82 # ln -snf ${top_srcdir}/../factory/gftables ${builddir} -
libpolys/configure.ac
r3aea08 r86b7aca 83 83 AC_DEFINE([NOSTREAMIO],[1],[DISABLE_GMP_CPP]) 84 84 85 AC_SUBST(LIBPREFIX)86 87 85 AC_CONFIG_FILES([Makefile]) 88 86 AC_CONFIG_FILES([misc/Makefile])
Note: See TracChangeset
for help on using the changeset viewer.