aboutsummaryrefslogtreecommitdiffstats
path: root/driver/Configuration.ml
diff options
context:
space:
mode:
Diffstat (limited to 'driver/Configuration.ml')
-rw-r--r--driver/Configuration.ml2
1 files changed, 2 insertions, 0 deletions
diff --git a/driver/Configuration.ml b/driver/Configuration.ml
index be581e14..0a2b3eec 100644
--- a/driver/Configuration.ml
+++ b/driver/Configuration.ml
@@ -174,10 +174,12 @@ let struct_return_style =
type response_file_style =
| Gnu (* responsefiles in gnu compatible syntax *)
+ | Diab (* responsefiles in diab compatible syntax *)
| Unsupported (* responsefiles are not supported *)
let response_file_style =
match get_config_string "response_file_style" with
| "unsupported" -> Unsupported
| "gnu" -> Gnu
+ | "diab" -> Diab
| v -> bad_config "response_file_style" [v]