mirror of
https://github.com/boostorg/boost.git
synced 2025-04-05 05:25:00 +00:00
Compare commits
No commits in common. "master" and "boost-1.85.0" have entirely different histories.
master
...
boost-1.85
148 changed files with 232 additions and 616 deletions
|
@ -1,38 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Auto-cancel preceding workflows
|
||||
# https://discuss.circleci.com/t/workaround-auto-cancel-redundant-builds-on-the-default-branch/39468
|
||||
|
||||
set -x
|
||||
|
||||
## Get the name of the workflow and the related pipeline number
|
||||
curl --header "Circle-Token: $PERS_API_TOKEN_BOOST_5" --request GET "https://circleci.com/api/v2/workflow/${CIRCLE_WORKFLOW_ID}" -o current_workflow.json
|
||||
WF_NAME=$(jq -r '.name' current_workflow.json)
|
||||
CURRENT_PIPELINE_NUM=$(jq -r '.pipeline_number' current_workflow.json)
|
||||
CURRENT_PIPELINE_CREATED=$(jq -r '.created_at' current_workflow.json)
|
||||
TIME_THRESHOLD=$(date --utc +'%Y-%m-%dT%TZ' -d "${CURRENT_PIPELINE_CREATED} -10 minutes")
|
||||
|
||||
## Get the IDs of pipelines created by the current user on the same branch. (Only consider pipelines that have a pipeline number inferior to the current pipeline)
|
||||
PIPE_IDS=$(curl --header "Circle-Token: $PERS_API_TOKEN_BOOST_5" --request GET "https://circleci.com/api/v2/project/gh/$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME/pipeline?branch=$CIRCLE_BRANCH"|jq -r --argjson CURRENT_PIPELINE_NUM "$CURRENT_PIPELINE_NUM" --arg TIME_THRESHOLD "${TIME_THRESHOLD}" '.items[] | select(.state == "created") | select(.number < $CURRENT_PIPELINE_NUM) | select(.created_at > $TIME_THRESHOLD) | .id')
|
||||
|
||||
## Get the IDs of currently running/on_hold workflows that have the same name as the current workflow, in all previously created pipelines.
|
||||
if [ ! -z "$PIPE_IDS" ]; then
|
||||
for PIPE_ID in $PIPE_IDS
|
||||
do
|
||||
curl --header "Circle-Token: $PERS_API_TOKEN_BOOST_5" --request GET "https://circleci.com/api/v2/pipeline/${PIPE_ID}/workflow"|jq -r --arg WF_NAME "${WF_NAME}" '.items[]|select(.status == "on_hold" or .status == "running") | select(.name == $WF_NAME) | .id' >> WF_to_cancel.txt
|
||||
done
|
||||
fi
|
||||
|
||||
## Cancel any currently running/on_hold workflow with the same name
|
||||
if [ -s WF_to_cancel.txt ]; then
|
||||
echo "Cancelling the following workflow(s):"
|
||||
cat WF_to_cancel.txt
|
||||
while read WF_ID;
|
||||
do
|
||||
curl --header "Circle-Token: $PERS_API_TOKEN_BOOST_5" --request POST https://circleci.com/api/v2/workflow/$WF_ID/cancel
|
||||
done < WF_to_cancel.txt
|
||||
## Allowing some time to complete the cancellation
|
||||
sleep 2
|
||||
else
|
||||
echo "Nothing to cancel"
|
||||
fi
|
|
@ -1,12 +1,11 @@
|
|||
version: 2.1
|
||||
version: 2
|
||||
jobs:
|
||||
build:
|
||||
docker:
|
||||
- image: cppalliance/boost_superproject_build:24.04-v3
|
||||
- image: cppalliance/boost_superproject_build:20.04-v4
|
||||
parallelism: 2
|
||||
steps:
|
||||
- checkout
|
||||
- run: ./.circleci/autocancel.sh || true
|
||||
- run: wget "https://raw.githubusercontent.com/boostorg/release-tools/master/ci_boost_common.py" -P ${HOME}
|
||||
- run: wget "https://raw.githubusercontent.com/boostorg/release-tools/master/ci_boost_release.py" -P ${HOME}
|
||||
- run: python3 ${HOME}/ci_boost_release.py checkout_post
|
||||
|
|
26
.github/workflows/ci.yml
vendored
26
.github/workflows/ci.yml
vendored
|
@ -18,12 +18,9 @@ jobs:
|
|||
include:
|
||||
- os: ubuntu-20.04
|
||||
- os: ubuntu-22.04
|
||||
- os: ubuntu-22.04-arm
|
||||
- os: ubuntu-24.04
|
||||
- os: ubuntu-24.04-arm
|
||||
- os: macos-11
|
||||
- os: macos-12
|
||||
- os: macos-13
|
||||
- os: macos-14
|
||||
- os: macos-15
|
||||
|
||||
runs-on: ${{matrix.os}}
|
||||
|
||||
|
@ -57,7 +54,6 @@ jobs:
|
|||
include:
|
||||
- os: windows-2019
|
||||
- os: windows-2022
|
||||
- os: windows-2025
|
||||
|
||||
runs-on: ${{matrix.os}}
|
||||
|
||||
|
@ -92,12 +88,9 @@ jobs:
|
|||
include:
|
||||
- os: ubuntu-20.04
|
||||
- os: ubuntu-22.04
|
||||
- os: ubuntu-22.04-arm
|
||||
- os: ubuntu-24.04
|
||||
- os: ubuntu-24.04-arm
|
||||
- os: macos-11
|
||||
- os: macos-12
|
||||
- os: macos-13
|
||||
- os: macos-14
|
||||
- os: macos-15
|
||||
|
||||
runs-on: ${{matrix.os}}
|
||||
timeout-minutes: 20
|
||||
|
@ -129,7 +122,6 @@ jobs:
|
|||
include:
|
||||
- os: windows-2019
|
||||
- os: windows-2022
|
||||
- os: windows-2025
|
||||
|
||||
runs-on: ${{matrix.os}}
|
||||
|
||||
|
@ -170,7 +162,7 @@ jobs:
|
|||
- name: Configure Boost
|
||||
run: |
|
||||
mkdir __build__ && cd __build__
|
||||
cmake -DBUILD_TESTING=ON -DBOOST_EXCLUDE_LIBRARIES="process;geometry" ..
|
||||
cmake -DBUILD_TESTING=ON -DBOOST_EXCLUDE_LIBRARIES="lockfree;outcome;process;static_string;url" ..
|
||||
|
||||
- name: Build tests
|
||||
run: |
|
||||
|
@ -189,12 +181,9 @@ jobs:
|
|||
include:
|
||||
- os: ubuntu-20.04
|
||||
- os: ubuntu-22.04
|
||||
- os: ubuntu-22.04-arm
|
||||
- os: ubuntu-24.04
|
||||
- os: ubuntu-24.04-arm
|
||||
- os: macos-11
|
||||
- os: macos-12
|
||||
- os: macos-13
|
||||
- os: macos-14
|
||||
- os: macos-15
|
||||
|
||||
runs-on: ${{matrix.os}}
|
||||
timeout-minutes: 90
|
||||
|
@ -226,7 +215,6 @@ jobs:
|
|||
include:
|
||||
- os: windows-2019
|
||||
- os: windows-2022
|
||||
- os: windows-2025
|
||||
|
||||
runs-on: ${{matrix.os}}
|
||||
|
||||
|
|
132
.github/workflows/commit-bot.yml
vendored
132
.github/workflows/commit-bot.yml
vendored
|
@ -1,132 +0,0 @@
|
|||
name: Commit Bot
|
||||
|
||||
# Instructions
|
||||
#
|
||||
# - One-time setup: create a personal access token with permissions. Then configure it here
|
||||
# as secrets.CI_PAT. https://github.com/boostorg/boost/settings/secrets/actions
|
||||
# The reason is explained in https://github.com/orgs/community/discussions/25702
|
||||
# "If an action pushes code using the repository's GITHUB_TOKEN, a new workflow will not run"
|
||||
#
|
||||
# - Processing of either the 'master' or 'develop' branch may be stopped by creating the variables
|
||||
# vars.block_master or vars.block_develop with any value.
|
||||
# https://github.com/boostorg/boost/settings/variables/actions
|
||||
#
|
||||
|
||||
# To avoid infinite loops, don't trigger on "push"
|
||||
on:
|
||||
schedule:
|
||||
- cron: "0,30 * * * *"
|
||||
|
||||
concurrency:
|
||||
group: ${{format('commit-bot-{0}:{1}', github.repository, github.ref)}}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
update-modules:
|
||||
runs-on: ubuntu-latest
|
||||
name: Commit Bot
|
||||
if: github.repository == 'boostorg/boost'
|
||||
|
||||
steps:
|
||||
- name: Check for module updates
|
||||
id: branches
|
||||
run: |
|
||||
set -xe
|
||||
branches=""
|
||||
if [[ "${{ github.event_name }}" == "push" ]]; then
|
||||
if [[ ! -n "${{ vars.block_master }}" && "${{ github.ref_name }}" == "master" ]]; then
|
||||
branches="master"
|
||||
elif [[ ! -n "${{ vars.block_develop }}" && "${{ github.ref_name }}" == "develop" ]]; then
|
||||
branches="develop"
|
||||
else
|
||||
branches="${{ github.ref_name }}"
|
||||
fi
|
||||
else
|
||||
# from a schedule:
|
||||
if [[ ! -n "${{ vars.block_master }}" ]]; then
|
||||
branches="master"
|
||||
fi
|
||||
if [[ ! -n "${{ vars.block_develop }}" ]]; then
|
||||
branches="${branches} develop"
|
||||
fi
|
||||
fi
|
||||
echo "branches=$branches" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Checkout master repository
|
||||
uses: actions/checkout@v4
|
||||
if: contains(steps.branches.outputs.branches, 'master')
|
||||
with:
|
||||
ref: master
|
||||
path: master
|
||||
persist-credentials: false
|
||||
|
||||
- name: Checkout develop repository
|
||||
uses: actions/checkout@v4
|
||||
if: contains(steps.branches.outputs.branches, 'develop')
|
||||
with:
|
||||
ref: develop
|
||||
path: develop
|
||||
persist-credentials: false
|
||||
|
||||
- name: Check for module updates
|
||||
run: |
|
||||
branches="${{ steps.branches.outputs.branches }}"
|
||||
|
||||
# Set up Git
|
||||
git config --global user.name "boost-commitbot"
|
||||
git config --global user.email "boost-commitbot@example.com"
|
||||
|
||||
# Update each branch
|
||||
for branch in $branches; do
|
||||
cd $branch
|
||||
module_paths=$(git config --file .gitmodules --get-regexp '^submodule\..*\.path$')
|
||||
while IFS=' ' read -r key path; do
|
||||
submodule_name=$(echo "$key" | awk -F '.' '{print $2}')
|
||||
submodule_path=$(echo "$path")
|
||||
url=$(git config --file .gitmodules --get-regexp "^submodule\.$submodule_name\.url$" | awk '{print $2}')
|
||||
if [[ ! "$url" =~ ^https:// ]]; then
|
||||
basicreponame=$(basename $url)
|
||||
url=${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY_OWNER}/${basicreponame}
|
||||
fi
|
||||
hash=$(git ls-remote "$url" "refs/heads/$branch" | cut -f 1)
|
||||
hash="${hash#"${hash%%[![:space:]]*}"}"
|
||||
hash="${hash%"${hash##*[![:space:]]}"}"
|
||||
commit_id="${hash:0:8}"
|
||||
previous_hash=$(git ls-tree HEAD "$submodule_path" | awk '{print $3}')
|
||||
previous_hash="${previous_hash#"${previous_hash%%[![:space:]]*}"}"
|
||||
previous_hash="${previous_hash%"${previous_hash##*[![:space:]]}"}"
|
||||
previous_commit_id="${previous_hash:0:8}"
|
||||
if [ "$hash" == "$previous_hash" ]; then
|
||||
echo "$submodule_name ($commit_id): OK"
|
||||
else
|
||||
echo "$submodule_name: $previous_commit_id -> $commit_id"
|
||||
set -x
|
||||
set +e
|
||||
git submodule update --init "$submodule_path"
|
||||
git submodule update --remote "$submodule_path"
|
||||
git add "$submodule_path"
|
||||
git commit -m "Update $submodule_name from $branch"
|
||||
set -e
|
||||
set +x
|
||||
fi
|
||||
done <<< "$module_paths"
|
||||
cd ..
|
||||
done
|
||||
|
||||
- name: Push changes from master
|
||||
uses: ad-m/github-push-action@v0.8.0
|
||||
if: contains(steps.branches.outputs.branches, 'master')
|
||||
with:
|
||||
# github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
github_token: ${{ secrets.CI_PAT }}
|
||||
branch: master
|
||||
directory: master
|
||||
|
||||
- name: Push changes from develop
|
||||
uses: ad-m/github-push-action@v0.8.0
|
||||
if: contains(steps.branches.outputs.branches, 'develop')
|
||||
with:
|
||||
# github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
github_token: ${{ secrets.CI_PAT }}
|
||||
branch: develop
|
||||
directory: develop
|
30
.github/workflows/release-cmake.yml
vendored
30
.github/workflows/release-cmake.yml
vendored
|
@ -23,17 +23,13 @@ jobs:
|
|||
- name: Create archives
|
||||
run: |
|
||||
tar -czf ${{ github.ref_name }}-cmake.tar.gz ${{ github.ref_name }}
|
||||
sha256sum ${{ github.ref_name }}-cmake.tar.gz > ${{ github.ref_name }}-cmake.tar.gz.txt
|
||||
tar -cJf ${{ github.ref_name }}-cmake.tar.xz ${{ github.ref_name }}
|
||||
sha256sum ${{ github.ref_name }}-cmake.tar.xz > ${{ github.ref_name }}-cmake.tar.xz.txt
|
||||
|
||||
- uses: softprops/action-gh-release@v2
|
||||
- uses: softprops/action-gh-release@v1
|
||||
with:
|
||||
files: |
|
||||
${{ github.ref_name }}-cmake.tar.gz
|
||||
${{ github.ref_name }}-cmake.tar.gz.txt
|
||||
${{ github.ref_name }}-cmake.tar.xz
|
||||
${{ github.ref_name }}-cmake.tar.xz.txt
|
||||
|
||||
release-windows-cmake:
|
||||
runs-on: windows-latest
|
||||
|
@ -55,17 +51,13 @@ jobs:
|
|||
shell: cmd
|
||||
run: |
|
||||
7z a ${{ github.ref_name }}-cmake.zip ${{ github.ref_name }}
|
||||
sha256sum ${{ github.ref_name }}-cmake.zip > ${{ github.ref_name }}-cmake.zip.txt
|
||||
7z a ${{ github.ref_name }}-cmake.7z ${{ github.ref_name }}
|
||||
sha256sum ${{ github.ref_name }}-cmake.7z > ${{ github.ref_name }}-cmake.7z.txt
|
||||
|
||||
- uses: softprops/action-gh-release@v2
|
||||
- uses: softprops/action-gh-release@v1
|
||||
with:
|
||||
files: |
|
||||
${{ github.ref_name }}-cmake.zip
|
||||
${{ github.ref_name }}-cmake.zip.txt
|
||||
${{ github.ref_name }}-cmake.7z
|
||||
${{ github.ref_name }}-cmake.7z.txt
|
||||
|
||||
release-posix-b2-nodocs:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -83,29 +75,24 @@ jobs:
|
|||
run: |
|
||||
find ${{ github.ref_name }} -name ".git" -prune -exec rm -rf {} +
|
||||
|
||||
- name: Move headers, remove docs
|
||||
- name: Move headers
|
||||
shell: bash
|
||||
run: |
|
||||
cd ${{ github.ref_name }}
|
||||
cp -r libs/*/include/boost libs/numeric/*/include/boost .
|
||||
rm -rf libs/*/include libs/numeric/*/include
|
||||
rm -rf libs/*/doc libs/numeric/*/doc
|
||||
rm -f CMakeLists.txt
|
||||
|
||||
- name: Create archives
|
||||
run: |
|
||||
tar -czf ${{ github.ref_name }}-b2-nodocs.tar.gz ${{ github.ref_name }}
|
||||
sha256sum ${{ github.ref_name }}-b2-nodocs.tar.gz > ${{ github.ref_name }}-b2-nodocs.tar.gz.txt
|
||||
tar -cJf ${{ github.ref_name }}-b2-nodocs.tar.xz ${{ github.ref_name }}
|
||||
sha256sum ${{ github.ref_name }}-b2-nodocs.tar.xz > ${{ github.ref_name }}-b2-nodocs.tar.xz.txt
|
||||
|
||||
- uses: softprops/action-gh-release@v2
|
||||
- uses: softprops/action-gh-release@v1
|
||||
with:
|
||||
files: |
|
||||
${{ github.ref_name }}-b2-nodocs.tar.gz
|
||||
${{ github.ref_name }}-b2-nodocs.tar.gz.txt
|
||||
${{ github.ref_name }}-b2-nodocs.tar.xz
|
||||
${{ github.ref_name }}-b2-nodocs.tar.xz.txt
|
||||
|
||||
release-windows-b2-nodocs:
|
||||
runs-on: windows-latest
|
||||
|
@ -123,27 +110,22 @@ jobs:
|
|||
run: |
|
||||
find ${{ github.ref_name }} -name ".git" -prune -exec rm -rf {} +
|
||||
|
||||
- name: Move headers, remove docs
|
||||
- name: Move headers
|
||||
shell: bash
|
||||
run: |
|
||||
cd ${{ github.ref_name }}
|
||||
cp -r libs/*/include/boost libs/numeric/*/include/boost .
|
||||
rm -rf libs/*/include libs/numeric/*/include
|
||||
rm -rf libs/*/doc libs/numeric/*/doc
|
||||
rm -f CMakeLists.txt
|
||||
|
||||
- name: Create archives
|
||||
shell: cmd
|
||||
run: |
|
||||
7z a ${{ github.ref_name }}-b2-nodocs.zip ${{ github.ref_name }}
|
||||
sha256sum ${{ github.ref_name }}-b2-nodocs.zip > ${{ github.ref_name }}-b2-nodocs.zip.txt
|
||||
7z a ${{ github.ref_name }}-b2-nodocs.7z ${{ github.ref_name }}
|
||||
sha256sum ${{ github.ref_name }}-b2-nodocs.7z > ${{ github.ref_name }}-b2-nodocs.7z.txt
|
||||
|
||||
- uses: softprops/action-gh-release@v2
|
||||
- uses: softprops/action-gh-release@v1
|
||||
with:
|
||||
files: |
|
||||
${{ github.ref_name }}-b2-nodocs.zip
|
||||
${{ github.ref_name }}-b2-nodocs.zip.txt
|
||||
${{ github.ref_name }}-b2-nodocs.7z
|
||||
${{ github.ref_name }}-b2-nodocs.7z.txt
|
||||
|
|
25
.gitmodules
vendored
25
.gitmodules
vendored
|
@ -353,6 +353,11 @@
|
|||
url = ../type_traits.git
|
||||
fetchRecurseSubmodules = on-demand
|
||||
branch = .
|
||||
[submodule "compatibility"]
|
||||
path = libs/compatibility
|
||||
url = ../compatibility.git
|
||||
fetchRecurseSubmodules = on-demand
|
||||
branch = .
|
||||
[submodule "bind"]
|
||||
path = libs/bind
|
||||
url = ../bind.git
|
||||
|
@ -823,23 +828,3 @@
|
|||
url = ../scope.git
|
||||
fetchRecurseSubmodules = on-demand
|
||||
branch = .
|
||||
[submodule "boostlook"]
|
||||
path = tools/boostlook
|
||||
url = ../boostlook.git
|
||||
fetchRecurseSubmodules = on-demand
|
||||
branch = .
|
||||
[submodule "parser"]
|
||||
path = libs/parser
|
||||
url = ../parser.git
|
||||
fetchRecurseSubmodules = on-demand
|
||||
branch = .
|
||||
[submodule "mqtt5"]
|
||||
path = libs/mqtt5
|
||||
url = ../mqtt5.git
|
||||
fetchRecurseSubmodules = on-demand
|
||||
branch = .
|
||||
[submodule "hash2"]
|
||||
path = libs/hash2
|
||||
url = ../hash2.git
|
||||
fetchRecurseSubmodules = on-demand
|
||||
branch = .
|
||||
|
|
|
@ -10,7 +10,7 @@ if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR AND NOT CMAKE_BUILD_TYPE A
|
|||
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release" "MinSizeRel" "RelWithDebInfo")
|
||||
endif()
|
||||
|
||||
project(Boost VERSION 1.88.0 LANGUAGES CXX)
|
||||
project(Boost VERSION 1.85.0 LANGUAGES CXX)
|
||||
|
||||
set(BOOST_SUPERPROJECT_VERSION ${PROJECT_VERSION})
|
||||
set(BOOST_SUPERPROJECT_SOURCE_DIR ${PROJECT_SOURCE_DIR})
|
||||
|
|
199
Jamroot
199
Jamroot
|
@ -1,6 +1,6 @@
|
|||
# Copyright Vladimir Prus 2002-2006.
|
||||
# Copyright Dave Abrahams 2005-2006.
|
||||
# Copyright René Ferdinand Rivera Morell 2005-2024.
|
||||
# Copyright Rene Rivera 2005-2007.
|
||||
# Copyright Douglas Gregor 2005.
|
||||
#
|
||||
# Distributed under the Boost Software License, Version 1.0.
|
||||
|
@ -122,8 +122,6 @@
|
|||
# runtime.
|
||||
#
|
||||
|
||||
require-b2 5.1.0 ;
|
||||
|
||||
# TODO:
|
||||
# - handle boost version
|
||||
# - handle python options such as pydebug
|
||||
|
@ -143,17 +141,15 @@ import property-set ;
|
|||
import threadapi-feature ;
|
||||
import option ;
|
||||
import property ;
|
||||
import project ;
|
||||
# Backslash because of `bcp --namespace`
|
||||
import tools/boost\_install/boost-install ;
|
||||
|
||||
path-constant BOOST_ROOT : . ;
|
||||
constant BOOST_VERSION : 1.88.0 ;
|
||||
constant BOOST_VERSION : 1.85.0 ;
|
||||
constant BOOST_JAMROOT_MODULE : $(__name__) ;
|
||||
|
||||
# Allow subprojects to simply `import config : requires ;` to get access to the requires rule
|
||||
import-search $(BOOST_ROOT)/libs/config/checks ;
|
||||
import-search $(BOOST_ROOT)/libs/predef/tools/check ;
|
||||
modules.poke : BOOST_BUILD_PATH : $(BOOST_ROOT)/libs/config/checks [ modules.peek : BOOST_BUILD_PATH ] ;
|
||||
|
||||
boostcpp.set-version $(BOOST_VERSION) ;
|
||||
|
||||
|
@ -173,10 +169,11 @@ if $(all-headers)
|
|||
constant BOOST_MODULARLAYOUT : $(all-headers) ;
|
||||
}
|
||||
|
||||
project /boost
|
||||
project boost
|
||||
: requirements <include>.
|
||||
|
||||
[ boostcpp.platform ]
|
||||
[ boostcpp.architecture ]
|
||||
[ boostcpp.address-model ]
|
||||
|
||||
# Disable auto-linking for all targets here, primarily because it caused
|
||||
# troubles with V2.
|
||||
|
@ -198,13 +195,6 @@ project /boost
|
|||
: build-dir bin.v2
|
||||
;
|
||||
|
||||
# General, top-level, modular project searching. Also include tools in the
|
||||
# project search.
|
||||
project-search /boost : libs tools ;
|
||||
# Temporary custom project searching to account for special library paths.
|
||||
project-search /boost : libs/numeric ;
|
||||
project-search /boost/numeric_conversion : libs/numeric/conversion ;
|
||||
|
||||
# This rule is called by Boost.Build to determine the name of target. We use it
|
||||
# to encode the build variant, compiler name and boost version in the target
|
||||
# name.
|
||||
|
@ -252,80 +242,40 @@ rule clang-darwin-cxxstd-11 ( properties * )
|
|||
return $(result) ;
|
||||
}
|
||||
|
||||
# All libraries.
|
||||
local all-libraries
|
||||
= [ MATCH .*libs/(.*)/meta/libraries.json : [ glob libs/*/meta/libraries.json ] ] ;
|
||||
all-libraries = [ MATCH .*libs/(.*)/build/.* : [ glob libs/*/build/Jamfile.v2 ]
|
||||
[ glob libs/*/build/Jamfile ] ] ;
|
||||
|
||||
# Find all the libraries that have something to build (the old way).
|
||||
local all-libraries-to-build
|
||||
= [ MATCH .*libs/(.*)/build/.* : [ glob libs/*/build/Jamfile.v2 ]
|
||||
[ glob libs/*/build/Jamfile ] ] ;
|
||||
all-libraries-to-build = [ sequence.unique $(all-libraries-to-build) ] ;
|
||||
all-libraries = [ sequence.unique $(all-libraries) ] ;
|
||||
# The function_types library has a Jamfile, but it's used for maintenance
|
||||
# purposes, there's no library to build and install.
|
||||
all-libraries-to-build = [ set.difference $(all-libraries-to-build) : function_types ] ;
|
||||
|
||||
# Find all the libraries that have a library-root build declaration (modular way).
|
||||
local all-libraries-modular-build
|
||||
= [ MATCH .*libs/(.*)/build.jam : [ glob libs/*/build.jam ] ] ;
|
||||
|
||||
# Modular and not are mutually exclusive as they have different lib targets.
|
||||
all-libraries-to-build = [ set.difference $(all-libraries-to-build) : $(all-libraries-modular-build) ] ;
|
||||
|
||||
# The header only libraries that are not of the new modular form. For which we
|
||||
# will create synthetic projects and targets to simulate the new modular form.
|
||||
local all-libraries-to-declare
|
||||
= [ set.difference $(all-libraries)
|
||||
: $(all-libraries-modular-build) $(all-libraries-to-build) ] ;
|
||||
if ! [ glob libs/numeric/conversion/build.jam ]
|
||||
{
|
||||
all-libraries-to-declare += numeric_conversion ;
|
||||
}
|
||||
if ! [ glob libs/numeric/interval/build.jam ]
|
||||
{
|
||||
all-libraries-to-declare += interval ;
|
||||
}
|
||||
if ! [ glob libs/numeric/odeint/build.jam ]
|
||||
{
|
||||
all-libraries-to-declare += odeint ;
|
||||
}
|
||||
if ! [ glob libs/numeric/ublas/build.jam ]
|
||||
{
|
||||
all-libraries-to-declare += ublas ;
|
||||
}
|
||||
all-libraries-to-declare = [ SORT $(all-libraries-to-declare) ] ;
|
||||
|
||||
# ECHO "INFO: Build Libraries:" [ SORT $(all-libraries-to-build) ] ;
|
||||
# ECHO "INFO: Modular Libraries:" [ SORT $(all-libraries-modular-build) ] ;
|
||||
# ECHO "INFO: Declared Libraries:" [ SORT $(all-libraries-to-declare) ] ;
|
||||
# EXIT : 0 ;
|
||||
all-libraries = [ set.difference $(all-libraries) : function_types ] ;
|
||||
|
||||
# Setup convenient aliases for all libraries.
|
||||
|
||||
local rule explicit-alias ( id : targets + )
|
||||
{
|
||||
alias $(id) : $(targets) ;
|
||||
explicit $(id) ;
|
||||
}
|
||||
|
||||
# First, the complicated libraries: where the target name in Jamfile is
|
||||
# different from its directory name.
|
||||
explicit
|
||||
[ alias prg_exec_monitor : libs/test/build//boost_prg_exec_monitor ]
|
||||
[ alias test_exec_monitor : libs/test/build//boost_test_exec_monitor ]
|
||||
[ alias unit_test_framework : libs/test/build//boost_unit_test_framework ]
|
||||
[ alias serialization : libs/serialization/build//boost_serialization ]
|
||||
[ alias wserialization : libs/serialization/build//boost_wserialization ]
|
||||
;
|
||||
for local l in $(all-libraries-to-build)
|
||||
explicit-alias prg_exec_monitor : libs/test/build//boost_prg_exec_monitor ;
|
||||
explicit-alias test_exec_monitor : libs/test/build//boost_test_exec_monitor ;
|
||||
explicit-alias unit_test_framework : libs/test/build//boost_unit_test_framework ;
|
||||
explicit-alias serialization : libs/serialization/build//boost_serialization ;
|
||||
explicit-alias wserialization : libs/serialization/build//boost_wserialization ;
|
||||
for local l in $(all-libraries)
|
||||
{
|
||||
if ! $(l) in test graph serialization headers
|
||||
{
|
||||
explicit [ alias $(l) : libs/$(l)/build//boost_$(l) ] ;
|
||||
}
|
||||
}
|
||||
for local l in $(all-libraries-modular-build)
|
||||
{
|
||||
if ! $(l) in test graph serialization headers
|
||||
{
|
||||
explicit [ alias $(l) : /boost/$(l)//boost_$(l) ] ;
|
||||
explicit-alias $(l) : libs/$(l)/build//boost_$(l) ;
|
||||
}
|
||||
}
|
||||
|
||||
# Log has an additional target
|
||||
explicit-alias log_setup : libs/log/build//boost_log_setup ;
|
||||
|
||||
rule do-nothing { }
|
||||
|
||||
rule generate-alias ( project name : property-set : sources * )
|
||||
|
@ -344,7 +294,7 @@ generate headers : $(all-headers)-headers : <generating-rule>@generate-alias <ac
|
|||
explicit headers ;
|
||||
|
||||
# Make project ids of all libraries known.
|
||||
for local l in $(all-libraries-to-build)
|
||||
for local l in $(all-libraries)
|
||||
{
|
||||
use-project /boost/$(l) : libs/$(l)/build ;
|
||||
}
|
||||
|
@ -356,7 +306,7 @@ if [ path.exists $(BOOST_ROOT)/tools/inspect/build ]
|
|||
|
||||
if [ path.exists $(BOOST_ROOT)/libs/wave/tool/build ]
|
||||
{
|
||||
use-project /boost/libs/wave/tool : $(BOOST_ROOT)/libs/wave/tool/build ;
|
||||
use-project /boost/libs/wave/tool : libs/wave/tool/build ;
|
||||
}
|
||||
|
||||
# Make the boost-install rule visible in subprojects
|
||||
|
@ -391,95 +341,4 @@ rule boost-lib ( name : sources * : requirements * : default-build * : usage-req
|
|||
|
||||
# Declare special top-level targets that build and install the desired variants
|
||||
# of the libraries.
|
||||
boostcpp.declare-targets $(all-libraries-to-build) $(all-libraries-modular-build) ;
|
||||
|
||||
# Declare a Boost library and run related declaration rules. This should be
|
||||
# called from the libroot/build.jam to define the components of a Boost lib.
|
||||
# The first arg is the base ID of the library. Each subsequence arg is a
|
||||
# Boost (boost-x) declaration rule to call with arguments.
|
||||
#
|
||||
# For example:
|
||||
#
|
||||
# call-if : boost-library serialization
|
||||
# : install boost_serialization boost_wserialization ;
|
||||
#
|
||||
rule boost-library ( id ? : options * : * )
|
||||
{
|
||||
# ECHO "INFO: Declare Boost library:" $(id) ;
|
||||
local called-boost-install ;
|
||||
for n in 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
||||
{
|
||||
local option = $($(n)) ;
|
||||
if $(option)
|
||||
{
|
||||
call-if : boost-$(option[1]) $(option[2-]) ;
|
||||
if $(option[1]) = install
|
||||
{
|
||||
called-boost-install = true ;
|
||||
}
|
||||
}
|
||||
}
|
||||
if ! $(called-boost-install)
|
||||
{
|
||||
# If the library didn't indicate an install build target it's likely
|
||||
# header only. We should declare empty install targets to allow for
|
||||
# generic handling.
|
||||
boost-install.boost-install ;
|
||||
}
|
||||
}
|
||||
|
||||
# Declare projects and targets for all placeholder, header only, not yet
|
||||
# modular libraries.
|
||||
#
|
||||
# NOTE: This has to be after the boost-* rule definitions to ensure that those
|
||||
# are available for import into the new projects.
|
||||
local location = [ project.attribute $(__name__) location ] ;
|
||||
for local lib in $(all-libraries-to-declare)
|
||||
{
|
||||
local lib-path
|
||||
= [ path.join $(location) libs $(lib) ] ;
|
||||
if $(lib) = numeric_conversion
|
||||
{
|
||||
lib-path = [ path.join $(location) libs/numeric/conversion ] ;
|
||||
}
|
||||
else if $(lib) in interval odeint ublas
|
||||
{
|
||||
lib-path = [ path.join $(location) libs/numeric/$(lib) ] ;
|
||||
}
|
||||
local lib-module
|
||||
= [ project.load $(lib-path) : synthesize ] ;
|
||||
modules.poke $(lib-module) : BOOST_LIB_PROJECT : /boost/$(lib) ;
|
||||
modules.poke $(lib-module) : BOOST_LIB_TARGET : boost_$(lib) ;
|
||||
project.push-current [ project.target $(lib-module) ] ;
|
||||
module $(lib-module)
|
||||
{
|
||||
project $(BOOST_LIB_PROJECT)
|
||||
: requirements
|
||||
<implicit-dependency>/boost//headers
|
||||
;
|
||||
alias $(BOOST_LIB_TARGET) ;
|
||||
}
|
||||
project.pop-current ;
|
||||
}
|
||||
|
||||
# Backslash because of `bcp --namespace`
|
||||
|
||||
if ! [ project.search /boost/tools/boost\_install ]
|
||||
{
|
||||
use-project /boost/tools/boost\_install : tools/boost\_install ;
|
||||
}
|
||||
|
||||
# Ensure "modular" libraries' projects are loaded before build request is
|
||||
# calculated. This is necessary for subprojects that define custom features
|
||||
# to be set by users on command line.
|
||||
# This part should stay at the bottom of the file, because subprojects may rely
|
||||
# on rules or constants from it.
|
||||
for local l in $(all-libraries-modular-build)
|
||||
{
|
||||
# project.find returns the module for the project, which ensures that the
|
||||
# project is loaded. The convoluted way the rule is invoked is due to the
|
||||
# fact that project.find can only be called from a project target instance.
|
||||
modules.call-in [ project.target $(__name__) ]
|
||||
: project.find /boost/$(l)
|
||||
: $(location) ;
|
||||
}
|
||||
boostcpp.declare-targets $(all-libraries) ;
|
||||
|
|
115
boostcpp.jam
115
boostcpp.jam
|
@ -185,7 +185,7 @@ else
|
|||
|
||||
rule tag ( name : type ? : property-set )
|
||||
{
|
||||
if $(type:E=x) in STATIC_LIB SHARED_LIB IMPORT_LIB
|
||||
if $(type) in STATIC_LIB SHARED_LIB IMPORT_LIB
|
||||
{
|
||||
local args = $(.format-name-args) ;
|
||||
if $(layout) = versioned
|
||||
|
@ -263,27 +263,11 @@ rule python-tag ( name : type ? : property-set )
|
|||
rule declare_install_and_stage_proper_targets ( libraries * )
|
||||
{
|
||||
local p = [ project.current ] ;
|
||||
local install-targets ;
|
||||
local stage-targets ;
|
||||
for local library in $(libraries)
|
||||
{
|
||||
local mp = [ project.search /boost/$(library) ] ;
|
||||
if $(mp)
|
||||
{
|
||||
install-targets += /boost/$(library)//install ;
|
||||
stage-targets += /boost/$(library)//stage ;
|
||||
}
|
||||
else
|
||||
{
|
||||
install-targets += libs/$(library)/build//install ;
|
||||
stage-targets += libs/$(library)/build//stage ;
|
||||
}
|
||||
}
|
||||
|
||||
alias install-proper : $(install-targets) ;
|
||||
alias install-proper : libs/$(libraries)/build//install ;
|
||||
$(p).mark-target-as-explicit install-proper ;
|
||||
|
||||
alias stage-proper : $(stage-targets) ;
|
||||
alias stage-proper : libs/$(libraries)/build//stage ;
|
||||
$(p).mark-target-as-explicit stage-proper ;
|
||||
}
|
||||
|
||||
|
@ -622,38 +606,49 @@ rule toolset-properties ( properties * )
|
|||
return [ property.select <target-os> <toolset> $(toolset-version-property) : $(properties) ] ;
|
||||
}
|
||||
|
||||
.deducible-architectures = arm loongarch mips power riscv s390x sparc x86 combined ;
|
||||
feature.feature x-deduced-platform
|
||||
: $(.deducible-architectures)_32 $(.deducible-architectures)_64
|
||||
: composite implicit optional propagated ;
|
||||
for a in $(.deducible-architectures)
|
||||
{
|
||||
feature.compose <x-deduced-platform>$(a)_32 : <architecture>$(a) <address-model>32 ;
|
||||
feature.compose <x-deduced-platform>$(a)_64 : <architecture>$(a) <address-model>64 ;
|
||||
}
|
||||
feature.feature deduced-address-model : 32 64 : propagated optional composite hidden ;
|
||||
feature.compose <deduced-address-model>32 : <address-model>32 ;
|
||||
feature.compose <deduced-address-model>64 : <address-model>64 ;
|
||||
|
||||
rule deduce-architecture ( properties * )
|
||||
rule deduce-address-model ( properties * )
|
||||
{
|
||||
local deduced-pl = [ property.select <x-deduced-platform> : $(properties) ] ;
|
||||
if $(deduced-pl)
|
||||
{
|
||||
return $(deduced-pl) ;
|
||||
}
|
||||
|
||||
local result ;
|
||||
local filtered = [ toolset-properties $(properties) ] ;
|
||||
|
||||
local names = 32 64 ;
|
||||
local idx = [ configure.find-builds "default address-model" : $(filtered)
|
||||
: /boost/architecture//32 "32-bit"
|
||||
: /boost/architecture//64 "64-bit" ] ;
|
||||
local deduced-am = $(names[$(idx)]) ;
|
||||
if ! $(deduced-am)
|
||||
{
|
||||
return ;
|
||||
}
|
||||
result = $(names[$(idx)]) ;
|
||||
|
||||
names = $(.deducible-architectures) ;
|
||||
idx = [ configure.find-builds "default architecture" : $(filtered)
|
||||
if $(result)
|
||||
{
|
||||
# Normally, returning composite feature here is equivalent to forcing
|
||||
# constituent properties as well. But we only want to indicate toolset
|
||||
# deduced default, so also pick whatever address-model is explicitly
|
||||
# specified, if any.
|
||||
result = <deduced-address-model>$(result) [ property.select <address-model> : $(properties) ] ;
|
||||
}
|
||||
return $(result) ;
|
||||
}
|
||||
|
||||
rule address-model ( )
|
||||
{
|
||||
return <conditional>@boostcpp.deduce-address-model ;
|
||||
}
|
||||
|
||||
local deducable-architectures = arm loongarch mips power riscv s390x sparc x86 combined ;
|
||||
feature.feature deduced-architecture : $(deducable-architectures) : propagated optional composite hidden ;
|
||||
for a in $(deducable-architectures)
|
||||
{
|
||||
feature.compose <deduced-architecture>$(a) : <architecture>$(a) ;
|
||||
}
|
||||
|
||||
rule deduce-architecture ( properties * )
|
||||
{
|
||||
local result ;
|
||||
local filtered = [ toolset-properties $(properties) ] ;
|
||||
local names = arm loongarch mips power riscv s390x sparc x86 combined ;
|
||||
local idx = [ configure.find-builds "default architecture" : $(filtered)
|
||||
: /boost/architecture//arm
|
||||
: /boost/architecture//loongarch
|
||||
: /boost/architecture//mips
|
||||
|
@ -663,35 +658,17 @@ rule deduce-architecture ( properties * )
|
|||
: /boost/architecture//sparc
|
||||
: /boost/architecture//x86
|
||||
: /boost/architecture//combined ] ;
|
||||
local deduced-arch = $(names[$(idx)]) ;
|
||||
if ! $(deduced-arch)
|
||||
result = $(names[$(idx)]) ;
|
||||
|
||||
if $(result)
|
||||
{
|
||||
return ;
|
||||
# See comment in deduce-address-model.
|
||||
result = <deduced-architecture>$(result) [ property.select <architecture> : $(properties) ] ;
|
||||
}
|
||||
|
||||
local requested-am = [ property.select <address-model> : $(properties) ] ;
|
||||
requested-am ?= <address-model>$(deduced-am) ;
|
||||
|
||||
local requested-arch = [ property.select <architecture> : $(properties) ] ;
|
||||
requested-arch ?= <architecture>$(deduced-arch) ;
|
||||
|
||||
deduced-pl = $(requested-arch:G=<x-deduced-platform>)_$(requested-am:G=) ;
|
||||
|
||||
if ! $(deduced-pl:G=) in [ feature.values <x-deduced-platform> ]
|
||||
{
|
||||
deduced-pl = ;
|
||||
}
|
||||
return $(deduced-pl) ;
|
||||
return $(result) ;
|
||||
}
|
||||
|
||||
|
||||
rule deduce-address-model ( properties * )
|
||||
rule architecture ( )
|
||||
{
|
||||
# this rule is a noop and exists for legacy reasons
|
||||
}
|
||||
|
||||
rule platform ( )
|
||||
{
|
||||
return <conditional>@boostcpp.deduce-architecture
|
||||
<conditional>@boostcpp.deduce-address-model ;
|
||||
return <conditional>@boostcpp.deduce-architecture ;
|
||||
}
|
||||
|
|
|
@ -198,7 +198,7 @@ explicit libraries ;
|
|||
|
||||
xinclude tools :
|
||||
../tools/quickbook/doc//quickbook
|
||||
../tools/boostbook/doc//boostbook
|
||||
../tools/boostbook/doc/boostbook.xml
|
||||
;
|
||||
explicit tools ;
|
||||
|
||||
|
|
|
@ -7,10 +7,10 @@
|
|||
(See accompanying file LICENSE_1_0.txt or copy at
|
||||
http://www.boost.org/LICENSE_1_0.txt) -->
|
||||
<title>Redirect to generated documentation</title>
|
||||
<meta http-equiv="refresh" content="0; URL=../../tools/boostbook/index.html">
|
||||
<meta http-equiv="refresh" content="0; URL=http://www.boost.org/doc/libs/master/doc/html/boostbook.html">
|
||||
</head>
|
||||
<body>
|
||||
Automatic redirection failed, please go to
|
||||
<a href="../../tools/boostbook/index.html">../../tools/boostbook/index.html</a>
|
||||
<a href="http://www.boost.org/doc/libs/master/doc/html/boostbook.html">http://www.boost.org/doc/libs/master/doc/html/boostbook.html</a>
|
||||
</body>
|
||||
</html>
|
||||
|
|
2
libs/any
2
libs/any
|
@ -1 +1 @@
|
|||
Subproject commit 8292e1831811488bee57feee690b818b0821cddd
|
||||
Subproject commit aee53090c04bd0a263480fae25fddddcef54ca82
|
|
@ -1 +1 @@
|
|||
Subproject commit e988ef9c4a7d64be2850dc8de18b6461e094d4ae
|
||||
Subproject commit 23f6b27c0d9916b9932baac898ae3009817a9153
|
|
@ -1 +1 @@
|
|||
Subproject commit 8ce699c7d8c10a7d3e6187bc98244d1d2f2958c8
|
||||
Subproject commit e65367991cb5fbdb8a7cf218ae38f69ca9a0a9f5
|
|
@ -1 +1 @@
|
|||
Subproject commit 5dcb2af5213ae132b7531e45e7f93258cc33ffd8
|
||||
Subproject commit 447e0b3a331930f8708ade0e42683d12de9dfbc3
|
|
@ -1 +1 @@
|
|||
Subproject commit b452220f5de0f6205433c08cee63742102a424d2
|
||||
Subproject commit ababd47970e8a5fa1bebc8ccad526c4f25bd867a
|
|
@ -1 +1 @@
|
|||
Subproject commit 199906f4e1789d8d182d478842ea4df9543d5fea
|
||||
Subproject commit 5bbcce0f6e855dc4009e2e6977c62e0520c39573
|
|
@ -1 +1 @@
|
|||
Subproject commit 1d8dfae490125bd63efedfa7a3ecf20e8e9b54a5
|
||||
Subproject commit 98b8be489fa7a74753a724d8d0772d90bcbed0fc
|
|
@ -1 +1 @@
|
|||
Subproject commit f64de6d045bf6aa3f39a672604bcccbc97291525
|
||||
Subproject commit 6865e94cc56a33bb8b162bf8d62cfe620b06d2b6
|
|
@ -1 +1 @@
|
|||
Subproject commit a541a8d5c16920e1836d09299915890d687efe36
|
||||
Subproject commit 9fbfdcb3577e9427815d4f8cc25b3a25d5b9696b
|
|
@ -1 +1 @@
|
|||
Subproject commit 22a7e222c9763b19714a05aa67fefd70888df70f
|
||||
Subproject commit ecdca0865d4d8fcfbf8e5b48914f2b5711c418ad
|
|
@ -1 +1 @@
|
|||
Subproject commit ef510872039483dc66b7b2263c43c273a9aaecd6
|
||||
Subproject commit ee0d6d543a37d9b7243682549e9ae359eb89daa9
|
|
@ -1 +1 @@
|
|||
Subproject commit 61cf72a85be54ded1d81211baaf61dc52ec6bed2
|
||||
Subproject commit 0b813affb41e0dd2a42c3c34033f4ae68431b3e9
|
|
@ -1 +1 @@
|
|||
Subproject commit 61b464c3eec8a2d3e4aae1275b5844a411caedae
|
||||
Subproject commit bba8d5f1011afc61b9fbaf0e96417d72cb09f8ec
|
1
libs/compatibility
Submodule
1
libs/compatibility
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit d0caac5c346f7e24b4f8ec1e55110119492b64bd
|
|
@ -1 +1 @@
|
|||
Subproject commit cf7907574d6159cd43e6cf687a7b656278c61dd0
|
||||
Subproject commit 36350b7de849300bd3d72a05d8bf890ca405a014
|
|
@ -1 +1 @@
|
|||
Subproject commit 0ef7f2b5daeaa125a53d98affba8f40091d24b17
|
||||
Subproject commit 37c9bddf0bdefaaae0ca5852c1a153d9fc43f278
|
|
@ -1 +1 @@
|
|||
Subproject commit 4e9d5a3a95418d9ca623d38f5c772d485c2c2baf
|
||||
Subproject commit 11385ec21012926e15a612e3bf9f9a71403c1e5b
|
|
@ -1 +1 @@
|
|||
Subproject commit 866fd30df1ab723e2104e3de504f4a8c116f2c41
|
||||
Subproject commit 6e697d796897b32b471b4f0740dcaa03d8ee57cc
|
|
@ -1 +1 @@
|
|||
Subproject commit b8179488b20eb1373bdbf5c7fcca963f072512df
|
||||
Subproject commit 6d214eb776456bf17fbee20780a034a23438084f
|
|
@ -1 +1 @@
|
|||
Subproject commit afd2ce33722e223d75723f3b44dc9fa94302e764
|
||||
Subproject commit 1bde50e400547e29336afe7ea0cd693d8c884fb6
|
|
@ -1 +1 @@
|
|||
Subproject commit 9d64c899df6fc62ea35523a8423ad0d7ac6c6078
|
||||
Subproject commit 9f285ef0c43c101e49b37bf5e6085e8d635887dc
|
|
@ -1 +1 @@
|
|||
Subproject commit 0dd7a76b1c051c048b4991b7aa9c8b5aeb5776ee
|
||||
Subproject commit 1dd2ca23cb74991d420ea85b9b764f0ac76367c1
|
|
@ -1 +1 @@
|
|||
Subproject commit 1e1ccb491edeb3a8580b6998c894c07968d4bbb5
|
||||
Subproject commit 083b41c17e34f1fc9b43ab796b40d0d8bece685c
|
|
@ -1 +1 @@
|
|||
Subproject commit 8b09bf7d0e8a13d1ef59aaff02a84d42acb034f3
|
||||
Subproject commit 1e1347c0b1910b9310ec1719edad8b0bf2fd03c8
|
|
@ -1 +1 @@
|
|||
Subproject commit dbbf042e0a9081b4119d491b788ae0fe7c03192a
|
||||
Subproject commit d7e1c1c4abcf8c1e90097279e485edea0b253a80
|
2
libs/crc
2
libs/crc
|
@ -1 +1 @@
|
|||
Subproject commit 75146a958410c789381a4609166c754d35548e2d
|
||||
Subproject commit e3b1e56890a701ded5e66929579fb7fa62ac6bcc
|
|
@ -1 +1 @@
|
|||
Subproject commit ddff876eeaab5f08844c4c8e88d1679f86ae8210
|
||||
Subproject commit 50719b212349f3d1268285c586331584d3dbfeb5
|
|
@ -1 +1 @@
|
|||
Subproject commit a54b2619f8f75861836114d02a3fc70c7c9b3474
|
||||
Subproject commit 9c3a0022b25d3e483f9100cc363bc93a72fd900a
|
2
libs/dll
2
libs/dll
|
@ -1 +1 @@
|
|||
Subproject commit c30df76b0492827c6e3b6177c733f45987094426
|
||||
Subproject commit 6c60dde50bf67138c90cc84938111866813feaff
|
|
@ -1 +1 @@
|
|||
Subproject commit b96250c3c66d310b51555fbf532245c47d71c1b9
|
||||
Subproject commit 8e20aa1462bf6dcadc338835df529a6d568431b1
|
|
@ -1 +1 @@
|
|||
Subproject commit c0b5c80603b8de7eeea8724c9a4f2761c3df06f2
|
||||
Subproject commit c9b436e5dfce85e8ae365e5aabbb872dd35c29eb
|
|
@ -1 +1 @@
|
|||
Subproject commit 9238ef8e7f97e619ed3e58bc7becf16b4966ccf0
|
||||
Subproject commit b9170a02f102250b308c9f94ed6593c5f30eab39
|
|
@ -1 +1 @@
|
|||
Subproject commit 238487b543e8863c647d31a82ccfc3fa11a960d9
|
||||
Subproject commit 88b8304e78dfab4baee5d6beca09938d2826061a
|
|
@ -1 +1 @@
|
|||
Subproject commit 30b312e5c0335831af61ad16802e888f5fb344ea
|
||||
Subproject commit a0c8edba38a4d31b449fcf7b7ada455977342596
|
|
@ -1 +1 @@
|
|||
Subproject commit a4fee292a5a71733796371443754849b2de62e5a
|
||||
Subproject commit e9f3a0a005eca8baa377f13423107b35985d9119
|
|
@ -1 +1 @@
|
|||
Subproject commit 904451bb8b094b426a69fbf33825c06677f2835f
|
||||
Subproject commit cc2f75ae30492b9de69b3b692f5c59afcb7dea5e
|
|
@ -1 +1 @@
|
|||
Subproject commit 66075102416bc5d0f8e0bd151a19013dadbf94ce
|
||||
Subproject commit 78ef371d2d90462671b90c3af407fae07820b193
|
|
@ -1 +1 @@
|
|||
Subproject commit f6b538dbed2e3047dcbd09eb3f5c7f1ffa90d0a9
|
||||
Subproject commit 28b88d07bb4807445462c3f5dab0efde6f532d32
|
|
@ -1 +1 @@
|
|||
Subproject commit 6fba35ace59e9e7b1c3007ca6246a42ed6ead145
|
||||
Subproject commit 895335874d67987ada0d8bf6ca1725e70642ed49
|
|
@ -1 +1 @@
|
|||
Subproject commit 53da4e0b2c8cd4969b09fa646d314ac0c414c1ff
|
||||
Subproject commit 7d4c03fa032299f2d46149b7b3136c9fd43e4f81
|
|
@ -1 +1 @@
|
|||
Subproject commit c12caf96084766105f9da53ac11efec6ba0e5e73
|
||||
Subproject commit f82eb32da79641697583a43be9988d7517d8553c
|
2
libs/gil
2
libs/gil
|
@ -1 +1 @@
|
|||
Subproject commit 201f31c76eed54b304f8d89e44da08a5e8825094
|
||||
Subproject commit 8994c2ff8ed8b88e0ffef9658a4c603c4a001fad
|
|
@ -1 +1 @@
|
|||
Subproject commit 54a94911e68dccf5812b32d018566566700499f3
|
||||
Subproject commit a649be53bd90ab3365c6c0c44414c80907cfd8a1
|
|
@ -1 +1 @@
|
|||
Subproject commit 275ee334d4c406643e9f560c40f9b73638cd9c7e
|
||||
Subproject commit e66cd6bc3fdba37b31440e013d026a10e26ca486
|
|
@ -1 +0,0 @@
|
|||
Subproject commit 14a374ea904cf7a58cfef65e11d1de067fe0dd82
|
|
@ -1 +1 @@
|
|||
Subproject commit 5c0228ed90ff32a54ba0b015ddae2b170062dcb1
|
||||
Subproject commit 0456900fadde4b07c84760eadea4ccc9f948fe28
|
|
@ -1 +1 @@
|
|||
Subproject commit 7db5d9db6615b40239a8bb9383a12bd56924bd07
|
||||
Subproject commit dc2f19f8815cbe0654df61bfc5f31ad8b06fc883
|
|
@ -1 +1 @@
|
|||
Subproject commit 2dfe66886d71b9a341433ea8b6ff225cc07da80b
|
||||
Subproject commit dea8e3445dc3ca29201498260307138b9460a70c
|
|
@ -1 +1 @@
|
|||
Subproject commit 1739eeb8871487074e1843d88e43dd2ae5f0786b
|
||||
Subproject commit 8e4caa9fca8ff92b739b570f399f4407da0ecc2f
|
|
@ -1 +1 @@
|
|||
Subproject commit ec5e251f547aa850e0e41a9ed204a08581931a6b
|
||||
Subproject commit 07ba0e376177409c396c109807c13b7181a98ebe
|
|
@ -1 +1 @@
|
|||
Subproject commit 8561bdb8bcd0a1b528d60c090407233b0c1d9148
|
||||
Subproject commit 6be38c3449a64b15213c6a490d357c9a2ac2470b
|
|
@ -1 +1 @@
|
|||
Subproject commit c2b846c57dd0bce0f7ab2c91b883e3b9ce423ceb
|
||||
Subproject commit 4f7219965a399051bb0d8088ea4ab3929b1ac3f2
|
|
@ -1 +1 @@
|
|||
Subproject commit 0b1048adf7571b42ae9f684b63e4383241b9e4a1
|
||||
Subproject commit 9f85ed6d62ff91c6dc4fc30e3a20e9049ec67585
|
|
@ -1 +1 @@
|
|||
Subproject commit 593ddc73820a4b1cddf3e8e3f0b2eadc4aa2ab85
|
||||
Subproject commit 1555e9c7fff978d94359fc3f6312187e1e2647d5
|
|
@ -1 +1 @@
|
|||
Subproject commit 865eb98c9ca7d37e95ed062c4d4197b15c1e3d18
|
||||
Subproject commit a17ffc25d303635fcc44dfa97d3e3c4b04e9db5e
|
|
@ -1 +1 @@
|
|||
Subproject commit aff38b5be343ac6f1588e3258d126224e5347934
|
||||
Subproject commit ed8f9cd32f4fde695d497502f696f6f861b68559
|
|
@ -1 +1 @@
|
|||
Subproject commit 1c89e3a56cda1b4709c31f561d71e37cd6ef3619
|
||||
Subproject commit 02e5821ab32c45fad719829e9644e5d681c9ba0b
|
|
@ -1 +1 @@
|
|||
Subproject commit 28381f4509813cbe6304ce5cbbd8f3d52473cc6d
|
||||
Subproject commit 5edb7eb4f4848546d3d285598374b5d37daae387
|
|
@ -1 +1 @@
|
|||
Subproject commit 4429fdb4a8b5e08e5b2cc57449f4c16b72887c7a
|
||||
Subproject commit fdd4d0632dd0904f6e9c656c45397fe8ef985bc9
|
2
libs/log
2
libs/log
|
@ -1 +1 @@
|
|||
Subproject commit 724e888b5a558f8dc3db64b4397ce23f83baa53e
|
||||
Subproject commit 2d932ddcb5b05a9b2cc0a9df2d8a6ff88883f2b3
|
|
@ -1 +1 @@
|
|||
Subproject commit 9b8703a2d6623405323b892f1d126a6b17ca1651
|
||||
Subproject commit 145778490c2d332c1411df6a5274a4b53ec3e091
|
|
@ -68,7 +68,7 @@ geometry Barend Gehrels <barend -at- xs4all.nl>, Bruno Lalande <bru
|
|||
geometry/extensions Barend Gehrels <barend -at- xs4all.nl>, Bruno Lalande <bruno.lalande -at- gmail.com>, Mateusz Loskot <mateusz -at- loskot.net>, Adam Wulkiewicz <adam.wulkiewicz -at- gmail.com>
|
||||
geometry/index Barend Gehrels <barend -at- xs4all.nl>, Bruno Lalande <bruno.lalande -at- gmail.com>, Mateusz Loskot <mateusz -at- loskot.net>, Adam Wulkiewicz <adam.wulkiewicz -at- gmail.com>, Vissarion Fisikopoulos <fisikop -at- gmail.com>
|
||||
gil Stefan Seefeld <stefan -at- seefeld.name>, Mateusz Loskot <mateusz -at- loskot.net>, Pranam Lashkari <plashkari628 -at- gmail.com>
|
||||
graph Jeremy W. Murphy <jeremy.william.murphy -at- gmail.com>
|
||||
graph K. Noel Belcourt <kbelco -at- sandia.gov>
|
||||
graph_parallel K. Noel Belcourt <kbelco -at- sandia.gov>
|
||||
hana Louis Dionne <ldionne.2 -at- gmail.com>
|
||||
heap Tim Blechmann <tim -at- klingt.org>
|
||||
|
@ -150,7 +150,7 @@ spirit/repository Joel de Guzman <joel -at- boost-consulting.com>, Hartmut K
|
|||
stacktrace Antony Polukhin <antoshkka -at- gmail.com>
|
||||
statechart Andreas Huber <ahd6974-boostorg -at- yahoo.com>
|
||||
static_assert John Maddock <john -at- johnmaddock.co.uk>
|
||||
static_string Krystian Stasiowski <sdkrystian@gmail.com>, Alan de Freitas <alandefreitas@gmail.com>, Vinnie Falco <vinnie.falco@gmail.com>
|
||||
static_string Alan de Freitas <alandefreitas@gmail.com>, Vinnie Falco <vinnie.falco@gmail.com>
|
||||
stl_interfaces Zach Laine <whatwasthataddress -at- gmail.com>
|
||||
system Peter Dimov <pdimov -at- gmail.com>
|
||||
test Gennadiy Rozental <rogeeff -at- gmail.com>, Raffi Enficiaud <raffi.enficiaud -at- free.fr>, Matt Borland <matt -at- mattborland.com>
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 529f3a759d83aa9437613666ea6293c9336d4069
|
||||
Subproject commit 434a017db4c7abc115d8a8ae08a446b70feb34f2
|
|
@ -1 +1 @@
|
|||
Subproject commit e9ff3ca0952e680871145f454925614d950cef4d
|
||||
Subproject commit 7c01072629d83a7b54c99de70ef535d699ebd200
|
|
@ -1 +1 @@
|
|||
Subproject commit e5da96b9b655fd0c310136b88f90f6243ce5705f
|
||||
Subproject commit 863d8b8d2b20f2acd0b5870f23e553df9ce90e6c
|
2
libs/mpi
2
libs/mpi
|
@ -1 +1 @@
|
|||
Subproject commit c548d5e72617b57b762105dac9f21be3ca00725a
|
||||
Subproject commit 347595c77379ac5cbfc6e4474fe315398fef355e
|
2
libs/mpl
2
libs/mpl
|
@ -1 +1 @@
|
|||
Subproject commit cd74f40d46321209b26ab516e044cda0f32d1fdf
|
||||
Subproject commit b440c45c2810acbddc917db057f2e5194da1a199
|
|
@ -1 +0,0 @@
|
|||
Subproject commit 7f4cfc21452f6954192fb832d86dd982699f4823
|
2
libs/msm
2
libs/msm
|
@ -1 +1 @@
|
|||
Subproject commit 33e77cbfc70956d4b99f3dfc9c1e83848fe2550b
|
||||
Subproject commit f607d5154df4a5cc7f5ae014f0796f0b21b8bfc4
|
|
@ -1 +1 @@
|
|||
Subproject commit 1e952cd5a7b7582bdfb26f7b2b45b667153d9cea
|
||||
Subproject commit d702a48363997f65fb717346f6694e0703902f8a
|
|
@ -1 +1 @@
|
|||
Subproject commit 6511131d128b054f66c6a657d93ac3490cc01281
|
||||
Subproject commit 51e01210078bae160ebc9fc4ede9281928d5b3c1
|
|
@ -1 +1 @@
|
|||
Subproject commit fa397b75356ff026610a70468f59906879272b5e
|
||||
Subproject commit 6397d04ff55741a29ca2c93975e26226cf773a7d
|
|
@ -1 +1 @@
|
|||
Subproject commit 105ac5c9f33d3700f27ba9ce09ee917d3365ae97
|
||||
Subproject commit 72429c3f48a1e70c08b5bd922ddebf7acddcbfb4
|
|
@ -1 +1 @@
|
|||
Subproject commit 565d0d754f851eb9447745b359ca5be6a033918c
|
||||
Subproject commit 2eda7413ac16dd4158005446438daf8a7e435dd9
|
|
@ -1 +1 @@
|
|||
Subproject commit 9e75be5d9e435739b086aee928736fc241e77a4a
|
||||
Subproject commit 1f4e47dfb395461a5c00d23b3728062f8290dfe6
|
|
@ -1 +1 @@
|
|||
Subproject commit 15d871b410ff92592c6f3e0a53550035e7817046
|
||||
Subproject commit 9208885085dbfa8ec82c4023ff7d72741785e27a
|
|
@ -1 +1 @@
|
|||
Subproject commit 121f3efde91de78ca018019904732f55d33b5788
|
||||
Subproject commit c60db27762ff9cc16529e069c3c15f2fa898f994
|
|
@ -1 +1 @@
|
|||
Subproject commit a3686af224a86dfcf5f12aeb039502bae82d2a6b
|
||||
Subproject commit 1e3270d8106a59ac0b9c6e317fbfc836d2c66427
|
|
@ -1 +1 @@
|
|||
Subproject commit c142f7bdc27ed5abf945370c3bd82750fc0bdef1
|
||||
Subproject commit c07f2b8d37ded87f6f9d5bac867550f6e61282c1
|
|
@ -1 +0,0 @@
|
|||
Subproject commit 6414f99e04d362182fa5d3ba87750c993db7e969
|
2
libs/pfr
2
libs/pfr
|
@ -1 +1 @@
|
|||
Subproject commit 3fe5ce61eee743c6da097c28bc0b84bdf29f6cc4
|
||||
Subproject commit 449bf360f7d7a945639710b0fbb670ffde70e772
|
|
@ -1 +1 @@
|
|||
Subproject commit bbdfaefc323ef1892107ae47ba87323eba4adb8b
|
||||
Subproject commit 0b8bfc4cff012d0f23049fc5a0009ac4abadceb4
|
|
@ -1 +1 @@
|
|||
Subproject commit 740c8076f9d02f0216e8f3dbb15d2fd80f67d7f4
|
||||
Subproject commit ec7da07ed13e0c61e50d945b574a12ae7ec83cf4
|
|
@ -1 +1 @@
|
|||
Subproject commit e1211a4ca467bb6512e99025772ca25afa8d6159
|
||||
Subproject commit 0fdfb49c3a6789e50169a44e88a07cc889001106
|
|
@ -1 +1 @@
|
|||
Subproject commit d899a718f190e9823d37411819e89e8e4e535c37
|
||||
Subproject commit c4ea7e40d365ba28faecef8917d5c3f1e0121bf9
|
|
@ -1 +1 @@
|
|||
Subproject commit e637f8483da1d2ae2e4a33dc6732c9dbb198a297
|
||||
Subproject commit 406cd3ecf36c19b94b4376241a4b3b43d1eae308
|
|
@ -1 +1 @@
|
|||
Subproject commit 830cb6bce0b54fc1b2d7806901c1b8c8716964b7
|
||||
Subproject commit e3a3c3655f4118fd15a02d8315f86a48db7390fd
|
|
@ -1 +1 @@
|
|||
Subproject commit fa5071af867bfd2480e3b004a4bee27127b951b6
|
||||
Subproject commit cf94735c87e073b33e54887a3d5e33598177ee1a
|
|
@ -1 +1 @@
|
|||
Subproject commit 3e7be69e1e405e1d5ddd232c69c024ee441592c5
|
||||
Subproject commit 47d5bc76f69e20625214381c930a2fad5765e2b3
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue