diff options
author | bloodstalker <thabogre@gmail.com> | 2018-06-01 08:07:09 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2018-06-01 08:07:09 +0000 |
commit | c3531e8e096cf5f1ecc723acf602e157995267da (patch) | |
tree | 97eabe759383eb7b876fa15cd7cd42c270e6ef07 /bruiser/wasm.sh | |
parent | added test files for the wasm linker. added two scripts to extra-tools (diff) | |
download | mutator-c3531e8e096cf5f1ecc723acf602e157995267da.tar.gz mutator-c3531e8e096cf5f1ecc723acf602e157995267da.zip |
fixed a bug with default.lua. added the blueprint for the wasm interface to bruiser.
Diffstat (limited to '')
-rwxr-xr-x | bruiser/wasm.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/bruiser/wasm.sh b/bruiser/wasm.sh new file mode 100755 index 0000000..d8d4990 --- /dev/null +++ b/bruiser/wasm.sh @@ -0,0 +1,7 @@ +#!/bin/bash +cd $(dirname $0) +gcc wasm.c -o wasme +./wasme +rm ./wasme + + |