|
Revision tags: release/13.4.0-p5, release/13.5.0-p1, release/14.2.0-p3, release/13.5.0, release/14.2.0-p2, release/14.1.0-p8, release/13.4.0-p4, release/14.1.0-p7, release/14.2.0-p1, release/13.4.0-p3, release/14.2.0, release/13.4.0, release/14.1.0, release/13.3.0, release/14.0.0 |
|
| #
4101bcfa |
| 22-Aug-2023 |
Jessica Clarke <[email protected]> |
libzstd: Explicitly define ZSTD_DISABLE_ASM
On FreeBSD, ZSTD_ASM_SUPPORTED is defined as 0, but on macOS and Linux it is defined as 1, yet we don't build any of the assembly sources. Rather than add
libzstd: Explicitly define ZSTD_DISABLE_ASM
On FreeBSD, ZSTD_ASM_SUPPORTED is defined as 0, but on macOS and Linux it is defined as 1, yet we don't build any of the assembly sources. Rather than add them just for bootstrapping on non-FreeBSD, explicitly define ZSTD_DISABLE_ASM so they're not needed and everything is consistent.
This fixes building a bootstrap LLVM toolchain on non-FreeBSD amd64 (the only architecture with assembly available).
Reviewed by: emaste, imp Differential Revision: https://reviews.freebsd.org/D41543
show more ...
|
| #
d0b2dbfa |
| 16-Aug-2023 |
Warner Losh <[email protected]> |
Remove $FreeBSD$: one-line sh pattern
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
|
|
Revision tags: release/13.2.0, release/12.4.0, release/13.1.0 |
|
| #
5f2aca83 |
| 08-Feb-2022 |
Dimitry Andric <[email protected]> |
Disable clang 14 warning about bitwise operators in zstd
Parts of zstd, used in openzfs and other places, trigger a new clang 14 -Werror warning:
``` sys/contrib/zstd/lib/decompress/huf_decompress.
Disable clang 14 warning about bitwise operators in zstd
Parts of zstd, used in openzfs and other places, trigger a new clang 14 -Werror warning:
``` sys/contrib/zstd/lib/decompress/huf_decompress.c:889:25: error: use of bitwise '&' with boolean operands [-Werror,-Wbitwise-instead-of-logical] (BIT_reloadDStreamFast(&bitD1) == BIT_DStream_unfinished) ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ```
While the warning is benign, it should ideally be fixed upstream and then vendor-imported, but for now silence it selectively.
MFC after: 3 days
show more ...
|
|
Revision tags: release/12.3.0, release/13.0.0 |
|
| #
98689d0f |
| 03-Jan-2021 |
Conrad Meyer <[email protected]> |
libprivatezstd: Restrict symbol visibility similar to upstream
We have to relax three symbols to dynamically link zstd(1), but the rest are the same.
|
| #
6cd88fe0 |
| 12-Nov-2020 |
Emmanuel Vadot <[email protected]> |
pkgbase: Move libprivatezstd from utilities to runtime
libarchive depends on it by default and tar uses libarchive. So on a update : 1/ runtime contain tar 2/ runtime have libarchive in shlibs_requi
pkgbase: Move libprivatezstd from utilities to runtime
libarchive depends on it by default and tar uses libarchive. So on a update : 1/ runtime contain tar 2/ runtime have libarchive in shlibs_required 3/ libarchive packages depends on utilities 4/ utilities depends on runtime 5/ kaboom
All users of libprivatezstd (libarchive related stuff and objcopy/ar) are already in utilities.
Discussed with: bapt
show more ...
|
|
Revision tags: release/12.2.0 |
|
| #
ecebb3cc |
| 11-Sep-2020 |
Kyle Evans <[email protected]> |
Only set WARNS if not defined
This would allow interested parties to do experimental runs with an environment set appropriately to raise all the warnings throughout the build; e.g. env WARNS=6 NO_WE
Only set WARNS if not defined
This would allow interested parties to do experimental runs with an environment set appropriately to raise all the warnings throughout the build; e.g. env WARNS=6 NO_WERROR=yes buildworld.
Not currently touching the numerous instances in ^/tools.
MFC after: 1 week
show more ...
|
|
Revision tags: release/11.4.0, release/12.1.0, release/11.3.0, release/12.0.0 |
|
| #
0f743729 |
| 22-Oct-2018 |
Conrad Meyer <[email protected]> |
Update to Zstandard 1.3.7
Relnotes: yes Sponsored by: Dell EMC Isilon
|
|
Revision tags: release/11.2.0 |
|
| #
22aec4de |
| 18-Mar-2018 |
Conrad Meyer <[email protected]> |
lib(private)zstd: Fix riscv build
Link __bswap[ds]i2() intrinsics in to libzstd for riscv, where the C runtime apparently lacks such intrinsics.
Broken in r330894.
Reported by: asomers Sponsored b
lib(private)zstd: Fix riscv build
Link __bswap[ds]i2() intrinsics in to libzstd for riscv, where the C runtime apparently lacks such intrinsics.
Broken in r330894.
Reported by: asomers Sponsored by: Dell EMC Isilon
show more ...
|
| #
30347b77 |
| 26-Nov-2017 |
Michal Meloun <[email protected]> |
Addd work around for LLVM bug 35023.
Clang crashes when compiling zstd_compress.c with optimization for ARM targets. https://bugs.llvm.org/show_bug.cgi?id=35023
|
| #
0c16b537 |
| 14-Nov-2017 |
Warner Losh <[email protected]> |
Move zstd from contrib to sys/contrib so it can be used in the kernel. Adjust the Makefiles that referenced it to the new path.
Sponsored by: Netflix OK'd by: cem@ and AllanJude@
|
| #
04ac1c64 |
| 11-Nov-2017 |
Baptiste Daroussin <[email protected]> |
Follow up on zstd update
|
|
Revision tags: release/10.4.0, release/11.1.0 |
|
| #
1fc317e3 |
| 06-May-2017 |
Baptiste Daroussin <[email protected]> |
Build zstandard with threading enabled
|