Skip to content
Snippets Groups Projects
  1. Jan 01, 2021
    • Jakub Jelinek's avatar
      Rotate ChangeLog files - part 1 - add ChangeLog-2020. · 6e926962
      Jakub Jelinek authored
      2021-01-01  Jakub Jelinek  <jakub@redhat.com>
      
      gcc/
      	* ChangeLog-2020: Rotate ChangeLog.  New file.
      gcc/ada/
      	* ChangeLog-2020: Rotate ChangeLog.  New file.
      gcc/cp/
      	* ChangeLog-2020: Rotate ChangeLog.  New file.
      gcc/d/
      	* ChangeLog-2020: Rotate ChangeLog.  New file.
      gcc/fortran/
      	* ChangeLog-2020: Rotate ChangeLog.  New file.
      gcc/testsuite/
      	* ChangeLog-2020: Rotate ChangeLog.  New file.
      libgfortran/
      	* ChangeLog-2020: Rotate ChangeLog.  New file.
      libstdc++-v3/
      	* ChangeLog-2020: Rotate ChangeLog.  New file.
      6e926962
  2. Dec 06, 2020
  3. Nov 30, 2020
  4. Nov 27, 2020
  5. Nov 22, 2020
  6. Nov 02, 2020
  7. Oct 19, 2020
  8. Sep 29, 2020
  9. Sep 28, 2020
  10. Sep 04, 2020
  11. Aug 25, 2020
  12. Aug 21, 2020
  13. Aug 18, 2020
  14. Aug 04, 2020
  15. Jul 27, 2020
  16. Jul 25, 2020
  17. Jul 15, 2020
  18. Jun 23, 2020
  19. Jun 22, 2020
  20. Jun 14, 2020
  21. Jun 09, 2020
  22. Jun 02, 2020
  23. May 30, 2020
  24. May 29, 2020
  25. May 27, 2020
  26. May 23, 2020
    • Thomas Koenig's avatar
      Fixes a hang on an invalid ID in a WAIT statement. · 8df7ee67
      Thomas Koenig authored
      gcc/fortran/ChangeLog:
      
      2020-05-23  Thomas Koenig  <tkoenig@gcc.gnu.org>
      
      	PR libfortran/95191
      	* libgfortran.h (libgfortran_error_codes): Add
      	LIBERROR_BAD_WAIT_ID.
      
      libgfortran/ChangeLog:
      
      2020-05-23  Thomas Koenig  <tkoenig@gcc.gnu.org>
      
      	PR libfortran/95191
      	* io/async.c (async_wait_id): Generate error if ID is higher
      	than the highest current ID.
      	* runtime/error.c (translate_error): Handle LIBERROR_BAD_WAIT_ID.
      
      libgomp/ChangeLog:
      
      2020-05-23  Thomas Koenig  <tkoenig@gcc.gnu.org>
      
      	PR libfortran/95191
      	* testsuite/libgomp.fortran/async_io_9.f90: New test.
      8df7ee67
  27. May 21, 2020
    • H.J. Lu's avatar
      libgfortran: Use __builtin_cpu_is/__builtin_cpu_supports · 8ebc2f5e
      H.J. Lu authored
      	* m4/matmul.m4: Don't include <config/i386/cpuinfo.h>.  Use
      	__builtin_cpu_is/__builtin_cpu_supports
      	* generated/matmul_c10.c: Regenerated.
      	* generated/matmul_c16.c: Likewise.
      	* generated/matmul_c4.c: Likewise.
      	* generated/matmul_c8.c: Likewise.
      	* generated/matmul_i1.c: Likewise.
      	* generated/matmul_i16.c: Likewise.
      	* generated/matmul_i2.c: Likewise.
      	* generated/matmul_i4.c: Likewise.
      	* generated/matmul_i8.c: Likewise.
      	* generated/matmul_r10.c: Likewise.
      	* generated/matmul_r16.c: Likewise.
      	* generated/matmul_r4.c: Likewise.
      	* generated/matmul_r8.c: Likewise.
      8ebc2f5e
  28. May 15, 2020
    • H.J. Lu's avatar
      x86: Also check if -fcf-protection works · 4c1a5d8b
      H.J. Lu authored
      When defaulting CET run-time support to auto, check if -fcf-protection
      works.  Even if the stage1 GCC doesn't support -fcf-protection, since
      the final GCC does, CET run-time support will be enabled by default if
      binutils support CET.
      
      config/
      
      	PR bootstrap/95147
      	* cet.m4 (GCC_CET_FLAGS): Also check if -fcf-protection works
      	when defaulting to auto.
      
      libatomic/
      
      	PR bootstrap/95147
      	* configure: Regenerated.
      
      libbacktrace/
      
      	PR bootstrap/95147
      	* configure: Regenerated.
      
      libgcc/
      
      	PR bootstrap/95147
      	* configure: Regenerated.
      
      libgfortran/
      
      	PR bootstrap/95147
      	* configure: Regenerated.
      
      libgomp/
      
      	PR bootstrap/95147
      	* configure: Regenerated.
      
      libitm/
      
      	PR bootstrap/95147
      	* configure: Regenerated.
      
      libobjc/
      
      	PR bootstrap/95147
      	* configure: Regenerated.
      
      libphobos/
      
      	PR bootstrap/95147
      	* configure: Regenerated.
      
      libquadmath/
      
      	PR bootstrap/95147
      	* configure: Regenerated.
      
      libsanitizer/
      
      	PR bootstrap/95147
      	* configure: Regenerated.
      
      libssp/
      
      	PR bootstrap/95147
      	* configure: Regenerated.
      
      libstdc++-v3/
      
      	PR bootstrap/95147
      	* configure: Regenerated.
      
      libvtv/
      
      	PR bootstrap/95147
      	* configure: Regenerated.
      
      zlib/
      
      	PR bootstrap/95147
      	* configure: Regenerated.
      4c1a5d8b
  29. May 14, 2020
    • Thomas Koenig's avatar
    • Thomas Koenig's avatar
      Add early return for invalid STATUS for close. · cdc34b50
      Thomas Koenig authored
      2020-05-14  Thomas Koenig  <tkoenig@gcc.gnu.org>
      
      	PR libfortran/95119
      	* io/close.c (close_status): Add CLOSE_INVALID.
      	(st_close): Return early on invalid STATUS parameter.
      
      2020-05-14  Thomas Koenig  <tkoenig@gcc.gnu.org>
      
      	PR libfortran/95119
      	* testsuite/libgomp.fortran/close_errors_1.f90: New test.
      cdc34b50
    • H.J. Lu's avatar
      x86: Default CET run-time support to auto · 8d286dd1
      H.J. Lu authored
      CET has been added since GCC 8.  This patch defaults CET run-time support
      to auto.  It enables CET run-time support if asssembler supports CET
      instructions and multi-byte NOPs are enabled via SSE2.
      
      config/
      
      	* cet.m4 (GCC_CET_FLAGS): Change default to auto.
      
      gcc/
      
      	* configure: Regenerated.
      
      libatomic/
      
      	* configure: Regenerated.
      
      libbacktrace/
      
      	* configure: Regenerated.
      
      libcc1/
      
      	* configure: Regenerated.
      
      libcpp/
      
      	* configure: Regenerated.
      
      libdecnumber/
      
      	* configure: Regenerated.
      
      libgcc/
      
      	* configure: Regenerated.
      
      libgfortran/
      
      	* configure: Regenerated.
      
      libgomp/
      
      	* configure: Regenerated.
      
      libitm/
      
      	* configure: Regenerated.
      
      libobjc/
      
      	* configure: Regenerated.
      
      libquadmath/
      
      	* configure: Regenerated.
      
      libsanitizer/
      
      	* configure: Regenerated.
      
      libssp/
      
      	* configure: Regenerated.
      
      libstdc++-v3/
      
      	* configure: Regenerated.
      
      libvtv/
      
      	* configure: Regenerated.
      
      zlib/
      
      	* configure: Regenerated.
      8d286dd1
  30. May 06, 2020
    • Uros Bizjak's avatar
      i386: Use generic division to generate INEXACT exception · d3a1459c
      Uros Bizjak authored
      Introduce math_force_eval_div to use generic division to generate
      INEXACT as well as INVALID and DIVZERO exceptions.
      
      libgcc/ChangeLog:
      
      	* config/i386/sfp-exceptions.c (__math_force_eval): Remove.
      	(__math_force_eval_div): New define.
      	(__sfp_handle_exceptions): Use __math_force_eval_div to use
      	generic division to generate INVALID, DIVZERO and INEXACT
      	exceptions.
      
      libatomic/ChangeLog:
      
      	* config/x86/fenv.c (__math_force_eval): Remove.
      	(__math_force_eval_div): New define.
      	(__atomic_deraiseexcept): Use __math_force_eval_div to use
      	generic division to generate INVALID, DIVZERO and INEXACT
      	exceptions.
      
      libgfortran/ChangeLog:
      
      	* config/fpu-387.h (__math_force_eval): Remove.
      	(__math_force_eval_div): New define.
      	(local_feraiseexcept): Use __math_force_eval_div to use
      	generic division to generate INVALID, DIVZERO and INEXACT
      	exceptions.
      	(struct fenv): Define named struct instead of typedef.
      d3a1459c
  31. May 01, 2020
    • Uros Bizjak's avatar
      i386: Use generic division to generate INVALID and DIVZERO exceptions · afb9b710
      Uros Bizjak authored
      Introduce math_force_eval to evaluate generic division to generate
      INVALID and DIVZERO exceptions.
      
      libgcc/ChangeLog:
      
      	* config/i386/sfp-exceptions.c (__math_force_eval): New define.
      	(__sfp_handle_exceptions): Use __math_force_eval to evaluete
      	generic division to generate INVALID and DIVZERO exceptions.
      
      libatomic/ChangeLog:
      
      	* config/x86/fenv.c (__math_force_eval): New define.
      	(__atomic_feraiseexcept): Use __math_force_eval to evaluete
      	generic division to generate INVALID and DIVZERO exceptions.
      
      libgfortran/ChangeLog:
      
      	* config/fpu-387.h (__math_force_eval): New define.
      	(local_feraiseexcept): Use __math_force_eval to evaluete
      	generic division to generate INVALID and DIVZERO exceptions.
      afb9b710
  32. Apr 23, 2020
    • Fritz Reese's avatar
      Protect the trigd functions in libgfortran from unavailable math functions. · e8eecc2a
      Fritz Reese authored
      libgfortran/ChangeLog:
      
      2020-04-22  Fritz Reese  <foreese@gcc.gnu.org>
      
      	PR libfortran/94694
      	PR libfortran/94586
      	* intrinsics/trigd.c, intrinsics/trigd_lib.inc, intrinsics/trigd.inc:
      	Guard against unavailable math functions.
      	Use suffixes from kinds.h based on the REAL kind.
      
      gcc/fortran/ChangeLog:
      
      2020-04-22  Fritz Reese  <foreese@gcc.gnu.org>
      
      	* trigd_fe.inc: Use mpfr to compute cosd(30) rather than a host-
      	precision floating point literal based on an invalid macro.
      e8eecc2a
  33. Apr 22, 2020
    • Jakub Jelinek's avatar
      libgfortran: Provide some further math library fallbacks [PR94694] · 1868599f
      Jakub Jelinek authored
      The following patch provides some further math library fallbacks.
      fmaf can be implemented using fma if available, fma and fmal can use
      x * y + z as fallback, it is not perfect, but e.g. glibc on various arches
      has been using that as fallback for many years,
      and copysign/copysignl/fabs/fabsl can be implemented using corresponding
      __builtin_* if we make sure that gcc expands it inline instead of using
      a library call (these days it is expanded inline on most targets).
      
      2020-04-22  Jakub Jelinek  <jakub@redhat.com>
      
      	PR libfortran/94694
      	PR libfortran/94586
      	* configure.ac: Add math func checks for fmaf, fma and fmal.  Add
      	HAVE_INLINE_BUILTIN_COPYSIGN check.
      	* c99_protos.h (copysign, fmaf, fma, fmal): Provide fallback
      	prototypes.
      	(HAVE_COPYSIGN, HAVE_FMAF, HAVE_FMA, HAVE_FMAL): Define if not
      	defined and fallback version is provided.
      	* intrinsics/c99_functions.c (copysign, fmaf, fma, fmal): Provide
      	fallback implementations if possible
      	* configure: Regenerated.
      	* config.h.in: Regenerated.
      
      	* math.m4 (GCC_CHECK_MATH_INLINE_BUILTIN_FALLBACK1,
      	GCC_CHECK_MATH_INLINE_BUILTIN_FALLBACK2): New.
      1868599f
  34. Apr 19, 2020
    • Uros Bizjak's avatar
      i386: Remove unneeded assignments when triggering SSE exceptions · df73e584
      Uros Bizjak authored
      According to "Intel 64 and IA32 Arch SDM, Vol. 3:
      
      "Because SIMD floating-point exceptions are precise and occur immediately,
      the situation does not arise where an x87 FPU instruction, a WAIT/FWAIT
      instruction, or another SSE/SSE2/SSE3 instruction will catch a pending
      unmasked SIMD floating-point exception."
      
      Remove unneeded assignments to volatile memory.
      
      libgcc/ChangeLog:
      
      	* config/i386/sfp-exceptions.c (__sfp_handle_exceptions) [__SSE_MATH__]:
      	Remove unneeded assignments to volatile memory.
      
      libatomic/ChangeLog:
      
      	* config/x86/fenv.c (__atomic_feraiseexcept) [__SSE_MATH__]:
      	Remove unneeded assignments to volatile memory.
      
      libgfortran/ChangeLog:
      
      	* config/fpu-387.h (local_feraiseexcept) [__SSE_MATH__]:
      	Remove unneeded assignments to volatile memory.
      df73e584
  35. Apr 07, 2020
    • Fritz Reese's avatar
      Fix PR fortran/93871 and re-implement degree-valued trigonometric intrinsics. · 57391dda
      Fritz Reese authored
      2020-04-01  Fritz Reese  <foreese@gcc.gnu.org>
      	    Steven G. Kargl  <kargl@gcc.gnu.org>
      
      gcc/fortran/ChangeLog
      
      	PR fortran/93871
      	* gfortran.h (GFC_ISYM_ACOSD, GFC_ISYM_ASIND, GFC_ISYM_ATAN2D,
      	GFC_ISYM_ATAND, GFC_ISYM_COSD, GFC_ISYM_COTAND, GFC_ISYM_SIND,
      	GFC_ISYM_TAND): New.
      	* intrinsic.c (add_functions): Remove check for flag_dec_math.
      	Give degree trig functions simplification and name resolution
      	functions (e.g, gfc_simplify_atrigd () and gfc_resolve_atrigd ()).
      	(do_simplify): Remove special casing of degree trig functions.
      	* intrinsic.h (gfc_simplify_acosd, gfc_simplify_asind,
      	gfc_simplify_atand, gfc_simplify_cosd, gfc_simplify_cotand,
      	gfc_simplify_sind, gfc_simplify_tand, gfc_resolve_trigd2): Add new
      	prototypes.
      	(gfc_simplify_atrigd, gfc_simplify_trigd, gfc_resolve_cotan,
      	resolve_atrigd): Remove prototypes of deleted functions.
      	* iresolve.c (is_trig_resolved, copy_replace_function_shallow,
      	gfc_resolve_cotan, get_radians, get_degrees, resolve_trig_call,
      	gfc_resolve_atrigd, gfc_resolve_atan2d): Delete functions.
      	(gfc_resolve_trigd, gfc_resolve_trigd2): Resolve to library functions.
      	* simplify.c (rad2deg, deg2rad, gfc_simplify_acosd, gfc_simplify_asind,
      	gfc_simplify_atand, gfc_simplify_atan2d, gfc_simplify_cosd,
      	gfc_simplify_sind, gfc_simplify_tand, gfc_simplify_cotand): New
      	functions.
      	(gfc_simplify_atan2): Fix error message.
      	(simplify_trig_call, gfc_simplify_trigd, gfc_simplify_atrigd,
      	radians_f): Delete functions.
      	* trans-intrinsic.c: Add LIB_FUNCTION decls for sind, cosd, tand.
      	(rad2deg, gfc_conv_intrinsic_atrigd, gfc_conv_intrinsic_cotan,
      	gfc_conv_intrinsic_cotand, gfc_conv_intrinsic_atan2d): New functions.
      	(gfc_conv_intrinsic_function): Handle ACOSD, ASIND, ATAND, COTAN,
      	COTAND, ATAN2D.
      	* trigd_fe.inc: New file. Included by simplify.c to implement
      	simplify_sind, simplify_cosd, simplify_tand with code common to the
      	libgfortran implementation.
      
      gcc/testsuite/ChangeLog
      
      	PR fortran/93871
      	* gfortran.dg/dec_math.f90: Extend coverage to real(10) and real(16).
      	* gfortran.dg/dec_math_2.f90: New test.
      	* gfortran.dg/dec_math_3.f90: Likewise.
      	* gfortran.dg/dec_math_4.f90: Likewise.
      	* gfortran.dg/dec_math_5.f90: Likewise.
      
      libgfortran/ChangeLog
      
      	PR fortran/93871
      	* Makefile.am, Makefile.in: New make rule for intrinsics/trigd.c.
      	* gfortran.map: New routines for {sind, cosd, tand}X{r4, r8, r10, r16}.
      	* intrinsics/trigd.c, intrinsics/trigd_lib.inc, intrinsics/trigd.inc:
      	New files. Defines native degree-valued trig functions.
      57391dda
  36. Feb 18, 2020
    • Thomas König's avatar
      Use au->lock exclusively for locking in async I/O. · 3fe19105
      Thomas König authored
      2020-02-18  Thomas Koenig  <tkoenig@gcc.gnu.org>
      
      	PR fortran/93599
      	* io/async.c (destroy_adv_cond): Do not destroy lock.
      	(async_io): Make sure au->lock is locked for finishing of thread.
      	Do not lock/unlock around signalling emptysignal. Unlock au->lock
      	before return.
      	(init_adv_cond): Do not initialize lock.
      	(enqueue_transfer): Unlock after signal.
      	(enqueue_done_id): Likewise.
      	(enqueue_done): Likewise.
      	(enqueue_close): Likewise.
      	(enqueue_data_transfer): Likewise.
      	(async_wait_id): Do not lock/unlock around signalling au->work.
      	(async_wait): Unlock after signal.
      	* io/async.h (SIGNAL): Add comment about needed au->lock.
      	Remove locking/unlocking of advcond->lock.
      	(WAIT_SIGNAL_MUTEX): Add comment. Remove locking/unlocking of
      	advcond->lock.  Unlock mutex only at the end.  Loop on
      	__ghread_cond_wait returning zero.
      	(REVOKE_SIGNAL): Add comment. Remove locking/unlocking of
      	advcond->lock.
      	(struct adv_cond): Remove mutex from struct.
      
      asdf
      3fe19105
  37. Feb 12, 2020
    • Sandra Loosemore's avatar
      Use a non-empty test program to test ability to link. · 02ce382c
      Sandra Loosemore authored
      On bare-metal targets, I/O support is typically provided by a BSP and
      requires a linker script and/or hosting library to be specified on the
      linker command line.  Linking an empty program with the default linker
      script may succeed, however, which confuses libstdc++ configuration
      when programs that probe for the presence of various I/O features fail
      with link errors.
      
      2020-02-12  Sandra Loosemore  <sandra@codesourcery.com>
      
      	PR libstdc++/79193
      	PR libstdc++/88999
      
      	config/
      	* no-executables.m4: Use a non-empty program to test for linker
      	support.
      
      	libgcc/
      	* configure: Regenerated.
      
      	libgfortran/
      	* configure: Regenerated.
      
      	libiberty/
      	* configure: Regenerated.
      
      	libitm/
      	* configure: Regenerated.
      
      	libobjc/
      	* configure: Regenerated.
      
      	libquadmath/
      	* configure: Regenerated.
      
      	libssp/
      	* configure: Regenerated.
      
      	libstdc++v-3/
      	* configure: Regenerated.
      02ce382c
  38. Jan 24, 2020
    • Maciej W. Rozycki's avatar
      Add `--with-toolexeclibdir=' configuration option · e8e66971
      Maciej W. Rozycki authored
      Provide means, in the form of a `--with-toolexeclibdir=' configuration
      option, to override the default installation directory for target
      libraries, otherwise known as $toolexeclibdir.  This is so that it is
      possible to get newly-built libraries, particularly the shared ones,
      installed in a common place, so that they can be readily used by the
      target system as their host libraries, possibly over NFS, without a need
      to manually copy them over from the currently hardcoded location they
      would otherwise be installed in.
      
      In the presence of the `--enable-version-specific-runtime-libs' option
      and for configurations building native GCC the option is ignored.
      
      	config/
      	* toolexeclibdir.m4: New file.
      
      	gcc/
      	* doc/install.texi (Cross-Compiler-Specific Options): Document
      	`--with-toolexeclibdir' option.
      
      	libada/
      	* Makefile.in (configure_deps): Add `toolexeclibdir.m4'.
      	* configure.ac: Handle `--with-toolexeclibdir='.
      	* configure: Regenerate.
      
      	libatomic/
      	* configure.ac: Handle `--with-toolexeclibdir='.
      	* Makefile.in: Regenerate.
      	* aclocal.m4: Regenerate.
      	* configure: Regenerate.
      	* testsuite/Makefile.in: Regenerate.
      
      	libffi/
      	* configure.ac: Handle `--with-toolexeclibdir='.
      	* Makefile.in: Regenerate.
      	* aclocal.m4: Regenerate.
      	* configure: Regenerate.
      	* include/Makefile.in: Regenerate.
      	* man/Makefile.in: Regenerate.
      	* testsuite/Makefile.in: Regenerate.
      
      	libgcc/
      	* Makefile.in (configure_deps): Add `toolexeclibdir.m4'.
      	* configure.ac: Handle `--with-toolexeclibdir='.
      	* configure: Regenerate.
      
      	libgfortran/
      	* configure.ac: Handle `--with-toolexeclibdir='.
      	* Makefile.in: Regenerate.
      	* aclocal.m4: Regenerate.
      	* configure: Regenerate.
      
      	libgomp/
      	* configure.ac: Handle `--with-toolexeclibdir='.
      	* Makefile.in: Regenerate.
      	* aclocal.m4: Regenerate.
      	* configure: Regenerate.
      	* testsuite/Makefile.in: Regenerate.
      
      	libhsail-rt/
      	* configure.ac: Handle `--with-toolexeclibdir='.
      	* Makefile.in: Regenerate.
      	* aclocal.m4: Regenerate.
      	* configure: Regenerate.
      
      	libitm/
      	* configure.ac: Handle `--with-toolexeclibdir='.
      	* Makefile.in: Regenerate.
      	* aclocal.m4: Regenerate.
      	* configure: Regenerate.
      	* testsuite/Makefile.in: Regenerate.
      
      	libobjc/
      	* Makefile.in (aclocal_deps): Add `toolexeclibdir.m4'.
      	* aclocal.m4: Include `toolexeclibdir.m4'.
      	* configure.ac: Handle `--with-toolexeclibdir='.
      	* configure: Regenerate.
      
      	liboffloadmic/
      	* plugin/configure.ac: Handle `--with-toolexeclibdir='.
      	* plugin/Makefile.in: Regenerate.
      	* plugin/aclocal.m4: Regenerate.
      	* plugin/configure: Regenerate.
      	* configure.ac: Handle `--with-toolexeclibdir='.
      	* Makefile.in: Regenerate.
      	* aclocal.m4: Regenerate.
      	* configure: Regenerate.
      
      	libphobos/
      	* m4/druntime.m4: Handle `--with-toolexeclibdir='.
      	* m4/Makefile.in: Regenerate.
      	* libdruntime/Makefile.in: Regenerate.
      	* src/Makefile.in: Regenerate.
      	* testsuite/Makefile.in: Regenerate.
      	* Makefile.in: Regenerate.
      	* aclocal.m4: Regenerate.
      	* configure: Regenerate.
      
      	libquadmath/
      	* configure.ac: Handle `--with-toolexeclibdir='.
      	* Makefile.in: Regenerate.
      	* aclocal.m4: Regenerate.
      	* configure: Regenerate.
      
      	libsanitizer/
      	* configure.ac: Handle `--with-toolexeclibdir='.
      	* Makefile.in: Regenerate.
      	* aclocal.m4: Regenerate.
      	* configure: Regenerate.
      	* asan/Makefile.in: Regenerate.
      	* interception/Makefile.in: Regenerate.
      	* libbacktrace/Makefile.in: Regenerate.
      	* lsan/Makefile.in: Regenerate.
      	* sanitizer_common/Makefile.in: Regenerate.
      	* tsan/Makefile.in: Regenerate.
      	* ubsan/Makefile.in: Regenerate.
      
      	libssp/
      	* configure.ac: Handle `--with-toolexeclibdir='.
      	* Makefile.in: Regenerate.
      	* aclocal.m4: Regenerate.
      	* configure: Regenerate.
      
      	libstdc++-v3/
      	* acinclude.m4: Handle `--with-toolexeclibdir='.
      	* Makefile.in: Regenerate.
      	* aclocal.m4: Regenerate.
      	* configure: Regenerate.
      	* doc/Makefile.in: Regenerate.
      	* include/Makefile.in: Regenerate.
      	* libsupc++/Makefile.in: Regenerate.
      	* po/Makefile.in: Regenerate.
      	* python/Makefile.in: Regenerate.
      	* src/Makefile.in: Regenerate.
      	* src/c++11/Makefile.in: Regenerate.
      	* src/c++17/Makefile.in: Regenerate.
      	* src/c++98/Makefile.in: Regenerate.
      	* src/filesystem/Makefile.in: Regenerate.
      	* testsuite/Makefile.in: Regenerate.
      
      	libvtv/
      	* configure.ac: Handle `--with-toolexeclibdir='.
      	* Makefile.in: Regenerate.
      	* aclocal.m4: Regenerate.
      	* configure: Regenerate.
      	* testsuite/Makefile.in: Regenerate.
      
      	zlib/
      	* configure.ac: Handle `--with-toolexeclibdir='.
      	* Makefile.in: Regenerate.
      	* aclocal.m4: Regenerate.
      	* configure: Regenerate.
      e8e66971
Loading