|
Revision tags: release/12.4.0, release/13.1.0 |
|
| #
284434f7 |
| 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
(cherry picked from commit 5f2aca83940097d7d23b4137073fb601f8e74232)
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
|