@@ -1061,7 +1061,7 @@ export async function run(options: any, loglog: any): Promise<string> {
10611061 const dothemath = is64bit ( ) ;
10621062 let make : child_process . ChildProcess = null ;
10631063
1064- if ( isPlatform ( options , Platform . Linux ) || isPlatform ( options , Platform . Wasm ) || isPlatform ( options , Platform . Pi ) || isPlatform ( options , Platform . Emscripten ) ) {
1064+ if ( isPlatform ( options , Platform . Linux ) || isPlatform ( options , Platform . Wasm ) || isPlatform ( options , Platform . Pi ) || isPlatform ( options , Platform . Emscripten ) || isPlatform ( options , Platform . Kompjuta ) ) {
10651065 make = child_process . spawn ( 'ninja' , [ ] , { cwd : path . join ( options . to , options . buildPath ) } ) ;
10661066 }
10671067 else if ( isPlatform ( options , Platform . FreeBSD ) ) {
@@ -1200,7 +1200,7 @@ export async function run(options: any, loglog: any): Promise<string> {
12001200 throw 'Run Error (code ' + err . code + ')' ;
12011201 }
12021202 else {
1203- if ( isPlatform ( options , Platform . Linux ) || isPlatform ( options , Platform . Wasm ) || isPlatform ( options , Platform . Pi ) || isPlatform ( options , Platform . Emscripten ) ) {
1203+ if ( isPlatform ( options , Platform . Linux ) || isPlatform ( options , Platform . Wasm ) || isPlatform ( options , Platform . Pi ) || isPlatform ( options , Platform . Emscripten ) || isPlatform ( options , Platform . Kompjuta ) ) {
12041204 log . error ( 'Ninja could not be run, falling back to make.' ) ;
12051205 make = child_process . spawn ( 'make' , [ '-j' , Options . cores . toString ( ) ] , { cwd : path . join ( options . to , options . buildPath ) } ) ;
12061206 try {
0 commit comments