mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-04 20:01:21 +08:00
acinclude.m4 (GLIBCXX_CHECK_COMPILER_FEATURES): Add -g to compile flags, move code to test to global scope.
2007-05-17 Benjamin Kosnik <bkoz@redhat.com> * acinclude.m4 (GLIBCXX_CHECK_COMPILER_FEATURES): Add -g to compile flags, move code to test to global scope. * configure: Regenerate. From-SVN: r124802
This commit is contained in:
parent
4eff80454b
commit
85ee35cae8
@ -1,3 +1,9 @@
|
||||
2007-05-17 Benjamin Kosnik <bkoz@redhat.com>
|
||||
|
||||
* acinclude.m4 (GLIBCXX_CHECK_COMPILER_FEATURES): Add -g to
|
||||
compile flags, move code to test to global scope.
|
||||
* configure: Regenerate.
|
||||
|
||||
2007-05-17 Benjamin Kosnik <bkoz@redhat.com>
|
||||
|
||||
* testsuite/21_strings/char_traits/requirements/wchar_t/typedefs.cc:
|
||||
|
@ -170,8 +170,8 @@ AC_DEFUN([GLIBCXX_CHECK_COMPILER_FEATURES], [
|
||||
|
||||
# Check for -ffunction-sections -fdata-sections
|
||||
AC_MSG_CHECKING([for g++ that supports -ffunction-sections -fdata-sections])
|
||||
CXXFLAGS='-Werror -ffunction-sections -fdata-sections'
|
||||
AC_TRY_COMPILE(, [int foo; void bar() { };], [ac_fdsections=yes], [ac_fdsections=no])
|
||||
CXXFLAGS='-g -Werror -ffunction-sections -fdata-sections'
|
||||
AC_TRY_COMPILE([int foo; void bar() { };],, [ac_fdsections=yes], [ac_fdsections=no])
|
||||
if test "$ac_test_CXXFLAGS" = set; then
|
||||
CXXFLAGS="$ac_save_CXXFLAGS"
|
||||
else
|
||||
|
12
libstdc++-v3/configure
vendored
12
libstdc++-v3/configure
vendored
@ -8272,18 +8272,18 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
|
||||
# Check for -ffunction-sections -fdata-sections
|
||||
echo "$as_me:$LINENO: checking for g++ that supports -ffunction-sections -fdata-sections" >&5
|
||||
echo $ECHO_N "checking for g++ that supports -ffunction-sections -fdata-sections... $ECHO_C" >&6
|
||||
CXXFLAGS='-Werror -ffunction-sections -fdata-sections'
|
||||
CXXFLAGS='-g -Werror -ffunction-sections -fdata-sections'
|
||||
cat >conftest.$ac_ext <<_ACEOF
|
||||
/* confdefs.h. */
|
||||
_ACEOF
|
||||
cat confdefs.h >>conftest.$ac_ext
|
||||
cat >>conftest.$ac_ext <<_ACEOF
|
||||
/* end confdefs.h. */
|
||||
|
||||
int foo; void bar() { };
|
||||
int
|
||||
main ()
|
||||
{
|
||||
int foo; void bar() { };
|
||||
|
||||
;
|
||||
return 0;
|
||||
}
|
||||
@ -56567,18 +56567,18 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
|
||||
# Check for -ffunction-sections -fdata-sections
|
||||
echo "$as_me:$LINENO: checking for g++ that supports -ffunction-sections -fdata-sections" >&5
|
||||
echo $ECHO_N "checking for g++ that supports -ffunction-sections -fdata-sections... $ECHO_C" >&6
|
||||
CXXFLAGS='-Werror -ffunction-sections -fdata-sections'
|
||||
CXXFLAGS='-g -Werror -ffunction-sections -fdata-sections'
|
||||
cat >conftest.$ac_ext <<_ACEOF
|
||||
/* confdefs.h. */
|
||||
_ACEOF
|
||||
cat confdefs.h >>conftest.$ac_ext
|
||||
cat >>conftest.$ac_ext <<_ACEOF
|
||||
/* end confdefs.h. */
|
||||
|
||||
int foo; void bar() { };
|
||||
int
|
||||
main ()
|
||||
{
|
||||
int foo; void bar() { };
|
||||
|
||||
;
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user