File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
sandboxed-function/macro-utils Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 77
88# constants
99# the functions to compile
10- FUNCTIONS=" basic matmul matmac busy"
10+ FUNCTIONS=" basic matmul matmac busy fan_out_nolibc handle_nolibc template_nolibc "
1111BIN_DIR=bin
1212FUNCTION_SDK_HEAP_SIZE=2048 # in 64KB pages, = 128MB
1313FUNCTION_WASM_MIN_HEAP_SIZE=2 # in pages
Original file line number Diff line number Diff line change 3737mkdir -p ../wasm-compiler/bin/wasm
3838for d in ./* ; do
3939 if [ -d " $d " ]; then
40- if [ " $d " != " ./CMakeFiles" ] && [ " $d " != " ./functionInterface" ]; then
40+ if [ " $d " == " ./example_app_nolibc" ]; then
41+ echo " TEST PRINT"
42+ cp " $d /template_nolibc" " ../wasm-compiler/bin/wasm/template_nolibc.wasm"
43+ cp " $d /handle_nolibc" " ../wasm-compiler/bin/wasm/handle_nolibc.wasm"
44+ cp " $d /fan_out_nolibc" " ../wasm-compiler/bin/wasm/fan_out_nolibc.wasm"
45+ elif [ " $d " != " ./CMakeFiles" ] && [ " $d " != " ./functionInterface" ]; then
4146 cp " $d /$d " " ../wasm-compiler/bin/wasm/$d .wasm"
4247 fi
4348 fi
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ edition = "2021"
77crate-type = [" proc-macro" ]
88
99[dependencies ]
10- proc-macro2 = " 1.0.69 "
10+ proc-macro2 = " 1.0.86 "
1111syn = " 2.0.38"
1212sandbox-generated = { path = " ../../rWasm/generated" }
1313konst = " 0.3.6"
You can’t perform that action at this time.
0 commit comments