Changeset 584f6b0 in git


Ignore:
Timestamp:
Nov 18, 2011, 11:23:29 PM (12 years ago)
Author:
Oleksandr Motsak <motsak@…>
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
Message:
ADD/FIX: up-to-date {libsingular/libpolys}-config!
CHG: standalone.test/mk uses libsingular-config
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • Makefile.am

    r99fc2eb r584f6b0  
    1717# libfac doesn't use automake, just include it all in tarball
    1818EXTRA_DIST = libfac autogen.sh
     19
     20bin_SCRIPTS = libsingular-config
  • configure.ac

    r99fc2eb r584f6b0  
    9494AC_CONFIG_FILES([numeric/Makefile])
    9595AC_CONFIG_FILES([Singular/Makefile])
     96AC_CONFIG_FILES([libsingular-config])
    9697
    9798AC_OUTPUT
  • libpolys/libpolys-config.in

    r99fc2eb r584f6b0  
    1717
    1818  --prefix              show libpolys installation prefix
     19  --libsg               print library linking information (with debug)
     20  --cflagsg             print pre-processor and compiler flags (with debug)
    1921  --libs                print library linking information
    2022  --cflags              print pre-processor and compiler flags
     
    5860        ;;
    5961
     62    --cflagsg)
     63        ${ECHOn} " -I${includedir} -I${includedir}/singular @FACTORY_CFLAGS@ @NTL_CFLAGS@ @GMP_CFLAGS@"
     64        ;;
     65
    6066    --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@"
    6272        ;;
    6373
    6474    --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@"
    6676        ;;
    6777
  • standalone.test/mk

    r99fc2eb r584f6b0  
    1010NAME="test"
    1111
    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`
     12P="."
     13# /mnt/DATA/GITHUB/w/GAP/libsing/spielwiese/TARGET/bin"
     14
     15LIBPOLYSCFLAGS="`sh $P/libsingular-config --cflagsg` -g -Wextra -Wall -Wno-long-long  -O0 --no-exceptions"
     16LIBPOLYSLIBS=`sh $P/libsingular-config --libsg`
     17LIBPOLYSPREFIX="`sh $P/libsingular-config --prefix`"
    1518
    1619echo "Using libpolys from: '$LIBPOLYSPREFIX'"
Note: See TracChangeset for help on using the changeset viewer.