Skip to content

Commit

Permalink
ARROW-6984: [C++] Update LZ4 to 1.9.2 for CVE-2019-17543
Browse files Browse the repository at this point in the history
Closes apache#5728 from kszucs/ARROW-6984 and squashes the following commits:

093abd7 <Antoine Pitrou> pass -fPIC as make argument
21d3f5b <Krisztián Szűcs> bump lz4 version

Lead-authored-by: Antoine Pitrou <[email protected]>
Co-authored-by: Krisztián Szűcs <[email protected]>
Signed-off-by: Antoine Pitrou <[email protected]>
  • Loading branch information
pitrou and kszucs committed Nov 6, 2019
1 parent adb2c73 commit 7f08715
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cpp/build-support/build-lz4-lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#
export CFLAGS="${CFLAGS} -O3 -fPIC"
if [ -z "$MAKELEVEL" ]; then
make -j4 "$@"
make -j4 CFLAGS="$CFLAGS" "$@"
else
make "$@"
make CFLAGS="$CFLAGS" "$@"
fi
2 changes: 1 addition & 1 deletion cpp/thirdparty/versions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ GLOG_VERSION=v0.3.5
GRPC_VERSION=v1.24.3
GTEST_VERSION=1.8.1
JEMALLOC_VERSION=5.2.1
LZ4_VERSION=v1.8.3
LZ4_VERSION=v1.9.2
# Need post-v1.0.6 version for https://github.com/microsoft/mimalloc/pull/140,
# https://github.com/microsoft/mimalloc/pull/145 and
# https://github.com/microsoft/mimalloc/pull/148
Expand Down

0 comments on commit 7f08715

Please sign in to comment.