Skip to content

Commit 59766ed

Browse files
committed
support macos
1 parent 06e1601 commit 59766ed

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

build.js

+4
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ const targets = ['src/processor/minidump_stackwalk', 'src/processor/minidump_dum
1818
if (process.platform === 'linux') {
1919
targets.push('src/tools/linux/dump_syms/dump_syms')
2020
}
21+
if (process.platform === 'darwin') {
22+
targets.push('src/tools/mac/dump_syms/dump_syms')
23+
}
24+
2125
spawnSync('make', ['-C', buildDir, '-j', require('os').cpus().length, ...targets], {
2226
stdio: 'inherit'
2327
})

0 commit comments

Comments
 (0)