Skip to content

Commit

Permalink
Upgrade to boost 1.83
Browse files Browse the repository at this point in the history
Summary:
X-link: facebookincubator/velox#6943

Update to boost 1.83.  This addresses a folly build failure on Xcode 15, due to
boost 1.78 referring to the removed std::unary_function.

Reviewed By: jdelliot

Differential Revision: D49972186

fbshipit-source-id: 8d9fdd27c24ccc5a072b6973b86e0c8ed5b77ac3
  • Loading branch information
Mark Shroyer authored and facebook-github-bot committed Oct 9, 2023
1 parent 4b10788 commit 842547e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build/fbcode_builder/getdeps.py
Original file line number Diff line number Diff line change
Expand Up @@ -1009,7 +1009,7 @@ def write_job_for_platform(self, platform, args): # noqa: C901
# https://github.blog/changelog/2020-10-01-github-actions-deprecating-set-env-and-add-path-commands/
out.write(" - name: Export boost environment\n")
out.write(
' run: "echo BOOST_ROOT=%BOOST_ROOT_1_78_0% >> %GITHUB_ENV%"\n'
' run: "echo BOOST_ROOT=%BOOST_ROOT_1_83_0% >> %GITHUB_ENV%"\n'
)
out.write(" shell: cmd\n")

Expand Down
10 changes: 5 additions & 5 deletions build/fbcode_builder/manifests/boost
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
name = boost

[download.not(os=windows)]
url = https://boostorg.jfrog.io/artifactory/main/release/1.78.0/source/boost_1_78_0.tar.gz
sha256 = 94ced8b72956591c4775ae2207a9763d3600b30d9d7446562c552f0a14a63be7
url = https://boostorg.jfrog.io/artifactory/main/release/1.83.0/source/boost_1_83_0.tar.gz
sha256 = c0685b68dd44cc46574cce86c4e17c0f611b15e195be9848dfd0769a0a207628

[download.os=windows]
url = https://boostorg.jfrog.io/artifactory/main/release/1.78.0/source/boost_1_78_0.zip
sha256 = f22143b5528e081123c3c5ed437e92f648fe69748e95fa6e2bd41484e2986cc3
url = https://boostorg.jfrog.io/artifactory/main/release/1.83.0/source/boost_1_83_0.zip
sha256 = c86bd9d9eef795b4b0d3802279419fde5221922805b073b9bd822edecb1ca28e

[preinstalled.env]
# Here we list the acceptable versions that cmake needs a hint to find
BOOST_ROOT_1_69_0
BOOST_ROOT_1_78_0
BOOST_ROOT_1_83_0

[debs]
libboost-all-dev
Expand Down

0 comments on commit 842547e

Please sign in to comment.