Define VISIBILITY_HIDDEN when compiling objects
Apparently compiler-rt passed this and we just forgot to. Fixes visibility of some symbols on 32-bit Linux.
This commit is contained in:
parent
40637abb5a
commit
24d49071e5
1
build.rs
1
build.rs
@ -78,6 +78,7 @@ fn main() {
|
|||||||
cfg.flag("-fvisibility=hidden");
|
cfg.flag("-fvisibility=hidden");
|
||||||
cfg.flag("-fomit-frame-pointer");
|
cfg.flag("-fomit-frame-pointer");
|
||||||
cfg.flag("-ffreestanding");
|
cfg.flag("-ffreestanding");
|
||||||
|
cfg.define("VISIBILITY_HIDDEN", None);
|
||||||
}
|
}
|
||||||
|
|
||||||
// NOTE Most of the ARM intrinsics are written in assembly. Tell gcc which arch we are going to
|
// NOTE Most of the ARM intrinsics are written in assembly. Tell gcc which arch we are going to
|
||||||
|
Loading…
Reference in New Issue
Block a user