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 042d044 commit 85d1057Copy full SHA for 85d1057
.github/workflows/ci.yml
@@ -34,7 +34,7 @@ jobs:
34
uses: actions/checkout@v2
35
36
- name: Install libclang
37
- run: sudo apt-get install -y libclang-10-dev
+ run: sudo apt-get install -y llvm-10-dev libclang-10-dev
38
39
- name: Setup PHP
40
uses: shivammathur/setup-php@v2
README.md
@@ -53,7 +53,7 @@ A library that allows us to write PHP extensions using pure Rust and using safe
53
54
```bash
55
# If you are using debian like linux system:
56
-sudo apt install libclang-10-dev php-cli
+sudo apt install llvm-10-dev libclang-10-dev php-cli
57
```
58
59
2. Create you cargo project, suppose your application is called myapp.
0 commit comments