-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Project.toml to use Zstd_jll 1.5.5
Update the clang wrapper generator to clang 0.17 Reorganize the source tree a bit
- Loading branch information
1 parent
f7e431a
commit f7a80ab
Showing
11 changed files
with
143 additions
and
216 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ uuid = "6b39b394-51ab-5f42-8807-6242bab2b4c2" | |
license = "MIT" | ||
authors = ["Kenta Sato <[email protected]>", | ||
"JuliaIO Github Organization"] | ||
version = "0.7.2" | ||
version = "0.8.0" | ||
|
||
[deps] | ||
CEnum = "fa961155-64e5-5f13-b03f-caf6b980ea82" | ||
|
@@ -12,7 +12,7 @@ Zstd_jll = "3161d3a3-bdf6-5164-811a-617609db77b4" | |
|
||
[compat] | ||
TranscodingStreams = "0.9" | ||
Zstd_jll = "1.4" | ||
Zstd_jll = "1.5.5" | ||
CEnum = "0.4" | ||
julia = "1.3" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Manifest.toml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[general] | ||
library_name = "libzstd" | ||
output_file_path = "../src/LibZstd_clang.jl" | ||
module_name = "LibZstd" | ||
jll_pkg_name = "Zstd_jll" | ||
export_symbol_prefixes = ["ZSTD_", "ZDICT_"] | ||
prologue_file_path = "./prologue.jl" | ||
use_julia_native_enum_type = true | ||
print_using_CEnum = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
const INT_MAX = typemax(Cint) | ||
const size_t = Int64 | ||
|
||
ZSTD_EXPAND_AND_QUOTE(expr) = string(expr) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.