mirror of
https://github.com/fluencelabs/wasmer
synced 2025-03-16 00:00:49 +00:00
Fix bench targets in makefile
This commit is contained in:
parent
1776b20b31
commit
91cd88fde6
20
Makefile
20
Makefile
@ -140,11 +140,15 @@ install:
|
|||||||
|
|
||||||
# Checks
|
# Checks
|
||||||
check-bench-singlepass:
|
check-bench-singlepass:
|
||||||
cargo bench --all --no-run --no-default-features --features "backend-singlepass"
|
cargo bench --all --no-run --no-default-features --features "backend-singlepass" \
|
||||||
|
--exclude wasmer-clif-backend --exclude wasmer-llvm-backend --exclude wasmer-kernel-loader
|
||||||
check-bench-clif:
|
check-bench-clif:
|
||||||
cargo bench --all --no-run --no-default-features --features "backend-cranelift"
|
cargo bench --all --no-run --no-default-features --features "backend-cranelift" \
|
||||||
|
--exclude wasmer-singlepass-backend --exclude wasmer-llvm-backend --exclude wasmer-kernel-loader \
|
||||||
|
--exclude wasmer-middleware-common-tests
|
||||||
check-bench-llvm:
|
check-bench-llvm:
|
||||||
cargo bench --all --no-run --no-default-features --features "backend-llvm"
|
cargo bench --all --no-run --no-default-features --features "backend-llvm" \
|
||||||
|
--exclude wasmer-singlepass-backend --exclude wasmer-clif-backend --exclude wasmer-kernel-loader
|
||||||
|
|
||||||
check-bench: check-bench-singlepass check-bench-llvm
|
check-bench: check-bench-singlepass check-bench-llvm
|
||||||
|
|
||||||
@ -168,11 +172,15 @@ release-llvm:
|
|||||||
cargo build --release --features backend-llvm
|
cargo build --release --features backend-llvm
|
||||||
|
|
||||||
bench-singlepass:
|
bench-singlepass:
|
||||||
cargo bench --all --no-default-features --features "backend-singlepass"
|
cargo bench --all --no-default-features --features "backend-singlepass" \
|
||||||
|
--exclude wasmer-clif-backend --exclude wasmer-llvm-backend --exclude wasmer-kernel-loader
|
||||||
bench-clif:
|
bench-clif:
|
||||||
cargo bench --all --no-default-features --features "backend-cranelift"
|
cargo bench --all --no-default-features --features "backend-cranelift" \
|
||||||
|
--exclude wasmer-singlepass-backend --exclude wasmer-llvm-backend --exclude wasmer-kernel-loader \
|
||||||
|
--exclude wasmer-middleware-common-tests
|
||||||
bench-llvm:
|
bench-llvm:
|
||||||
cargo bench --all --no-default-features --features "backend-llvm"
|
cargo bench --all --no-default-features --features "backend-llvm" \
|
||||||
|
--exclude wasmer-singlepass-backend --exclude wasmer-clif-backend --exclude wasmer-kernel-loader
|
||||||
|
|
||||||
# Build utils
|
# Build utils
|
||||||
build-install:
|
build-install:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user