summaryrefslogtreecommitdiff
path: root/debian/patches/gdc-driver-nophobos.diff
blob: 799ee8dbe5de2211d478f26aaaed308eb9e0983a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# DP: Modify gdc driver to have no libphobos by default.

--- a/src/gcc/d/d-lang.cc
+++ b/src/gcc/d/d-lang.cc
@@ -315,7 +315,7 @@ static void
 d_init_options_struct (gcc_options *opts)
 {
   /* GCC options.  */
-  opts->x_flag_exceptions = 1;
+  opts->x_flag_exceptions = 0;
 
   /* Avoid range issues for complex multiply and divide.  */
   opts->x_flag_complex_method = 2;
--- a/src/gcc/d/d-spec.cc
+++ b/src/gcc/d/d-spec.cc
@@ -70,7 +70,7 @@ static phobos_action phobos_library = PH
 
 /* If true, use the standard D runtime library when linking with
    standard libraries.  */
-static bool need_phobos = true;
+static bool need_phobos = false;
 
 void
 lang_specific_driver (cl_decoded_option **in_decoded_options,