1
+ (* Copyright (C) 2015 - 2016 Bloomberg Finance L.P.
2
+ * Copyright (C) 2016 - Hongbo Zhang, Authors of ReScript
3
+ * This program is free software: you can redistribute it and/or modify
4
+ * it under the terms of the GNU Lesser General Public License as published by
5
+ * the Free Software Foundation, either version 3 of the License, or
6
+ * (at your option) any later version.
7
+ *
8
+ * In addition to the permissions granted to you by the LGPL, you may combine
9
+ * or link a "work that uses the Library" with a publicly distributed version
10
+ * of this file to produce a combined library or application, then distribute
11
+ * that combined work under the terms of your choosing, with no requirement
12
+ * to comply with the obligations normally placed on you by section 4 of the
13
+ * LGPL version 3 (or the corresponding section of a later version of the LGPL
14
+ * should you choose to use a later version).
15
+ *
16
+ * This program is distributed in the hope that it will be useful,
17
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
+ * GNU Lesser General Public License for more details.
20
+ *
21
+ * You should have received a copy of the GNU Lesser General Public License
22
+ * along with this program; if not, write to the Free Software
23
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *)
24
+
25
+ (* Clflags.keep_docs := false; *)
26
+ (* default to false -check later*)
27
+ (* Clflags.keep_locs := false; *)
28
+ let setup_env () =
29
+ Env.Persistent_signature. load := Bs_cmi_load. load_cmi;
30
+ Matching. make_test_sequence_variant_constant := Polyvar_pattern_match. make_test_sequence_variant_constant;
31
+ Matching. call_switcher_variant_constant := Polyvar_pattern_match. call_switcher_variant_constant;
32
+ Matching. call_switcher_variant_constr := Polyvar_pattern_match. call_switcher_variant_constr;
33
+ Ctype. variant_is_subtype := Matching_polyfill. variant_is_subtype;
34
+ Clflags. dump_location := false ;
35
+ Config. syntax_kind := `rescript ;
36
+ #ifdef BROWSER
37
+ #else
38
+ Clflags. color := Some Always ;
39
+ #endif
40
+ (* default true
41
+ otherwise [bsc -I sc src/hello.ml ] will include current directory to search path
42
+ *)
43
+ Clflags. debug := true ;
44
+ Clflags. binary_annotations := true ;
45
+ (* Turn on [-no-alias-deps] by default -- double check *)
46
+ Oprint. out_ident := Outcome_printer_ns. out_ident;
47
+ Builtin_attributes. check_bs_attributes_inclusion := Record_attributes_check. check_bs_attributes_inclusion;
48
+ Builtin_attributes. check_duplicated_labels :=
49
+ Record_attributes_check. check_duplicated_labels;
50
+ Lambda. fld_record := Record_attributes_check. fld_record;
51
+ Lambda. fld_record_set := Record_attributes_check. fld_record_set;
52
+ Lambda. blk_record := Record_attributes_check. blk_record;
53
+ Matching. names_from_construct_pattern :=
54
+ Matching_polyfill. names_from_construct_pattern;
55
+ #ifndef RELEASE
56
+ (let root_dir =
57
+ Filename. dirname
58
+ (Filename. dirname Sys. executable_name) in
59
+ let (// ) = Filename. concat in
60
+ Clflags. include_dirs :=
61
+ (root_dir// " jscomp" // " others" ) ::
62
+ (root_dir// " jscomp" // " stdlib-406" ) ::
63
+ (root_dir// " jscomp" // " runtime" ) ::
64
+ ! Clflags. include_dirs);
65
+ #endif
66
+ Rescript_cpp. replace_directive_bool " BS" true ;
67
+ Rescript_cpp. replace_directive_bool " JS" true ;
68
+ Rescript_cpp. replace_directive_string " BS_VERSION" Bs_version. version
69
+ (* ; Switch.cut := 100*) (* tweakable but not very useful *)
70
+
71
+
72
+ let () =
73
+ at_exit (fun _ -> Format. pp_print_flush Format. err_formatter () )
0 commit comments