diff options
Diffstat (limited to 'xtask/src')
-rw-r--r-- | xtask/src/dist.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/xtask/src/dist.rs b/xtask/src/dist.rs index 7f2c51223..d42faa122 100644 --- a/xtask/src/dist.rs +++ b/xtask/src/dist.rs | |||
@@ -50,7 +50,9 @@ fn dist_server() -> Result<()> { | |||
50 | run!( | 50 | run!( |
51 | "cargo build --manifest-path ./crates/rust-analyzer/Cargo.toml --bin rust-analyzer --release | 51 | "cargo build --manifest-path ./crates/rust-analyzer/Cargo.toml --bin rust-analyzer --release |
52 | --target x86_64-unknown-linux-musl | 52 | --target x86_64-unknown-linux-musl |
53 | --features=jemalloc" | 53 | " |
54 | // We'd want to add, but that requires setting the right linker somehow | ||
55 | // --features=jemalloc | ||
54 | )?; | 56 | )?; |
55 | run!("strip ./target/x86_64-unknown-linux-musl/release/rust-analyzer")?; | 57 | run!("strip ./target/x86_64-unknown-linux-musl/release/rust-analyzer")?; |
56 | } else { | 58 | } else { |