mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 15:02:01 +00:00
[BTRFS][UBTRFS][SHELLBTRFS] Upgrade to 1.7.4 (#4417)
v1.7.4 (2020-08-23): - Fixed issue when running compressed EXEs - Changed build system to cmake - Upgraded zstd to version 1.4.5 - Added support for FSCTL_GET_RETRIEVAL_POINTERS - Miscellaneous bug fixes
This commit is contained in:
parent
174dfab667
commit
0604273535
80 changed files with 11313 additions and 6442 deletions
|
@ -9,14 +9,11 @@ list(APPEND SOURCE
|
|||
${REACTOS_SOURCE_DIR}/drivers/filesystems/btrfs/xxhash.c
|
||||
btrfslib.c)
|
||||
|
||||
if(ARCH STREQUAL "i386")
|
||||
list(APPEND ASM_SOURCE ${REACTOS_SOURCE_DIR}/drivers/filesystems/btrfs/crc32c-x86.S)
|
||||
elseif(ARCH STREQUAL "amd64")
|
||||
list(APPEND ASM_SOURCE ${REACTOS_SOURCE_DIR}/drivers/filesystems/btrfs/crc32c-amd64.S)
|
||||
if((ARCH STREQUAL "i386") OR (ARCH STREQUAL "amd64"))
|
||||
list(APPEND ASM_SOURCE ${REACTOS_SOURCE_DIR}/drivers/filesystems/btrfs/crc32c.S)
|
||||
add_asm_files(btrfs_asm ${ASM_SOURCE})
|
||||
endif()
|
||||
|
||||
add_asm_files(btrfs_asm ${ASM_SOURCE})
|
||||
|
||||
add_library(btrfslib ${SOURCE} ${btrfs_asm})
|
||||
target_compile_definitions(btrfslib PRIVATE _USRDLL)
|
||||
add_dependencies(btrfslib psdk)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue