diff options
author | Martin Liska <mliska@suse.cz> | 2022-01-14 16:52:15 +0100 |
---|---|---|
committer | Martin Liska <mliska@suse.cz> | 2022-01-14 16:52:15 +0100 |
commit | d82a54f5644ae3db546e596b7bc426c5cb00b7e1 (patch) | |
tree | a8a728d6fd9454d8141da43c2f7bb7e9e2690c4a /gcc | |
parent | 6795e6ae66096d52a62e20ed33a47599233ab3d5 (diff) | |
download | gcc-d82a54f5644ae3db546e596b7bc426c5cb00b7e1.zip gcc-d82a54f5644ae3db546e596b7bc426c5cb00b7e1.tar.gz gcc-d82a54f5644ae3db546e596b7bc426c5cb00b7e1.tar.bz2 |
configure: Regenerate.
Regenerate after change made in g:7c6ae994fb587c19ca14aebe18dbc9aca83be609.
gcc/ChangeLog:
* configure: Regenerate.
Diffstat (limited to 'gcc')
-rwxr-xr-x | gcc/configure | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/gcc/configure b/gcc/configure index d19059e..ff570f7 100755 --- a/gcc/configure +++ b/gcc/configure @@ -5352,7 +5352,26 @@ else GDC="$ac_cv_prog_GDC" fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the D compiler works" >&5 +$as_echo_n "checking whether the D compiler works... " >&6; } +if ${acx_cv_d_compiler_works+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat >conftest.d <<EOF +module conftest; int main() { return 0; } +EOF +acx_cv_d_compiler_works=no if test "x$GDC" != xno; then + errors=`(${GDC} -I"$srcdir"/d -c conftest.d) 2>&1 || echo failure` + if test x"$errors" = x && test -f conftest.$ac_objext; then + acx_cv_d_compiler_works=yes + fi + rm -f conftest.* +fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $acx_cv_d_compiler_works" >&5 +$as_echo "$acx_cv_d_compiler_works" >&6; } +if test "x$GDC" != xno && test x$acx_cv_d_compiler_works != xno; then have_gdc=yes else have_gdc=no @@ -19640,7 +19659,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 19643 "configure" +#line 19662 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -19746,7 +19765,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 19749 "configure" +#line 19768 "configure" #include "confdefs.h" #if HAVE_DLFCN_H |