File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -47,10 +47,14 @@ fn dist_client(nightly: bool) -> Result<()> {
47
47
fn dist_server ( ) -> Result < ( ) > {
48
48
if cfg ! ( target_os = "linux" ) {
49
49
std:: env:: set_var ( "CC" , "clang" ) ;
50
- run ! ( "cargo build --package rust-analyzer --bin rust-analyzer --release --target x86_64-unknown-linux-musl" ) ?;
50
+ run ! (
51
+ "cargo build --manifest-path ./crates/rust-analyzer/Cargo.toml --bin rust-analyzer --release
52
+ --target x86_64-unknown-linux-musl
53
+ --features=jemalloc"
54
+ ) ?;
51
55
run ! ( "strip ./target/x86_64-unknown-linux-musl/release/rust-analyzer" ) ?;
52
56
} else {
53
- run ! ( "cargo build --package rust-analyzer --bin rust-analyzer --release" ) ?;
57
+ run ! ( "cargo build --manifest-path ./crates/ rust-analyzer/Cargo.toml --bin rust-analyzer --release" ) ?;
54
58
}
55
59
56
60
let ( src, dst) = if cfg ! ( target_os = "linux" ) {
You can’t perform that action at this time.
0 commit comments