@@ -27,7 +27,7 @@ set -x # Print commands that are executed.
2727SCRIPTDIR=$( dirname " ${BASH_SOURCE[0]} " )
2828source $SCRIPTDIR /../csrc/velox/velox/scripts/setup-helper-functions.sh
2929
30- FB_OS_VERSION=v2021.05.10 .00
30+ FB_OS_VERSION=v2022.03.14 .00
3131NPROC=$( sysctl -n hw.physicalcpu)
3232COMPILER_FLAGS=$( get_cxx_flags $CPU_TARGET )
3333DEPENDENCY_DIR=${DEPENDENCY_DIR:- $(pwd)}
@@ -107,7 +107,7 @@ function install_build_prerequisites {
107107}
108108
109109function install_fmt {
110- github_checkout fmtlib/fmt 7.1.3
110+ github_checkout fmtlib/fmt 8.0.0
111111 cmake_install -DFMT_TEST=OFF
112112}
113113
@@ -130,20 +130,19 @@ function install_folly {
130130
131131function install_ranges_v3 {
132132 github_checkout ericniebler/range-v3 0.12.0
133- cmake_install -DRANGES_ENABLE_WERROR=OFF
133+ cmake_install -DRANGES_ENABLE_WERROR=OFF -DRANGE_V3_TESTS=OFF -DRANGE_V3_EXAMPLES=OFF
134134}
135135
136136function install_re2 {
137137 github_checkout google/re2 2021-04-01
138- cmake_install
138+ cmake_install -DRE2_BUILD_TESTING=OFF
139139}
140140
141141function install_velox_deps {
142142 if [ " ${INSTALL_PREREQUISITES:- Y} " == " Y" ]; then
143143 run_and_time install_build_prerequisites
144144 fi
145145 run_and_time install_ranges_v3
146- run_and_time install_googletest
147146 run_and_time install_fmt
148147 run_and_time install_double_conversion
149148 run_and_time install_folly
0 commit comments