Skip to content
Snippets Groups Projects
Commit 06ce895a authored by Claus-Justus Heine's avatar Claus-Justus Heine
Browse files

Set debugging CFLAGS a little bit more intelligently.

parent a4aaf812
No related branches found
No related tags found
No related merge requests found
...@@ -58,6 +58,13 @@ fi ...@@ -58,6 +58,13 @@ fi
# change the installation directory. This could surely be done more elegantly... # change the installation directory. This could surely be done more elegantly...
AC_PREFIX_DEFAULT([`pwd`]) AC_PREFIX_DEFAULT([`pwd`])
if test "$GCC" = yes; then
ALBERT_DEBUG_CFLAGS="-ggdb -fno-inline -fno-builtin"
else
ALBERT_DEBUG_CFLAGS="-g"
fi
AC_SUBST(ALBERT_DEBUG_CFLAGS)
# Checks for libraries. # Checks for libraries.
# Replace `main' with a function in -lm: # Replace `main' with a function in -lm:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment