forked from rescript-lang/rescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
executable file
·170 lines (145 loc) · 5.19 KB
/
config.js
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
// For Windows, we distribute a prebuilt bsc.exe
// To build on windows, we still need figure out constructing config.ml
// from existing compiler
// For other OSes, we detect
// if there is other compiler installed and the version matches,
// we get the config.ml from existing OCaml compiler and build `whole_compiler`
// Otherwise, we build the compiler shipped with Buckle and use the
// old compiler.ml
var child_process = require('child_process')
var process = require('process')
var fs = require('fs')
var path = require('path')
var os = require('os')
var jscomp = path.join(__dirname,'..','jscomp')
var working_dir = process.cwd()
console.log("Working dir", working_dir)
// need check which variables exist when we update compiler
var map = {
LIBDIR : "standard_library_default",
BYTERUN : "standard_runtime",
CCOMPTYPE : "ccomp_type",
BYTECC : "bytecomp_c_compiler",
BYTECCLIBS : "bytecomp_c_libraries",
NATIVECC : "native_c_compiler",
NATIVECCLIBS : "native_c_libraries",
PACKLD : "native_pack_linker",
RANLIBCMD : "ranlib",
ARCMD : "ar",
CC_PROFILE : "cc_profile",
MKDLL : "mkdll", // undefined
MKEXE : "mkexe", // undefined
MKMAINDLL : "mkmaindll", // undefined TODO: upstream to print it too
ARCH : "architecture",
MODEL : "model",
SYSTEM : "system",
ASM : "asm",
ASM_CFI_SUPPORTED : "asm_cfi_supported", // boolean
WITH_FRAME_POINTERS : "with_frame_pointers", // boolean
EXT_OBJ : "ext_obj",
EXT_ASM : "ext_asm",
EXT_LIB : "ext_lib",
EXT_DLL : "ext_lib",
HOST : "host",
TARGET : "target",
SYSTHREAD_SUPPORT : "systhread_supported" // boolean
}
var is_windows = ! (os.type().indexOf('Windows') < 0)
process.env.BS_RELEASE_BUILD = 1
delete process.env.OCAMLPARAM // stdlib is already compiled using -bin-annot
// delete process.env.OCAMLLIB // this will not work on Windows
// delete process.env.CAMLLIB
process.env.OCAMLRUNPARAM = 'b'
// return False if it does not exist otherwise the map
function getConfigOutput(){
try{
var ocamlc_config ;
if(is_windows){
ocamlc_config = "ocamlc.opt.exe -config"
} else {
ocamlc_config = "ocamlc.opt -config"
}
var config_output = child_process.execSync(ocamlc_config, {encoding: 'utf8'})
console.log("config_output:\n", config_output);
var keyvalues =
config_output
.split('\n')
.filter(function(x){return x})
.map(function(x){
var index = x.indexOf(":")
var key = x.substr(0,index);
var value = x.substr(index+1);
return [key.trim(), value.trim()]
}
)
console.log("keyvalues",keyvalues)
return keyvalues.reduce(function(acc,curr){
acc[curr[0]] = curr[1]
return acc
},{})
}
catch(e){
console.log("configuire failure")
return false
}
}
function patch_config(config_map){
var whole_compiler_config = path.join(jscomp, 'bin', 'config_whole_compiler.ml')
var content = fs.readFileSync(whole_compiler_config, 'utf8')
var generated = content.replace(/%%(\w+)%%/g,
function (_whole, p0) {
if (p0 === "LIBDIR") {
//Escape
var origin_path = path.join(working_dir, 'lib', 'ocaml')
return JSON.stringify(origin_path).slice(1, -1)
}
else {
return config_map[map[p0]]
}
})
fs.writeFileSync(whole_compiler_config, generated, 'utf8')
}
function install_bsc() {
if (is_windows) {
process.env.WIN32 = '1'
}
var working_config = { cwd: jscomp, stdio: [0, 1, 2] }
console.log("Build the compiler and runtime .. ")
child_process.execSync("make dist-world", working_config)
console.log("Installing")
child_process.execSync('make VERBOSE=true install', working_config)
}
/*
function install_built_in_compiler(){
var env = process.env;
env.BS_RELEASE_BUILD = 1;
// env.OCAMLPARAM='_,bin-annot=1'
var ocaml_build_dir;
if(env.BS_TRAVIS_CI){
ocaml_build_dir = path.join(__dirname,'..','ocaml')
child_process.execSync('git submodule update --init --recursive')
}else{
ocaml_build_dir = path.join(__dirname,'..','ocaml_src')
ocaml_tar = path.join(__dirname,'..','ocaml.tar.gz')
if(fs.existsSync(ocaml_tar)){
console.log('ocaml.tar.gz already exists')
child_process.execSync("rm -rf " + ocaml_build_dir + " && mkdir -p " + ocaml_build_dir + )
}
}
}
*/
var config_map = getConfigOutput()
console.log('config_map',config_map)
if(config_map && config_map.version.indexOf('4.02.3') >= 0 ){
patch_config(config_map);
install_bsc()
}else{
// No compiler existed
child_process.execSync(path.join(__dirname,'buildocaml.sh'))
process.env.PATH = path.join(__dirname,'..','bin') + path.delimiter + process.env.PATH
console.log('configure again with local ocaml installed')
config_map = getConfigOutput()
console.log('config_map', config_map)
patch_config(config_map)
child_process.execSync(path.join(__dirname,'postinstall.sh'))
}