1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-09 23:45:36 +00:00

grid-config: Expose CXXLD (for GPU build) and update help

This commit is contained in:
Michael Marshall 2020-04-22 18:42:30 +01:00
parent 0782b76ed4
commit 4701201b5f

View File

@ -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 and compiler flags
--cxxld print c++ linker and linker flags
EOF
@ -65,6 +67,10 @@ while test $# -gt 0; do
echo @GRID_CXX@
;;
--cxxld)
echo @CXXLD@
;;
--ldflags)
echo @GRID_LDFLAGS@
;;