https://gcc.gnu.org/bugzilla/show_bug.cgi?id=123045
Kirill A. Korinsky <kirill at korins dot ky> changed:
What |Removed |Added
----------------------------------------------------------------------------
Resolution|--- |FIXED
Status|UNCONFIRMED |RESOLVED
--- Comment #12 from Kirill A. Korinsky <kirill at korins dot ky> ---
Iain Buclaw, thanks.
After renaming in two places:
15 $ cat patches/patch-gcc_d_d-spec_cc
Index: gcc/d/d-spec.cc
--- gcc/d/d-spec.cc.orig
+++ gcc/d/d-spec.cc
@@ -31,7 +31,7 @@ along with GCC; see the file COPYING3. If not see
#define SKIPOPT (1<<3)
#ifndef LIBSTDCXX
-#define LIBSTDCXX "stdc++"
+#define LIBSTDCXX "estdc++"
#endif
#ifndef LIBSTDCXX_PROFILE
#define LIBSTDCXX_PROFILE LIBSTDCXX
15 $ cat patches/patch-gcc_d_d-target_cc
Index: gcc/d/d-target.cc
--- gcc/d/d-target.cc.orig
+++ gcc/d/d-target.cc
@@ -488,7 +488,7 @@ tree
d_handle_target_cpp_runtime_library (void)
{
/* The driver only ever optionally links to libstdc++. */
- const char *libstdcxx = "libstdc++";
+ const char *libstdcxx = "libestdc++";
return build_string_literal (strlen (libstdcxx) + 1, libstdcxx);
}
15 $
it builds without hacking Makefile.in
This is indeed invalid issue which should be closed.