forked from rescript-lang/rescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.js
executable file
·69 lines (55 loc) · 2.24 KB
/
install.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
// 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 is_windows = !(os.type().indexOf('Windows') < 0)
var jscomp = path.join(__dirname, '..', 'jscomp')
var jscomp_bin = path.join(jscomp, 'bin')
var working_dir = process.cwd()
console.log("Working dir", working_dir)
var working_config = { cwd: jscomp, stdio: [0, 1, 2] }
var clean = require('./clean.js')
var build_util = require('./build_util')
if (is_windows) {
process.env.WIN32 = '1'
console.log("Installing on Windows")
fs.readdirSync(jscomp_bin).forEach(function (f) {
var last_index = f.lastIndexOf('.win')
if (last_index !== -1) {
var new_file = f.slice(0, -4) + ".exe"
build_util.poor_copy_sync(path.join(jscomp_bin, f), path.join(jscomp_bin, new_file))
}
})
child_process.execFileSync(path.join(__dirname, 'win_build.bat'), working_config)
clean.clean()
console.log("Installing")
build_util.install()
}
else {
try {
child_process.execSync('node config.js', working_config)
console.log("Build the compiler and runtime .. ")
child_process.execSync("make world", working_config)
} catch (e) {
child_process.execSync(path.join(__dirname, 'buildocaml.sh')) // TODO: sh -c ? this will be wrong if we have white space in the path
process.env.PATH = path.join(__dirname, '..', 'bin') + path.delimiter + process.env.PATH
console.log('configure again with local ocaml installed')
if(process.env.BS_TRAVIS_CI){
child_process.execSync("make travis-world-test", working_config)
} else {
child_process.execSync("make world", working_config)
}
clean.clean()
}
console.log("Installing")
child_process.execSync('make VERBOSE=true install', working_config)
}