diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2012-10-23 22:57:43 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2012-10-23 22:57:43 +0000 |
commit | 0d6414b24c4041d9a5f7ceaf382d189230702084 (patch) | |
tree | 36ccc334c30fd823107a6719f4510385a9b3ca6e /configure | |
parent | a780583f8229301f894d1db9f2aa4a2415c2bddf (diff) | |
download | gcc-0d6414b24c4041d9a5f7ceaf382d189230702084.zip gcc-0d6414b24c4041d9a5f7ceaf382d189230702084.tar.gz gcc-0d6414b24c4041d9a5f7ceaf382d189230702084.tar.bz2 |
re PR bootstrap/54820 (ada: cannot find -lstdc++ since 4.8.0 20121002)
PR bootstrap/54820
* configure.ac (have_static_libs): Force 'no' for GCC version < 4.5.
* configure: Regenerate.
From-SVN: r192748
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -4892,6 +4892,10 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ + +#if (__GNUC__ < 4) || (__GNUC__ == 4 && __GNUC_MINOR__ < 5) +#error -static-libstdc++ not implemented +#endif int main() {} _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : |