mirror of
https://github.com/fluencelabs/wasmer
synced 2025-04-24 18:02: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]]
|
||||
name = "MacTypes-sys"
|
||||
version = "2.1.0"
|
||||
|
@ -44,7 +44,7 @@ default = ["fast-tests", "wasi"]
|
||||
debug = ["wasmer-clif-backend/debug", "wasmer-runtime-core/debug"]
|
||||
# This feature will allow cargo test to run much faster
|
||||
fast-tests = []
|
||||
llvm = ["wasmer-llvm-backend"]
|
||||
dynasm = ["wasmer-dynasm-backend"]
|
||||
llvm = ["wasmer-llvm-backend", "wasmer-runtime/llvm"]
|
||||
dynasm = ["wasmer-dynasm-backend", "wasmer-runtime/dynasm"]
|
||||
wasi = ["wasmer-wasi"]
|
||||
vfs = ["wasmer-runtime-abi"]
|
||||
|
9
Makefile
9
Makefile
@ -51,6 +51,15 @@ test-emscripten:
|
||||
test-emscripten-nightly:
|
||||
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:
|
||||
# If you are in OS-X, you will need mingw-w64 for cross compiling to windows
|
||||
# brew install mingw-w64
|
||||
|
Loading…
x
Reference in New Issue
Block a user