We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d99c6b commit e81ef23Copy full SHA for e81ef23
phper/build.rs
@@ -12,6 +12,13 @@ use phper_sys::*;
12
13
fn main() {
14
phper_build::register_configures();
15
+
16
+ #[cfg(target_os = "macos")]
17
+ {
18
+ println!("cargo:rustc-cdylib-link-arg=-undefined");
19
+ println!("cargo:rustc-cdylib-link-arg=dynamic_lookup");
20
+ }
21
22
assert_eq!(
23
USING_ZTS, 0,
24
"PHPER not support ZTS mode now (php built with `--enable-maintainer-zts` or \
0 commit comments