You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+16
Original file line number
Diff line number
Diff line change
@@ -78,6 +78,18 @@ The framework that allows us to write PHP extensions using pure and safe Rust wh
78
78
}
79
79
```
80
80
81
+
1. Create the `build.rs` ( Adapting MacOS ).
82
+
83
+
```rust,no_run
84
+
fn main() {
85
+
#[cfg(target_os = "macos")]
86
+
{
87
+
println!("cargo:rustc-link-arg=-undefined");
88
+
println!("cargo:rustc-link-arg=dynamic_lookup");
89
+
}
90
+
}
91
+
```
92
+
81
93
1. Write you owned extension logic in `lib.rs`.
82
94
83
95
```rust
@@ -125,6 +137,10 @@ The framework that allows us to write PHP extensions using pure and safe Rust wh
125
137
126
138
See [examples](https://github.com/phper-framework/phper/tree/master/examples).
127
139
140
+
## The projects using PHPER
141
+
142
+
-[apache/skywalking-php](https://github.com/apache/skywalking-php) - The PHP Agent for Apache SkyWalking, which provides the native tracing abilities for PHP project.
0 commit comments