mirror of
https://github.com/fluencelabs/wasmer
synced 2025-04-25 02:12:13 +00:00
Create releases with dynasm
This commit is contained in:
parent
a4e1051c25
commit
e5fc3b49b8
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -1,3 +1,5 @@
|
|||||||
|
# This file is automatically @generated by Cargo.
|
||||||
|
# It is not intended for manual editing.
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "MacTypes-sys"
|
name = "MacTypes-sys"
|
||||||
version = "2.1.0"
|
version = "2.1.0"
|
||||||
|
@ -44,7 +44,7 @@ default = ["fast-tests", "wasi"]
|
|||||||
debug = ["wasmer-clif-backend/debug", "wasmer-runtime-core/debug"]
|
debug = ["wasmer-clif-backend/debug", "wasmer-runtime-core/debug"]
|
||||||
# This feature will allow cargo test to run much faster
|
# This feature will allow cargo test to run much faster
|
||||||
fast-tests = []
|
fast-tests = []
|
||||||
llvm = ["wasmer-llvm-backend"]
|
llvm = ["wasmer-llvm-backend", "wasmer-runtime/llvm"]
|
||||||
dynasm = ["wasmer-dynasm-backend"]
|
dynasm = ["wasmer-dynasm-backend", "wasmer-runtime/dynasm"]
|
||||||
wasi = ["wasmer-wasi"]
|
wasi = ["wasmer-wasi"]
|
||||||
vfs = ["wasmer-runtime-abi"]
|
vfs = ["wasmer-runtime-abi"]
|
||||||
|
9
Makefile
9
Makefile
@ -51,6 +51,15 @@ test-emscripten:
|
|||||||
test-emscripten-nightly:
|
test-emscripten-nightly:
|
||||||
cargo test --manifest-path lib/emscripten/Cargo.toml --features dynasm -- --test-threads=1 $(runargs)
|
cargo test --manifest-path lib/emscripten/Cargo.toml --features dynasm -- --test-threads=1 $(runargs)
|
||||||
|
|
||||||
|
dynasm-debug-release:
|
||||||
|
cargo +nightly build --features "dynasm debug" --release
|
||||||
|
|
||||||
|
dynasm-release:
|
||||||
|
cargo +nightly build --features "dynasm" --release
|
||||||
|
|
||||||
|
dynasm-build:
|
||||||
|
cargo +nightly build --features "dynasm debug"
|
||||||
|
|
||||||
release:
|
release:
|
||||||
# If you are in OS-X, you will need mingw-w64 for cross compiling to windows
|
# If you are in OS-X, you will need mingw-w64 for cross compiling to windows
|
||||||
# brew install mingw-w64
|
# brew install mingw-w64
|
||||||
|
Loading…
x
Reference in New Issue
Block a user