Skip to content

Commit 253fee8

Browse files
committed
Reactant_jll build 0.0.1+0
1 parent cd54f4e commit 253fee8

8 files changed

+224
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
override/

Artifacts.toml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[[Reactant]]
2+
arch = "x86_64"
3+
cxxstring_abi = "cxx03"
4+
git-tree-sha1 = "9f0ed98f4f4ce26fded09ece065830f8d7eca56e"
5+
lazy = true
6+
libc = "glibc"
7+
os = "linux"
8+
9+
[[Reactant.download]]
10+
sha256 = "b2d2c8f3fd2ee15927cdff9432fe6c6ddb38280dd65b8c0ddc7818432c3e8a03"
11+
url = "https://github.com/JuliaBinaryWrappers/Reactant_jll.jl/releases/download/Reactant-v0.0.1+0/Reactant.v0.0.1.x86_64-linux-gnu-cxx03.tar.gz"
12+
[[Reactant]]
13+
arch = "x86_64"
14+
cxxstring_abi = "cxx11"
15+
git-tree-sha1 = "541f044bd6717aa5038dd3768bd43dc92c79a274"
16+
lazy = true
17+
libc = "glibc"
18+
os = "linux"
19+
20+
[[Reactant.download]]
21+
sha256 = "c3f6c5a6068a6f32a91b847ee54b65d027f754ef270c6a315f8bbebc6e3886a3"
22+
url = "https://github.com/JuliaBinaryWrappers/Reactant_jll.jl/releases/download/Reactant-v0.0.1+0/Reactant.v0.0.1.x86_64-linux-gnu-cxx11.tar.gz"

LICENSE

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
The Julia source code within this repository (all files under `src/`) are
2+
released under the terms of the MIT "Expat" License, the text of which is
3+
included below. This license does not apply to the binary package wrapped by
4+
this Julia package and automatically downloaded by the Julia package manager
5+
upon installing this wrapper package. The binary package's license is shipped
6+
alongside the binary itself and can be found within the
7+
`share/licenses/Reactant` directory within its prefix.
8+
19
MIT License
210

311
Copyright (c) 2024 JuliaBinaryWrappers

Project.toml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name = "Reactant_jll"
2+
uuid = "0192cb87-2b54-54ad-80e0-3be72ad8a3c0"
3+
version = "0.0.1+0"
4+
5+
[deps]
6+
JLLWrappers = "692b3bcd-3c85-4b1f-b108-f13ce0eb3210"
7+
LazyArtifacts = "4af54fe1-eca0-43a8-85a7-787d91b784e3"
8+
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
9+
Artifacts = "56f22d72-fd6d-98f1-02f0-08ddc0907c33"
10+
11+
[compat]
12+
JLLWrappers = "1.2.0"
13+
julia = "1.6"
14+
LazyArtifacts = "1"
15+
Libdl = "1"
16+
Artifacts = "1"

README.md

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# `Reactant_jll.jl` (v0.0.1+0)
2+
3+
[![deps](https://juliahub.com/docs/Reactant_jll/deps.svg)](https://juliahub.com/ui/Packages/Reactant_jll/ilCai?page=2)
4+
5+
This is an autogenerated package constructed using [`BinaryBuilder.jl`](https://github.com/JuliaPackaging/BinaryBuilder.jl).
6+
7+
The originating [`build_tarballs.jl`](https://github.com/JuliaPackaging/Yggdrasil/blob/35aece2203a65d35afaa96b8e7fb892a4ea1ad1a/R/Reactant/build_tarballs.jl) script can be found on [`Yggdrasil`](https://github.com/JuliaPackaging/Yggdrasil/), the community build tree.
8+
9+
## Bug Reports
10+
11+
If you have any issue, please report it to the Yggdrasil [bug tracker](https://github.com/JuliaPackaging/Yggdrasil/issues).
12+
13+
## Documentation
14+
15+
For more details about JLL packages and how to use them, see `BinaryBuilder.jl` [documentation](https://docs.binarybuilder.org/stable/jll/).
16+
17+
## Sources
18+
19+
The tarballs for `Reactant_jll.jl` have been built from these sources:
20+
21+
* git repository: https://github.com/EnzymeAD/Reactant.jl.git (revision: `e132afd886a6d8333de42e99f5c0806c40c66482`)
22+
23+
## Platforms
24+
25+
`Reactant_jll.jl` is available for the following platforms:
26+
27+
* `Linux x86_64 {cxxstring_abi=cxx11, libc=glibc}` (`x86_64-linux-gnu-cxx11`)
28+
29+
## Products
30+
31+
The code bindings within this package are autogenerated from the following `Products`:
32+
33+
* `FileProduct`: `Affine_inc_jl`
34+
* `FileProduct`: `Arith_inc_jl`
35+
* `FileProduct`: `Builtin_inc_jl`
36+
* `FileProduct`: `CHLO_inc_jl`
37+
* `FileProduct`: `Enzyme_inc_jl`
38+
* `FileProduct`: `Func_inc_jl`
39+
* `FileProduct`: `StableHLO_inc_jl`
40+
* `FileProduct`: `VHLO_inc_jl`
41+
* `LibraryProduct`: `libReactantExtra`

src/Reactant_jll.jl

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Use baremodule to shave off a few KB from the serialized `.ji` file
2+
baremodule Reactant_jll
3+
using Base
4+
using Base: UUID
5+
using LazyArtifacts
6+
import JLLWrappers
7+
8+
JLLWrappers.@generate_main_file_header("Reactant")
9+
JLLWrappers.@generate_main_file("Reactant", UUID("0192cb87-2b54-54ad-80e0-3be72ad8a3c0"))
10+
end # module Reactant_jll
+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
# Autogenerated wrapper script for Reactant_jll for x86_64-linux-gnu-cxx03
2+
export Affine_inc_jl, Arith_inc_jl, Builtin_inc_jl, CHLO_inc_jl, Enzyme_inc_jl, Func_inc_jl, StableHLO_inc_jl, VHLO_inc_jl, libReactantExtra
3+
4+
JLLWrappers.@generate_wrapper_header("Reactant")
5+
JLLWrappers.@declare_file_product(Affine_inc_jl)
6+
JLLWrappers.@declare_file_product(Arith_inc_jl)
7+
JLLWrappers.@declare_file_product(Builtin_inc_jl)
8+
JLLWrappers.@declare_file_product(CHLO_inc_jl)
9+
JLLWrappers.@declare_file_product(Enzyme_inc_jl)
10+
JLLWrappers.@declare_file_product(Func_inc_jl)
11+
JLLWrappers.@declare_file_product(StableHLO_inc_jl)
12+
JLLWrappers.@declare_file_product(VHLO_inc_jl)
13+
JLLWrappers.@declare_library_product(libReactantExtra, "libReactantExtra.so")
14+
function __init__()
15+
JLLWrappers.@generate_init_header()
16+
JLLWrappers.@init_file_product(
17+
Affine_inc_jl,
18+
"Affine.inc.jl",
19+
)
20+
21+
JLLWrappers.@init_file_product(
22+
Arith_inc_jl,
23+
"Arith.inc.jl",
24+
)
25+
26+
JLLWrappers.@init_file_product(
27+
Builtin_inc_jl,
28+
"Builtin.inc.jl",
29+
)
30+
31+
JLLWrappers.@init_file_product(
32+
CHLO_inc_jl,
33+
"CHLO.inc.jl",
34+
)
35+
36+
JLLWrappers.@init_file_product(
37+
Enzyme_inc_jl,
38+
"Enzyme.inc.jl",
39+
)
40+
41+
JLLWrappers.@init_file_product(
42+
Func_inc_jl,
43+
"Func.inc.jl",
44+
)
45+
46+
JLLWrappers.@init_file_product(
47+
StableHLO_inc_jl,
48+
"StableHLO.inc.jl",
49+
)
50+
51+
JLLWrappers.@init_file_product(
52+
VHLO_inc_jl,
53+
"VHLO.inc.jl",
54+
)
55+
56+
JLLWrappers.@init_library_product(
57+
libReactantExtra,
58+
"lib/libReactantExtra.so",
59+
RTLD_LAZY | RTLD_DEEPBIND,
60+
)
61+
62+
JLLWrappers.@generate_init_footer()
63+
end # __init__()
+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
# Autogenerated wrapper script for Reactant_jll for x86_64-linux-gnu-cxx11
2+
export Affine_inc_jl, Arith_inc_jl, Builtin_inc_jl, CHLO_inc_jl, Enzyme_inc_jl, Func_inc_jl, StableHLO_inc_jl, VHLO_inc_jl, libReactantExtra
3+
4+
JLLWrappers.@generate_wrapper_header("Reactant")
5+
JLLWrappers.@declare_file_product(Affine_inc_jl)
6+
JLLWrappers.@declare_file_product(Arith_inc_jl)
7+
JLLWrappers.@declare_file_product(Builtin_inc_jl)
8+
JLLWrappers.@declare_file_product(CHLO_inc_jl)
9+
JLLWrappers.@declare_file_product(Enzyme_inc_jl)
10+
JLLWrappers.@declare_file_product(Func_inc_jl)
11+
JLLWrappers.@declare_file_product(StableHLO_inc_jl)
12+
JLLWrappers.@declare_file_product(VHLO_inc_jl)
13+
JLLWrappers.@declare_library_product(libReactantExtra, "libReactantExtra.so")
14+
function __init__()
15+
JLLWrappers.@generate_init_header()
16+
JLLWrappers.@init_file_product(
17+
Affine_inc_jl,
18+
"Affine.inc.jl",
19+
)
20+
21+
JLLWrappers.@init_file_product(
22+
Arith_inc_jl,
23+
"Arith.inc.jl",
24+
)
25+
26+
JLLWrappers.@init_file_product(
27+
Builtin_inc_jl,
28+
"Builtin.inc.jl",
29+
)
30+
31+
JLLWrappers.@init_file_product(
32+
CHLO_inc_jl,
33+
"CHLO.inc.jl",
34+
)
35+
36+
JLLWrappers.@init_file_product(
37+
Enzyme_inc_jl,
38+
"Enzyme.inc.jl",
39+
)
40+
41+
JLLWrappers.@init_file_product(
42+
Func_inc_jl,
43+
"Func.inc.jl",
44+
)
45+
46+
JLLWrappers.@init_file_product(
47+
StableHLO_inc_jl,
48+
"StableHLO.inc.jl",
49+
)
50+
51+
JLLWrappers.@init_file_product(
52+
VHLO_inc_jl,
53+
"VHLO.inc.jl",
54+
)
55+
56+
JLLWrappers.@init_library_product(
57+
libReactantExtra,
58+
"lib/libReactantExtra.so",
59+
RTLD_LAZY | RTLD_DEEPBIND,
60+
)
61+
62+
JLLWrappers.@generate_init_footer()
63+
end # __init__()

0 commit comments

Comments
 (0)