blob: 1cda2bf00a78f24d805792738b85dcaf6f35a7d2 (
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
25
26
27
28
|
# DP: Modify gdc driver to have no libphobos by default.
Index: b/src/gcc/d/d-lang.cc
===================================================================
--- a/src/gcc/d/d-lang.cc
+++ b/src/gcc/d/d-lang.cc
@@ -185,7 +185,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;
Index: b/src/gcc/d/d-spec.cc
===================================================================
--- a/src/gcc/d/d-spec.cc
+++ b/src/gcc/d/d-spec.cc
@@ -93,7 +93,7 @@ lang_specific_driver (cl_decoded_option
/* If nonzero, use the standard D runtime library when linking with
standard libraries. */
- int phobos = 1;
+ int phobos = 0;
/* The number of arguments being added to what's in argv, other than
libraries. We use this to track the number of times we've inserted
|