Changeset 113ed4 in git


Ignore:
Timestamp:
Jan 6, 2012, 9:02:25 PM (11 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
Children:
0a3fa32bcd8b202183dc9d54b4f82cb6d069f087
Parents:
79d39d6c5087cc235a32018f8c1c6f64fcaa7758
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-01-06 21:02:25+01:00
git-committer:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-01-06 21:10:38+01:00
Message:
store/display the used compiler setup (CXX/CC/etc)

ADD: CXX/CXX/etc are written into config.h by configure
CHG: Singular/version.h is a static header (no static CXX/CC!)

TODO: add Version ID (git commit id?) to Singular/version.h
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Singular/version.h

    r79d39d6 r113ed4  
    11/* dummy version.h */
    2 #define feVersionId " 0815 "
    3 #define CC "gcc"
    4 #define CXX "g++"
     2#define feVersionId " spielwiese "
     3#include "config.h"
     4
  • configure.ac

    r79d39d6 r113ed4  
    8787fi
    8888
     89AC_DEFINE_UNQUOTED([CC],"$CC",[CC])
     90AC_DEFINE_UNQUOTED([CXX],"$CXX",[CXX])
     91AC_DEFINE_UNQUOTED([CFLAGS],"$CFLAGS",[CFLAGS])
     92AC_DEFINE_UNQUOTED([CXXFLAGS],"$CXXFLAGS",[CXXFLAGS])
     93AC_DEFINE_UNQUOTED([LDFLAGS],"$LDFLAGS",[LDFLAGS])
     94
    8995### the following is needed due to the use of om_sing_opt_show_mem in misc_ip.cc...
    9096#ac_configure_args="$ac_configure_args --with-external-config_h=../Singular/omSingularConfig.h"
Note: See TracChangeset for help on using the changeset viewer.