@@ -9,7 +9,7 @@ function program(programName, target, base, input) {
99 BASE : base ,
1010 } ,
1111 output : builddir (
12- `bin/${ target } /${ programName } ${ base . endsWith ( ".exe" ) ? ".exe" : "" } `
12+ `bin/${ target } /${ programName } ${ base . endsWith ( ".exe" ) ? ".exe" : "" } ` ,
1313 ) ,
1414 } ) ;
1515}
@@ -20,33 +20,33 @@ program(
2020 "yavascript" ,
2121 "x86_64-apple-darwin" ,
2222 "qjsbootstrap-bytecode" ,
23- "dist/bytecode/index-x86_64.bin"
23+ "dist/bytecode/index-x86_64.bin" ,
2424) ;
2525program (
2626 "yavascript" ,
2727 "x86_64-unknown-linux-gnu" ,
2828 "qjsbootstrap-bytecode" ,
29- "dist/bytecode/index-x86_64.bin"
29+ "dist/bytecode/index-x86_64.bin" ,
3030) ;
3131program (
3232 "yavascript" ,
3333 "x86_64-unknown-linux-musl" ,
3434 "qjsbootstrap-bytecode" ,
35- "dist/bytecode/index-x86_64.bin"
35+ "dist/bytecode/index-x86_64.bin" ,
3636) ;
3737program (
3838 "yavascript" ,
3939 "x86_64-unknown-linux-static" ,
4040 "qjsbootstrap-bytecode" ,
41- "dist/bytecode/index-x86_64.bin"
41+ "dist/bytecode/index-x86_64.bin" ,
4242) ;
4343
4444// bytecode stuff wasn't working properly on windows; endianness?
4545program (
4646 "yavascript" ,
4747 "x86_64-pc-windows-static" ,
4848 "qjsbootstrap.exe" ,
49- "dist/bundles/index-x86_64.js"
49+ "dist/bundles/index-x86_64.js" ,
5050) ;
5151
5252// --- aarch64 binaries ---
@@ -55,81 +55,81 @@ program(
5555 "yavascript" ,
5656 "aarch64-apple-darwin" ,
5757 "qjsbootstrap-bytecode" ,
58- "dist/bytecode/index-arm64.bin"
58+ "dist/bytecode/index-arm64.bin" ,
5959) ;
6060program (
6161 "yavascript" ,
6262 "aarch64-unknown-linux-gnu" ,
6363 "qjsbootstrap-bytecode" ,
64- "dist/bytecode/index-arm64.bin"
64+ "dist/bytecode/index-arm64.bin" ,
6565) ;
6666program (
6767 "yavascript" ,
6868 "aarch64-unknown-linux-musl" ,
6969 "qjsbootstrap-bytecode" ,
70- "dist/bytecode/index-arm64.bin"
70+ "dist/bytecode/index-arm64.bin" ,
7171) ;
7272program (
7373 "yavascript" ,
7474 "aarch64-unknown-linux-static" ,
7575 "qjsbootstrap-bytecode" ,
76- "dist/bytecode/index-arm64.bin"
76+ "dist/bytecode/index-arm64.bin" ,
7777) ;
7878
7979// --- yavascript-bootstrap ---
8080program (
8181 "yavascript-bootstrap" ,
8282 "x86_64-apple-darwin" ,
8383 "qjsbootstrap" ,
84- "dist/bundles/primordials-x86_64.js"
84+ "dist/bundles/primordials-x86_64.js" ,
8585) ;
8686program (
8787 "yavascript-bootstrap" ,
8888 "x86_64-unknown-linux-gnu" ,
8989 "qjsbootstrap" ,
90- "dist/bundles/primordials-x86_64.js"
90+ "dist/bundles/primordials-x86_64.js" ,
9191) ;
9292program (
9393 "yavascript-bootstrap" ,
9494 "x86_64-unknown-linux-musl" ,
9595 "qjsbootstrap" ,
96- "dist/bundles/primordials-x86_64.js"
96+ "dist/bundles/primordials-x86_64.js" ,
9797) ;
9898program (
9999 "yavascript-bootstrap" ,
100100 "x86_64-unknown-linux-static" ,
101101 "qjsbootstrap" ,
102- "dist/bundles/primordials-x86_64.js"
102+ "dist/bundles/primordials-x86_64.js" ,
103103) ;
104104program (
105105 "yavascript-bootstrap" ,
106106 "x86_64-pc-windows-static" ,
107107 "qjsbootstrap.exe" ,
108- "dist/bundles/primordials-x86_64.js"
108+ "dist/bundles/primordials-x86_64.js" ,
109109) ;
110110program (
111111 "yavascript-bootstrap" ,
112112 "aarch64-apple-darwin" ,
113113 "qjsbootstrap" ,
114- "dist/bundles/primordials-arm64.js"
114+ "dist/bundles/primordials-arm64.js" ,
115115) ;
116116program (
117117 "yavascript-bootstrap" ,
118118 "aarch64-unknown-linux-gnu" ,
119119 "qjsbootstrap" ,
120- "dist/bundles/primordials-arm64.js"
120+ "dist/bundles/primordials-arm64.js" ,
121121) ;
122122program (
123123 "yavascript-bootstrap" ,
124124 "aarch64-unknown-linux-musl" ,
125125 "qjsbootstrap" ,
126- "dist/bundles/primordials-arm64.js"
126+ "dist/bundles/primordials-arm64.js" ,
127127) ;
128128program (
129129 "yavascript-bootstrap" ,
130130 "aarch64-unknown-linux-static" ,
131131 "qjsbootstrap" ,
132- "dist/bundles/primordials-arm64.js"
132+ "dist/bundles/primordials-arm64.js" ,
133133) ;
134134
135135const qjsPlatform = require ( "@suchipi/quickjs" ) . identifyCurrentPlatform ( ) ;
@@ -144,7 +144,7 @@ build({
144144 rule : "copy" ,
145145 inputs : [
146146 builddir (
147- `bin/${ qjsPlatform . name } /yavascript-bootstrap${ qjsPlatform . programSuffix } `
147+ `bin/${ qjsPlatform . name } /yavascript-bootstrap${ qjsPlatform . programSuffix } ` ,
148148 ) ,
149149 ] ,
150150 output : builddir ( "yavascript-bootstrap" + qjsPlatform . programSuffix ) ,
0 commit comments