mirror of git://gcc.gnu.org/git/gcc.git
acinclude.m4 (GLIBCPP_CHECK_LINKER_FEATURES): Comment out exception-throwing code for linker test.
2000-10-11 Phil Edwards <pme@sources.redhat.com> * acinclude.m4 (GLIBCPP_CHECK_LINKER_FEATURES): Comment out exception-throwing code for linker test. * aclocal.m4: Regenerate. * configure: Regenerate. From-SVN: r36838
This commit is contained in:
parent
0fba720823
commit
a3cfd96a44
|
@ -1,3 +1,10 @@
|
||||||
|
2000-10-11 Phil Edwards <pme@sources.redhat.com>
|
||||||
|
|
||||||
|
* acinclude.m4 (GLIBCPP_CHECK_LINKER_FEATURES): Comment out
|
||||||
|
exception-throwing code for linker test.
|
||||||
|
* aclocal.m4: Regenerate.
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2000-10-10 Benjamin Kosnik <bkoz@purist.soma.redhat.com>
|
2000-10-10 Benjamin Kosnik <bkoz@purist.soma.redhat.com>
|
||||||
|
|
||||||
* Makefile.am (LIBSUPCXX_INCLUDES): Adjust.
|
* Makefile.am (LIBSUPCXX_INCLUDES): Adjust.
|
||||||
|
|
|
@ -273,8 +273,8 @@ AC_DEFUN(GLIBCPP_CHECK_LINKER_FEATURES, [
|
||||||
AC_TRY_RUN([
|
AC_TRY_RUN([
|
||||||
int main(void)
|
int main(void)
|
||||||
{
|
{
|
||||||
try { throw 1; }
|
//try { throw 1; }
|
||||||
catch (...) { };
|
//catch (...) { };
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
], [ac_sectionLDflags=yes], [ac_sectionLFflags=no], [ac_sectionLDflags=yes])
|
], [ac_sectionLDflags=yes], [ac_sectionLFflags=no], [ac_sectionLDflags=yes])
|
||||||
|
|
|
@ -285,8 +285,8 @@ AC_DEFUN(GLIBCPP_CHECK_LINKER_FEATURES, [
|
||||||
AC_TRY_RUN([
|
AC_TRY_RUN([
|
||||||
int main(void)
|
int main(void)
|
||||||
{
|
{
|
||||||
try { throw 1; }
|
//try { throw 1; }
|
||||||
catch (...) { };
|
//catch (...) { };
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
], [ac_sectionLDflags=yes], [ac_sectionLFflags=no], [ac_sectionLDflags=yes])
|
], [ac_sectionLDflags=yes], [ac_sectionLFflags=no], [ac_sectionLDflags=yes])
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue