mirror of
https://github.com/girlbossceo/hardened_malloc-rs.git
synced 2025-04-29 14:19:25 -04:00
fix typo breaking static builds
Signed-off-by: strawberry <strawberry@pupbrain.dev>
This commit is contained in:
parent
f740d901aa
commit
7f4b5c097d
1 changed files with 3 additions and 3 deletions
4
build.rs
4
build.rs
|
@ -105,10 +105,10 @@ fn main() {
|
|||
"default"
|
||||
};
|
||||
|
||||
let build_args: Vec<String> = if cfg!(features = "clang") && cfg!(features = "static") {
|
||||
let build_args: Vec<String> = if cfg!(feature = "static") {
|
||||
vec![
|
||||
format!("VARIANT={}", variant),
|
||||
format!("CONFIG_STATIC=true"), // only intended to be used by clang
|
||||
format!("CONFIG_STATIC=true"),
|
||||
format!("V={}", "1"), // verbose (?)
|
||||
format!("OUT={}", &out_dir),
|
||||
format!("CC={}", compiler),
|
||||
|
|
Loading…
Add table
Reference in a new issue