-
-
Notifications
You must be signed in to change notification settings - Fork 362
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Finish refactoring Serializer, add LZ4 compression for SGM files.
- Loading branch information
1 parent
09a84e6
commit 0a83956
Showing
21 changed files
with
9,024 additions
and
100 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
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
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
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 |
|---|---|---|
|
|
@@ -669,5 +669,3 @@ int luaD_protectedparser (lua_State *L, ZIO *z, const char *name, | |
| L->nny--; | ||
| return status; | ||
| } | ||
|
|
||
|
|
||
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,15 @@ | ||
| cmake_minimum_required(VERSION 3.4) | ||
| project(lz4 LANGUAGES C) | ||
|
|
||
| list(APPEND LZ4_SOURCES | ||
| lz4.c | ||
| lz4hc.c | ||
| lz4frame.c | ||
| xxhash.c | ||
| ) | ||
|
|
||
| add_library(lz4 STATIC ${LZ4_SOURCES}) | ||
|
|
||
| target_include_directories(lz4 PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}) | ||
| target_compile_options(lz4 PRIVATE "-O3") | ||
| target_compile_definitions(lz4 PRIVATE "XXH_NAMESPACE=LZ4_") |
Oops, something went wrong.