Changeset 584f6b0 in git
- Timestamp:
- Nov 18, 2011, 11:23:29 PM (12 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- 7c5f743b68553cca4e94e8bb13bce5ee53897a77
- Parents:
- 99fc2ebe6e27a966ceebe74c65bddedf98d82275
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-11-18 23:23:29+01:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-11-19 03:27:47+01:00
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile.am
r99fc2eb r584f6b0 17 17 # libfac doesn't use automake, just include it all in tarball 18 18 EXTRA_DIST = libfac autogen.sh 19 20 bin_SCRIPTS = libsingular-config -
configure.ac
r99fc2eb r584f6b0 94 94 AC_CONFIG_FILES([numeric/Makefile]) 95 95 AC_CONFIG_FILES([Singular/Makefile]) 96 AC_CONFIG_FILES([libsingular-config]) 96 97 97 98 AC_OUTPUT -
libpolys/libpolys-config.in
r99fc2eb r584f6b0 17 17 18 18 --prefix show libpolys installation prefix 19 --libsg print library linking information (with debug) 20 --cflagsg print pre-processor and compiler flags (with debug) 19 21 --libs print library linking information 20 22 --cflags print pre-processor and compiler flags … … 58 60 ;; 59 61 62 --cflagsg) 63 ${ECHOn} " -I${includedir} -I${includedir}/singular @FACTORY_CFLAGS@ @NTL_CFLAGS@ @GMP_CFLAGS@" 64 ;; 65 60 66 --cflags) 61 ${ECHOn} " -I${includedir} -I${includedir}/libpolys @FACTORY_CFLAGS@ @NTL_CFLAGS@ @GMP_CFLAGS@" 67 ${ECHOn} " -I${includedir} -I${includedir}/singular @FACTORY_CFLAGS@ @NTL_CFLAGS@ @GMP_CFLAGS@ -DNDEBUG -DOM_NDEBUG" 68 ;; 69 70 --libsg) 71 ${ECHOn} " -L${libdir} -L${libdir}/singular -lpolys_g -lcoeffs_g -lresources_g -lreporter_g -lmisc_g @FACTORY_LIBS@ -lomalloc_g @NTL_LIBS@ @USEPPROCSDYNAMICLD@ @GMP_LIBS@" 62 72 ;; 63 73 64 74 --libs) 65 ${ECHOn} " -L${libdir} - lpolys_g -lcoeffs_g -lresources_g -lreporter_g -lmisc_g @FACTORY_LIBS@ -lomalloc_g@NTL_LIBS@ @USEPPROCSDYNAMICLD@ @GMP_LIBS@"75 ${ECHOn} " -L${libdir} -L${libdir}/singular -lpolys -lcoeffs -lresources -lreporter -lmisc @FACTORY_LIBS@ -lomalloc @NTL_LIBS@ @USEPPROCSDYNAMICLD@ @GMP_LIBS@" 66 76 ;; 67 77 -
standalone.test/mk
r99fc2eb r584f6b0 10 10 NAME="test" 11 11 12 LIBPOLYSCFLAGS="`sh libpolys-config --cflags` -g -Wextra -Wall -Wno-long-long -O0 --no-exceptions" 13 LIBPOLYSLIBS=`sh libpolys-config --libs` 14 LIBPOLYSPREFIX=`sh libpolys-config --prefix` 12 P="." 13 # /mnt/DATA/GITHUB/w/GAP/libsing/spielwiese/TARGET/bin" 14 15 LIBPOLYSCFLAGS="`sh $P/libsingular-config --cflagsg` -g -Wextra -Wall -Wno-long-long -O0 --no-exceptions" 16 LIBPOLYSLIBS=`sh $P/libsingular-config --libsg` 17 LIBPOLYSPREFIX="`sh $P/libsingular-config --prefix`" 15 18 16 19 echo "Using libpolys from: '$LIBPOLYSPREFIX'"
Note: See TracChangeset
for help on using the changeset viewer.