Blame SOURCES/gcc11-d-shared-libphobos.patch

2e9d4a
2019-01-17  Jakub Jelinek  <jakub@redhat.com>
2e9d4a
2e9d4a
	* d-spec.cc (lang_specific_driver): Make -shared-libphobos
2e9d4a
	the default rather than -static-libphobos.
2e9d4a
2e9d4a
--- gcc/d/d-spec.cc.jj	2019-01-01 12:37:49.502444257 +0100
2e9d4a
+++ gcc/d/d-spec.cc	2019-01-17 17:09:45.364949246 +0100
2e9d4a
@@ -408,9 +408,9 @@ lang_specific_driver (cl_decoded_option
2e9d4a
   /* Add `-lgphobos' if we haven't already done so.  */
2e9d4a
   if (phobos_library != PHOBOS_NOLINK)
2e9d4a
     {
2e9d4a
-      /* Default to static linking.  */
2e9d4a
-      if (phobos_library != PHOBOS_DYNAMIC)
2e9d4a
-	phobos_library = PHOBOS_STATIC;
2e9d4a
+      /* Default to shared linking.  */
2e9d4a
+      if (phobos_library != PHOBOS_STATIC)
2e9d4a
+	phobos_library = PHOBOS_DYNAMIC;
2e9d4a
 
2e9d4a
 #ifdef HAVE_LD_STATIC_DYNAMIC
2e9d4a
       if (phobos_library == PHOBOS_STATIC && !static_link)