forked from WizTeam/WizNoteLite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild_sqlite3.js
91 lines (79 loc) · 1.82 KB
/
build_sqlite3.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
const childProcess = require('child_process');
const path = require('path');
const os = require('os');
const electronVersion = process.versions.electron;
console.log(`electron version: ${electronVersion}`);
const spawn = childProcess.spawn;
const buildIA32 = process.argv.indexOf('--ia32') !== -1;
class OutputData {
constructor() {
this.data = '';
}
add(o) {
this.data += o;
for (;;) {
const index = this.data.indexOf('\n');
if (index === -1) {
break;
}
const sub = this.data.substr(0, index);
console.log(sub);
this.data = this.data.substr(index + 1);
}
}
end() {
console.log(this.data);
}
}
const output = new OutputData();
const errorOutput = new OutputData();
function exec(app, args, options, callback) {
const command = spawn(app, args, options);
command.stdout.on('data', (data) => {
output.add(data);
});
command.stderr.on('data', (data) => {
errorOutput.add(data);
});
command.on('close', (code) => {
output.end();
errorOutput.end();
//
console.log(`child process exited with code ${code}`);
callback(code);
});
}
const cwd = path.join(__dirname, '../src/main/sqlite3');
const env = Object.assign(process.env, {
HOME: path.join(os.homedir(), '.electron-gyp'),
});
if (process.platform === 'win32') {
const params = [
`/C`,
`node-gyp`,
`--target=${electronVersion}`,
`rebuild`,
'--dist-url=https://electronjs.org/headers',
];
if (buildIA32) {
params.push('--arch=ia32');
console.log('build for ia32');
}
exec(`cmd.exe`, params, {
cwd,
env,
}, () => {
process.exit(0);
});
} else {
exec(`node-gyp`, [
`--target=${electronVersion}`,
`rebuild`,
'--dist-url=https://electronjs.org/headers',
], {
cwd,
env,
}, () => {
process.exit(0);
});
}