From: Benjamin Kosnik Date: Wed, 20 Dec 2000 08:39:55 +0000 (+0000) Subject: headers_c.cc (main): New file. X-Git-Tag: prereleases/libstdc++-2.92~2117 X-Git-Url: https://gcc.gnu.org/git/?a=commitdiff_plain;h=6abd2230b96c29ac7951bbfd1a6facd3df98b1bf;p=gcc.git headers_c.cc (main): New file. 2000-12-20 Benjamin Kosnik * 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 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 7f1d4219f77c..609820825e9b 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,13 @@ +2000-12-20 Benjamin Kosnik + + * 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 * 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 ba89c731a66f..c5ee25aec8c8 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 92f7e7740968..95aced96e5f0 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 436e11a57fd0..553bfa9562e7 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