Skip to content

Commit

Permalink
Merge pull request #2484 from finos/boost-mirror
Browse files Browse the repository at this point in the history
Use a boost mirror
  • Loading branch information
texodus authored Jan 2, 2024
2 parents 6de9c02 + 6dbba32 commit 64b3ace
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/perspective-scripts/install_tools.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ import * as url from "url";
export function install_boost(version = "1_82_0") {
const version_dash = version.replace(/\./g, "_");
const version_dot = version.replace(/_/g, ".");
const URL = `https://boostorg.jfrog.io/artifactory/main/release/${version_dot}/source/boost_${version_dash}.tar.gz`;
const URL = `https://archives.boost.io/release/${version_dot}/source/boost_${version_dash}.tar.gz`;
// const URL = `https://boostorg.jfrog.io/artifactory/main/release/${version_dot}/source/boost_${version_dash}.tar.gz`;
const flags = [
"-j8",
"cxxflags=-fPIC",
Expand Down

0 comments on commit 64b3ace

Please sign in to comment.