Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[cmake] Update download link for Boost 1.84.0 #1802

Merged
merged 1 commit into from
Jan 10, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions src/cmake/Dependencies.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ if(AV_BUILD_BOOST)
endif()

ExternalProject_Add(${BOOST_TARGET}
URL https://boostorg.jfrog.io/artifactory/main/release/1.84.0/source/boost_1_84_0.tar.bz2
URL https://archives.boost.io/release/1.84.0/source/boost_1_84_0.tar.bz2
URL_HASH MD5=9dcd632441e4da04a461082ebbafd337
DOWNLOAD_DIR ${BUILD_DIR}/download/boost
PREFIX ${BUILD_DIR}
Expand All @@ -630,15 +630,15 @@ if(AV_BUILD_BOOST)
SOURCE_DIR ${CMAKE_CURRENT_BINARY_DIR}/boost
BINARY_DIR ${BUILD_DIR}/boost_build
INSTALL_DIR ${CMAKE_INSTALL_PREFIX}
CONFIGURE_COMMAND
cd <SOURCE_DIR> &&
CONFIGURE_COMMAND
cd <SOURCE_DIR> &&
./bootstrap.${SCRIPT_EXTENSION} --prefix=<INSTALL_DIR> --with-libraries=atomic,container,date_time,exception,graph,iostreams,json,log,math,program_options,regex,serialization,system,test,thread,stacktrace,timer
BUILD_COMMAND
cd <SOURCE_DIR> &&
BUILD_COMMAND
cd <SOURCE_DIR> &&
./b2 --prefix=<INSTALL_DIR> variant=${DEPS_CMAKE_BUILD_TYPE_LOWERCASE} cxxstd=17 link=shared threading=multi -j8
INSTALL_COMMAND
cd <SOURCE_DIR> &&
./b2 variant=${DEPS_CMAKE_BUILD_TYPE_LOWERCASE} cxxstd=17 link=shared threading=multi install
INSTALL_COMMAND
cd <SOURCE_DIR> &&
./b2 variant=${DEPS_CMAKE_BUILD_TYPE_LOWERCASE} cxxstd=17 link=shared threading=multi install
DEPENDS ${ZLIB_TARGET}
)

Expand Down
Loading