Skip to content
This repository was archived by the owner on Mar 17, 2021. It is now read-only.

Commit 1043a00

Browse files
authored
Merge pull request #12 from krrutkow/master
Updates for Julia 1.5
2 parents 7c82504 + 4e3004e commit 1043a00

File tree

5 files changed

+14367
-9
lines changed

5 files changed

+14367
-9
lines changed

.github/workflows/CI.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
version:
13-
- '1.3'
14-
- '1.4'
13+
- '1.5'
1514
# - 'nightly'
1615
os:
1716
- ubuntu-latest

Project.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
name = "CBindingGen"
22
uuid = "308a6e0c-0495-45e1-b1ab-67fb455a0d77"
33
authors = ["Keith Rutkowski <[email protected]>"]
4-
version = "0.3.1"
4+
version = "0.4.0"
55

66
[deps]
77
CBinding = "d43a6710-96b8-4a2d-833c-c424785e5374"
8+
Clang_jll = "0ee61d77-7f21-5576-8119-9fcc46b10100"
89
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
9-
LLVM_jll = "86de99a1-58d6-5da7-8064-bd56ce2e322c"
1010
Markdown = "d6f4376e-aef5-505a-96c1-9c027394607a"
1111

1212
[compat]
13-
julia = "^1.3"
13+
julia = "^1.5"
1414
CBinding = "^0.9.0"
15-
LLVM_jll = "6.0.1,8.0.1"
15+
Clang_jll = "9.0.1"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Se let's get started with an example!
1919

2020
## Generating
2121

22-
To start, you must add `CBinding = "^0.9"` as a dependency to your package, and `CBindingGen = "^0.3"` as a build dependency.
22+
To start, you must add `CBinding = "^0.9"` as a dependency to your package, and `CBindingGen = "^0.3,^0.4"` as a build dependency.
2323
CBindingGen.jl relies on the artifacts distributed with `LLVM_jll` for providing a `libclang.so` library and header files for your system, so we will use those to demonstrate.
2424
The following code shows what is necessary to generate bindings to `libclang.so`, and something like it would normally be placed in your package's `deps/build.jl` file.
2525
([another example found in PLCTag.jl](https://github.com/laurium-labs/PLCTag.jl/blob/09f7ed15bd470b4691846178d99f1a57b6917a48/deps/build.jl#L44))

0 commit comments

Comments
 (0)