Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/configure feedback edits #132

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions application-template/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,14 @@ fi
if test x"$CXX" == x ; then
CXX="`hadrons-config --cxx`"
elif test "$CXX" != "`hadrons-config --cxx`" ; then
AC_MSG_WARN([CXX differs from that reported by hadrons-config])
HADRONS_CXX="`hadrons-config --cxx`"
AC_MSG_WARN([CXX differs from that reported by hadrons-config: "$CXX" vs "$HADRONS_CXX"])
fi
if test x"$CXXLD" == x ; then
CXXLD="`hadrons-config --cxxld`"
elif test "$CXXLD" != "`hadrons-config --cxxld`" ; then
AC_MSG_WARN([CXXLD differs from that reported by hadrons-config])
HADRONS_CXXLD="`hadrons-config --cxxld`"
AC_MSG_WARN([CXXLD differs from that reported by hadrons-config: "$CXXLD" vs "$HADRONS_CXXLD"])
fi

# Checks for programs.
Expand Down
6 changes: 4 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,14 @@ fi
if test x"$CXX" == x ; then
CXX="`grid-config --cxx`"
elif test "$CXX" != "`grid-config --cxx`" ; then
AC_MSG_WARN([CXX differs from that reported by grid-config])
GRID_CXX="`grid-config --cxx`"
AC_MSG_WARN([CXX differs from that reported by grid-config: "$CXX" vs "$GRID_CXX"])
fi
if test x"$CXXLD" == x ; then
CXXLD="`grid-config --cxxld`"
elif test "$CXXLD" != "`grid-config --cxxld`" ; then
AC_MSG_WARN([CXXLD differs from that reported by grid-config])
GRID_CXXLD="`grid-config --cxxld`"
AC_MSG_WARN([CXXLD differs from that reported by grid-config: "$CXXLD" vs "$GRID_CXXLD"])
fi
CXXFLAGS="$CXXFLAGS `grid-config --cxxflags`"
CXXFLAGS="$AM_CXXFLAGS $CXXFLAGS"
Expand Down