Without this change _all_ builds will _always_ use -g only as C++ compiler flags. autoconf already uses `-O2 -g` as default if none is given to command line so this is useless.
Signed-off-by: Diego Elio Pettenò <[email protected]> --- configure.in | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/configure.in b/configure.in index 0bac0e2..7c15705 100644 --- a/configure.in +++ b/configure.in @@ -60,9 +60,6 @@ AC_PROG_CXX AC_CHECK_TOOL(AR, ar) AC_PROG_RANLIB -# Default flags. -CXXFLAGS="-g" - dnl Set test on c++ compiler. AC_LANG_CPLUSPLUS -- 1.7.8.6 _______________________________________________ ragel-users mailing list [email protected] http://www.complang.org/mailman/listinfo/ragel-users
