Disable jemalloc, it doesn't work out of the box with musl

This commit is contained in:
Aleksey Kladov 2020-03-09 13:55:14 +01:00
parent 07051c0607
commit 5770fa71fa

View file

@ -50,7 +50,9 @@ fn dist_server() -> Result<()> {
run!(
"cargo build --manifest-path ./crates/rust-analyzer/Cargo.toml --bin rust-analyzer --release
--target x86_64-unknown-linux-musl
--features=jemalloc"
"
// We'd want to add, but that requires setting the right linker somehow
// --features=jemalloc
)?;
run!("strip ./target/x86_64-unknown-linux-musl/release/rust-analyzer")?;
} else {