-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #40 from byeongkeunahn/main
Shorten the generated code with `./release-rs.sh --features short`
- Loading branch information
Showing
37 changed files
with
873 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
{ | ||
"arch": "x86_64", | ||
"cpu": "x86-64", | ||
"crt-objects-fallback": "false", | ||
"crt-static-respected": true, | ||
"data-layout": "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128", | ||
"dynamic-linking": true, | ||
"eh-frame-header": false, | ||
"env": "gnu", | ||
"has-rpath": true, | ||
"has-thread-local": true, | ||
"is-builtin": false, | ||
"linker-flavor": "gnu-cc", | ||
"llvm-target": "x86_64-unknown-linux-gnu", | ||
"max-atomic-width": 64, | ||
"os": "linux", | ||
"plt-by-default": false, | ||
"position-independent-executables": true, | ||
"pre-link-args": { | ||
"gnu-cc": [ | ||
"-m64" | ||
], | ||
"gnu-lld-cc": [ | ||
"-m64" | ||
] | ||
}, | ||
"relro-level": "off", | ||
"stack-probes": { | ||
"kind": "none" | ||
}, | ||
"static-position-independent-executables": true, | ||
"supported-sanitizers": [ | ||
"address", | ||
"cfi", | ||
"leak", | ||
"memory", | ||
"thread", | ||
"safestack" | ||
], | ||
"supported-split-debuginfo": [ | ||
"packed", | ||
"unpacked", | ||
"off" | ||
], | ||
"supports-xray": true, | ||
"target-family": [ | ||
"unix" | ||
], | ||
"target-pointer-width": "64" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
./release-rs.sh --features short |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
./release.sh --features short |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
>&2 echo "Building project for target wasm32-unknown-unknown, language JavaScript, build mode Release" | ||
cargo +nightly build --target wasm32-unknown-unknown --bin=basm-submit --release "$@" | ||
python scripts/wasm-gen.py scripts/wasm-template.html | ||
python3 scripts/wasm-gen.py scripts/wasm-template.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
>&2 echo "Building project for target wasm32-unknown-unknown, language JavaScript, build mode Release" | ||
cargo +nightly build --target wasm32-unknown-unknown --bin=basm-submit --release "$@" | ||
python scripts/wasm-gen.py scripts/wasm-template.js | ||
python3 scripts/wasm-gen.py scripts/wasm-template.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.