mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 07:55:35 +00:00
Merge branch 'develop' of https://github.com/paboyle/Grid into develop
This commit is contained in:
commit
103e7ae2f0
@ -547,6 +547,7 @@ DX_INIT_DOXYGEN([$PACKAGE_NAME], [doxygen.cfg])
|
||||
############### Ouput
|
||||
cwd=`pwd -P`; cd ${srcdir}; abs_srcdir=`pwd -P`; cd ${cwd}
|
||||
GRID_CXX="$CXX"
|
||||
GRID_CXXLD="$CXXLD"
|
||||
GRID_CXXFLAGS="$AM_CXXFLAGS $CXXFLAGS"
|
||||
GRID_LDFLAGS="$AM_LDFLAGS $LDFLAGS"
|
||||
GRID_LIBS=$LIBS
|
||||
@ -561,6 +562,7 @@ AC_SUBST([AM_CFLAGS])
|
||||
AC_SUBST([AM_CXXFLAGS])
|
||||
AC_SUBST([AM_LDFLAGS])
|
||||
AC_SUBST([GRID_CXX])
|
||||
AC_SUBST([GRID_CXXLD])
|
||||
AC_SUBST([GRID_CXXFLAGS])
|
||||
AC_SUBST([GRID_LDFLAGS])
|
||||
AC_SUBST([GRID_LIBS])
|
||||
|
@ -19,6 +19,8 @@ Known values for OPTION are:
|
||||
--help display this help and exit
|
||||
--version output version information
|
||||
--git print git revision
|
||||
--cxx print c++ compiler (may include some flags and spaces)
|
||||
--cxxld print c++ linker (may include some flags and spaces)
|
||||
|
||||
EOF
|
||||
|
||||
@ -65,6 +67,10 @@ while test $# -gt 0; do
|
||||
echo @GRID_CXX@
|
||||
;;
|
||||
|
||||
--cxxld)
|
||||
echo @GRID_CXXLD@
|
||||
;;
|
||||
|
||||
--ldflags)
|
||||
echo @GRID_LDFLAGS@
|
||||
;;
|
||||
|
Loading…
Reference in New Issue
Block a user