https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80921

Eric Botcazou <ebotcazou at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |NEW

--- Comment #3 from Eric Botcazou <ebotcazou at gcc dot gnu.org> ---
> There is not.  I see records of (successful) ar commands to build the static
> libraries, but no evidence at all of even any attempt to build shared; the
> build was configured with --enable-shared, and even explicit
> --enable-shared=libada makes no difference ... no shared Ada libraries are
> built, while shared libraries for C, C++, Fortran, ObjC, and other
> supporting components are.

Probably the FIXME in libada/configure.ac then:

# Determine what to build for 'gnatlib'
if test $build = $target \
   && test ${enable_shared} = yes ; then
  # Note that build=target is almost certainly the wrong test; FIXME
  default_gnatlib_target="gnatlib-shared"
else
  default_gnatlib_target="gnatlib-plain"
fi
AC_SUBST([default_gnatlib_target])

No idea why this was put in the first place but the first test should go...

Reply via email to