@@ -14,17 +14,21 @@ BUILD_SOURCES = [
14
14
FULL_EXTS = "bigdecimal,cgi/escape,continuation,coverage,date,dbm,digest/bubblebabble,digest,digest/md5,digest/rmd160,digest/sha1,digest/sha2,etc,fcntl,fiber,gdbm,json,json/generator,json/parser,nkf,objspace,pathname,psych,racc/cparse,rbconfig/sizeof,ripper,stringio,strscan,monitor"
15
15
16
16
BUILD_PROFILES = {
17
- "minimal" => { debug : false , default_exts : "" , user_exts : [ ] } ,
18
- "minimal-js" => { debug : false , default_exts : "" , user_exts : [ "js" , "witapi" ] } ,
19
- "full" => { debug : false , default_exts : FULL_EXTS , user_exts : [ ] } ,
20
- "full-js" => { debug : false , default_exts : FULL_EXTS , user_exts : [ "js" , "witapi" ] } ,
17
+ "minimal" => { debug : false , default_exts : "" , user_exts : [ ] } ,
18
+ "minimal-js" => { debug : false , default_exts : "" , user_exts : [ "js" , "witapi" ] } ,
19
+ "minimal-js-debug" => { debug : true , default_exts : "" , user_exts : [ "js" , "witapi" ] } ,
20
+ "full" => { debug : false , default_exts : FULL_EXTS , user_exts : [ ] } ,
21
+ "full-js" => { debug : false , default_exts : FULL_EXTS , user_exts : [ "js" , "witapi" ] } ,
22
+ "full-js-debug" => { debug : true , default_exts : FULL_EXTS , user_exts : [ "js" , "witapi" ] } ,
21
23
}
22
24
23
25
BUILDS = [
24
26
{ src : "head" , target : "wasm32-unknown-wasi" , profile : "minimal" } ,
25
27
{ src : "head" , target : "wasm32-unknown-wasi" , profile : "minimal-js" } ,
28
+ { src : "head" , target : "wasm32-unknown-wasi" , profile : "minimal-js-debug" } ,
26
29
{ src : "head" , target : "wasm32-unknown-wasi" , profile : "full" } ,
27
30
{ src : "head" , target : "wasm32-unknown-wasi" , profile : "full-js" } ,
31
+ { src : "head" , target : "wasm32-unknown-wasi" , profile : "full-js-debug" } ,
28
32
{ src : "head" , target : "wasm32-unknown-emscripten" , profile : "minimal" } ,
29
33
{ src : "head" , target : "wasm32-unknown-emscripten" , profile : "full" } ,
30
34
]
0 commit comments