diff --git a/scripts/setup-centos8.sh b/scripts/setup-centos8.sh index fe6042301d8fb..e6808097509f3 100755 --- a/scripts/setup-centos8.sh +++ b/scripts/setup-centos8.sh @@ -68,7 +68,7 @@ wget_and_untar https://github.com/google/glog/archive/v0.4.0.tar.gz glog & wget_and_untar http://www.oberhumer.com/opensource/lzo/download/lzo-2.10.tar.gz lzo & wget_and_untar https://boostorg.jfrog.io/artifactory/main/release/1.72.0/source/boost_1_72_0.tar.gz boost & wget_and_untar https://github.com/google/snappy/archive/1.1.8.tar.gz snappy & -wget_and_untar https://github.com/fmtlib/fmt/archive/8.0.1.tar.gz fmt & +wget_and_untar https://github.com/fmtlib/fmt/archive/10.1.1.tar.gz fmt & wait # For cmake and source downloads to complete. diff --git a/scripts/setup-circleci.sh b/scripts/setup-circleci.sh index bd275f48869ef..90432bf83b76f 100755 --- a/scripts/setup-circleci.sh +++ b/scripts/setup-circleci.sh @@ -70,7 +70,7 @@ wget_and_untar https://github.com/google/glog/archive/v0.4.0.tar.gz glog & wget_and_untar http://www.oberhumer.com/opensource/lzo/download/lzo-2.10.tar.gz lzo & wget_and_untar https://boostorg.jfrog.io/artifactory/main/release/1.72.0/source/boost_1_72_0.tar.gz boost & wget_and_untar https://github.com/google/snappy/archive/1.1.8.tar.gz snappy & -wget_and_untar https://github.com/fmtlib/fmt/archive/8.0.1.tar.gz fmt & +wget_and_untar https://github.com/fmtlib/fmt/archive/10.1.1.tar.gz fmt & # wget_and_untar https://github.com/ericniebler/range-v3/archive/0.11.0.tar.gz ranges-v3 & wget_and_untar https://archive.apache.org/dist/hadoop/common/hadoop-2.10.1/hadoop-2.10.1.tar.gz hadoop wget_and_untar https://github.com/protocolbuffers/protobuf/releases/download/v21.4/protobuf-all-21.4.tar.gz protobuf & diff --git a/scripts/setup-macos.sh b/scripts/setup-macos.sh index 83d8990603eae..00195e30a291e 100755 --- a/scripts/setup-macos.sh +++ b/scripts/setup-macos.sh @@ -88,7 +88,7 @@ function install_build_prerequisites { } function install_fmt { - github_checkout fmtlib/fmt 8.0.1 + github_checkout fmtlib/fmt 10.1.1 cmake_install -DFMT_TEST=OFF } diff --git a/scripts/setup-ubuntu.sh b/scripts/setup-ubuntu.sh index 42054e5930920..4e961b336fdb6 100755 --- a/scripts/setup-ubuntu.sh +++ b/scripts/setup-ubuntu.sh @@ -45,6 +45,7 @@ sudo --preserve-env apt update && sudo --preserve-env apt install -y libunwind-d libboost-all-dev \ libicu-dev \ libdouble-conversion-dev \ + libfmt-dev \ libgoogle-glog-dev \ libbz2-dev \ libgflags-dev \ @@ -85,11 +86,6 @@ function prompt { ) 2> /dev/null } -function install_fmt { - github_checkout fmtlib/fmt 8.0.1 - cmake_install -DFMT_TEST=OFF -} - function install_folly { github_checkout facebook/folly "${FB_OS_VERSION}" cmake_install -DBUILD_TESTS=OFF -DFOLLY_HAVE_INT128_T=ON @@ -118,7 +114,6 @@ function install_conda { } function install_velox_deps { - run_and_time install_fmt run_and_time install_folly run_and_time install_fizz run_and_time install_wangle diff --git a/scripts/setup-velox-torcharrow.sh b/scripts/setup-velox-torcharrow.sh index a31e35515d214..72186bc7158c6 100755 --- a/scripts/setup-velox-torcharrow.sh +++ b/scripts/setup-velox-torcharrow.sh @@ -80,7 +80,7 @@ wget_and_untar https://github.com/gflags/gflags/archive/refs/tags/v2.2.2.tar.gz wget_and_untar https://ftp.openssl.org/source/openssl-1.1.1k.tar.gz openssl & wget_and_untar https://boostorg.jfrog.io/artifactory/main/release/1.69.0/source/boost_1_69_0.tar.gz boost & wget_and_untar https://github.com/facebook/folly/archive/v2022.11.14.00.tar.gz folly & -wget_and_untar https://github.com/fmtlib/fmt/archive/refs/tags/8.0.1.tar.gz fmt & +wget_and_untar https://github.com/fmtlib/fmt/archive/refs/tags/10.1.1.tar.gz fmt & wait