From bb9f95b2f843d031d84bcc91c67a27c390856c91 Mon Sep 17 00:00:00 2001 From: Syrus Akbary Date: Tue, 23 Aug 2022 15:04:55 +0200 Subject: [PATCH] Revert "Lower libwasmer headless size" --- Makefile | 4 ++-- lib/c-api/Cargo.toml | 2 +- lib/wasi/Cargo.toml | 3 +++ 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 00d35e272..810677016 100644 --- a/Makefile +++ b/Makefile @@ -389,7 +389,7 @@ build-wasmer-headless-minimal: RUSTFLAGS += -C panic=abort build-wasmer-headless-minimal: RUSTFLAGS="${RUSTFLAGS}" xargo build --target $(HOST_TARGET) --release --manifest-path=lib/cli/Cargo.toml --no-default-features --features headless-minimal --bin wasmer-headless ifeq ($(IS_DARWIN), 1) - strip target/$(HOST_TARGET)/release/wasmer-headless + strip -u target/$(HOST_TARGET)/release/wasmer-headless else ifeq ($(IS_WINDOWS), 1) strip --strip-unneeded target/$(HOST_TARGET)/release/wasmer-headless.exe else @@ -455,7 +455,7 @@ build-capi-llvm-universal: capi-setup # Headless (we include the minimal to be able to run) build-capi-headless: capi-setup - RUSTFLAGS="${RUSTFLAGS} -C panic=abort -C link-dead-code -C lto -O -C embed-bitcode=yes" $(CARGO_BINARY) build $(CARGO_TARGET) --manifest-path lib/c-api/Cargo.toml --release \ + RUSTFLAGS="${RUSTFLAGS} -C panic=abort" $(CARGO_BINARY) build $(CARGO_TARGET) --manifest-path lib/c-api/Cargo.toml --release \ --no-default-features --features compiler-headless,wasi build-capi-headless-ios: capi-setup diff --git a/lib/c-api/Cargo.toml b/lib/c-api/Cargo.toml index 072da4e3d..d275c0fff 100644 --- a/lib/c-api/Cargo.toml +++ b/lib/c-api/Cargo.toml @@ -17,7 +17,7 @@ edition = "2018" # a conflict with the existing `wasmer` crate, see below. name = "wasmer" # ##lib.name## # ^ DO NOT REMOVE, it's used the `Makefile`, see `build-docs-capi`. -crate-type = ["staticlib", "cdylib"] #"cdylib", "rlib", "staticlib"] +crate-type = ["cdylib", "rlib", "staticlib"] [dependencies] # We rename `wasmer` to `wasmer-api` to avoid the conflict with this diff --git a/lib/wasi/Cargo.toml b/lib/wasi/Cargo.toml index 798d13046..bfa746e29 100644 --- a/lib/wasi/Cargo.toml +++ b/lib/wasi/Cargo.toml @@ -10,6 +10,9 @@ license = "MIT" readme = "README.md" edition = "2018" +[lib] +crate-type = ["cdylib", "rlib"] + [dependencies] cfg-if = "1.0" thiserror = "1"