aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Kosnik <bkoz@fillmore.constant.com>2000-12-20 08:39:55 +0000
committerBenjamin Kosnik <bkoz@gcc.gnu.org>2000-12-20 08:39:55 +0000
commit6abd2230b96c29ac7951bbfd1a6facd3df98b1bf (patch)
tree30f00f15cf284056d24d4c2ba03e3bfecf515769
parent713c16f8601f76998538ee6999b5cc33eabf7208 (diff)
downloadgcc-6abd2230b96c29ac7951bbfd1a6facd3df98b1bf.zip
gcc-6abd2230b96c29ac7951bbfd1a6facd3df98b1bf.tar.gz
gcc-6abd2230b96c29ac7951bbfd1a6facd3df98b1bf.tar.bz2
headers_c.cc (main): New file.
2000-12-20 Benjamin Kosnik <bkoz@fillmore.constant.com> * testsuite/17_intro/headers_c.cc (main): New file. * acinclude.m4 (SECTION_FLAGS): Only set if --enable-debug is not passed. (OPT_LDFLAGS): And here. * aclocal.m4: Regenerate. * configure: Regenerate. From-SVN: r38393
-rw-r--r--libstdc++-v3/ChangeLog10
-rw-r--r--libstdc++-v3/acinclude.m48
-rw-r--r--libstdc++-v3/aclocal.m48
-rwxr-xr-xlibstdc++-v3/configure10
4 files changed, 23 insertions, 13 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 7f1d421..6098208 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,13 @@
+2000-12-20 Benjamin Kosnik <bkoz@fillmore.constant.com>
+
+ * testsuite/17_intro/headers_c.cc (main): New file.
+
+ * acinclude.m4 (SECTION_FLAGS): Only set if --enable-debug is not
+ passed.
+ (OPT_LDFLAGS): And here.
+ * aclocal.m4: Regenerate.
+ * configure: Regenerate.
+
2000-12-19 Curtis Janssen <cljanss@ca.sandia.gov>
* src/ios.cc (ios_base::_M_grow_words(int ix)): Fix libstdc++/1089.
diff --git a/libstdc++-v3/acinclude.m4 b/libstdc++-v3/acinclude.m4
index ba89c73..c5ee25a 100644
--- a/libstdc++-v3/acinclude.m4
+++ b/libstdc++-v3/acinclude.m4
@@ -230,7 +230,7 @@ AC_DEFUN(GLIBCPP_CHECK_COMPILER_FEATURES, [
# this is the suspicious part
CXXFLAGS=''
fi
- if test "$ac_gabydiags" = "yes"; then
+ if test x"$ac_gabydiags" = x"yes"; then
WFMT_FLAGS='-fdiagnostics-show-location=once'
fi
AC_MSG_RESULT($ac_gabydiags)
@@ -246,7 +246,7 @@ AC_DEFUN(GLIBCPP_CHECK_COMPILER_FEATURES, [
# this is the suspicious part
CXXFLAGS=''
fi
- if test "$ac_fdsections" = "yes"; then
+ if test x"$ac_fdsections" = x"yes" && x"$enable_debug" = x"no"; then
SECTION_FLAGS='-ffunction-sections -fdata-sections'
fi
AC_MSG_RESULT($ac_fdsections)
@@ -314,7 +314,7 @@ AC_DEFUN(GLIBCPP_CHECK_LINKER_FEATURES, [
fi
# Set linker optimization flags.
- if test "$ac_cv_prog_gnu_ld" = "yes"; then
+ if test x"$ac_cv_prog_gnu_ld" = x"yes" && x"$enable_debug" = x"no"; then
OPT_LDFLAGS='-Wl,-O1'
fi
@@ -1167,7 +1167,7 @@ dnl Option parsed, now set things appropriately
case "${enable_debug}" in
yes)
DEBUG_FLAGS='-O0 -ggdb3'
- ;;
+ ;;
no)
DEBUG_FLAGS='-g'
;;
diff --git a/libstdc++-v3/aclocal.m4 b/libstdc++-v3/aclocal.m4
index 92f7e77..95aced9 100644
--- a/libstdc++-v3/aclocal.m4
+++ b/libstdc++-v3/aclocal.m4
@@ -242,7 +242,7 @@ AC_DEFUN(GLIBCPP_CHECK_COMPILER_FEATURES, [
# this is the suspicious part
CXXFLAGS=''
fi
- if test "$ac_gabydiags" = "yes"; then
+ if test x"$ac_gabydiags" = x"yes"; then
WFMT_FLAGS='-fdiagnostics-show-location=once'
fi
AC_MSG_RESULT($ac_gabydiags)
@@ -258,7 +258,7 @@ AC_DEFUN(GLIBCPP_CHECK_COMPILER_FEATURES, [
# this is the suspicious part
CXXFLAGS=''
fi
- if test "$ac_fdsections" = "yes"; then
+ if test x"$ac_fdsections" = x"yes" && x"$enable_debug" = x"no"; then
SECTION_FLAGS='-ffunction-sections -fdata-sections'
fi
AC_MSG_RESULT($ac_fdsections)
@@ -326,7 +326,7 @@ AC_DEFUN(GLIBCPP_CHECK_LINKER_FEATURES, [
fi
# Set linker optimization flags.
- if test "$ac_cv_prog_gnu_ld" = "yes"; then
+ if test x"$ac_cv_prog_gnu_ld" = x"yes" && x"$enable_debug" = x"no"; then
OPT_LDFLAGS='-Wl,-O1'
fi
@@ -1179,7 +1179,7 @@ dnl Option parsed, now set things appropriately
case "${enable_debug}" in
yes)
DEBUG_FLAGS='-O0 -ggdb3'
- ;;
+ ;;
no)
DEBUG_FLAGS='-g'
;;
diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure
index 436e11a..553bfa9 100755
--- a/libstdc++-v3/configure
+++ b/libstdc++-v3/configure
@@ -2593,7 +2593,7 @@ fi
case "${enable_debug}" in
yes)
DEBUG_FLAGS='-O0 -ggdb3'
- ;;
+ ;;
no)
DEBUG_FLAGS='-g'
;;
@@ -3334,7 +3334,7 @@ fi
fi
# Set linker optimization flags.
- if test "$ac_cv_prog_gnu_ld" = "yes"; then
+ if test x"$ac_cv_prog_gnu_ld" = x"yes" && x"$enable_debug" = x"no"; then
OPT_LDFLAGS='-Wl,-O1'
fi
@@ -4493,7 +4493,7 @@ rm -f conftest*
# this is the suspicious part
CXXFLAGS=''
fi
- if test "$ac_gabydiags" = "yes"; then
+ if test x"$ac_gabydiags" = x"yes"; then
WFMT_FLAGS='-fdiagnostics-show-location=once'
fi
echo "$ac_t""$ac_gabydiags" 1>&6
@@ -4527,7 +4527,7 @@ rm -f conftest*
# this is the suspicious part
CXXFLAGS=''
fi
- if test "$ac_fdsections" = "yes"; then
+ if test x"$ac_fdsections" = x"yes" && x"$enable_debug" = x"no"; then
SECTION_FLAGS='-ffunction-sections -fdata-sections'
fi
echo "$ac_t""$ac_fdsections" 1>&6
@@ -4610,7 +4610,7 @@ fi
fi
# Set linker optimization flags.
- if test "$ac_cv_prog_gnu_ld" = "yes"; then
+ if test x"$ac_cv_prog_gnu_ld" = x"yes" && x"$enable_debug" = x"no"; then
OPT_LDFLAGS='-Wl,-O1'
fi