forked from boostorg/config
Compare commits
48 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f08b30eb30 | ||
|
|
c21e2dd829 | ||
|
|
a92e0f57c0 | ||
|
|
603c6aa3e8 | ||
|
|
24d3e2ca4b | ||
|
|
5f7c31cedb | ||
|
|
94cacbd913 | ||
|
|
6608e89f24 | ||
|
|
00cc76b72a | ||
|
|
ecafd603a2 | ||
|
|
b24536980d | ||
|
|
06298c8289 | ||
|
|
a3b029357a | ||
|
|
545cb9df17 | ||
|
|
7bfaeec317 | ||
|
|
9c80b692ae | ||
|
|
404c7831d9 | ||
|
|
61a676cbdc | ||
|
|
02f1595595 | ||
|
|
19701e05d4 | ||
|
|
504587b476 | ||
|
|
ca8cd0c287 | ||
|
|
4d9500c31c | ||
|
|
fd6da69296 | ||
|
|
ad95019348 | ||
|
|
9f9cbdc37f | ||
|
|
332e92270e | ||
|
|
a357ef2ee6 | ||
|
|
2919144a41 | ||
|
|
44b4e71c73 | ||
|
|
5734e160e0 | ||
|
|
b160041a1b | ||
|
|
8853b6bafa | ||
|
|
601598f832 | ||
|
|
f68e9c6e8d | ||
|
|
b8e57320d6 | ||
|
|
d3b2997e91 | ||
|
|
dba21bbaa1 | ||
|
|
ccff36321f | ||
|
|
b35f77942d | ||
|
|
ce6e42df6f | ||
|
|
1d2698c1f6 | ||
|
|
a98574fc12 | ||
|
|
9c34fb6585 | ||
|
|
54afd34839 | ||
|
|
9b8e3bcabb | ||
|
|
29c39d4585 | ||
|
|
9f8fbf36a6 |
@@ -25,6 +25,9 @@ git submodule update --init libs/detail
|
||||
git submodule update --init libs/core
|
||||
git submodule update --init libs/assert
|
||||
git submodule update --init libs/type_traits
|
||||
git submodule update --init libs/throw_exception
|
||||
git submodule update --init libs/static_assert
|
||||
git submodule update --init libs/preprocessor
|
||||
cp -r $TRAVIS_BUILD_DIR/* libs/config
|
||||
./bootstrap.sh
|
||||
./b2 headers
|
||||
|
||||
146
.github/workflows/ci.yml
vendored
146
.github/workflows/ci.yml
vendored
@@ -19,7 +19,7 @@ jobs:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
compiler: [ g++-11, g++-12, clang++-14 ]
|
||||
compiler: [ g++-11, g++-12, g++-13 ]
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
@@ -34,11 +34,11 @@ jobs:
|
||||
- name: Add repository
|
||||
run: sudo apt-add-repository -y "ppa:ubuntu-toolchain-r/test"
|
||||
- name: Install packages
|
||||
run: sudo apt install g++-11 g++-12 clang-14
|
||||
run: sudo apt install g++-11 g++-12 g++-13
|
||||
- name: Checkout main boost
|
||||
run: git clone -b develop --depth 1 https://github.com/boostorg/boost.git ../boost-root
|
||||
- name: Update Dependencies
|
||||
run: git submodule update --init tools/build tools/boost_install libs/headers libs/detail libs/core libs/assert libs/type_traits
|
||||
run: git submodule update --init tools/build tools/boost_install libs/headers libs/detail libs/core libs/assert libs/type_traits libs/static_assert libs/throw_exception libs/preprocessor
|
||||
working-directory: ../boost-root
|
||||
- name: Copy files
|
||||
run: cp -r $GITHUB_WORKSPACE/* libs/config
|
||||
@@ -63,7 +63,7 @@ jobs:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
compiler: [ clang++-11, clang++-12, clang++-13 ]
|
||||
compiler: [ clang++-15 ]
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
@@ -78,11 +78,11 @@ jobs:
|
||||
- name: Add repository
|
||||
run: sudo apt-add-repository -y "ppa:ubuntu-toolchain-r/test"
|
||||
- name: Install packages
|
||||
run: sudo apt install clang-11 clang-12 clang-13
|
||||
run: sudo apt install clang-15
|
||||
- name: Checkout main boost
|
||||
run: git clone -b develop --depth 1 https://github.com/boostorg/boost.git ../boost-root
|
||||
- name: Update Dependencies
|
||||
run: git submodule update --init tools/build tools/boost_install libs/headers libs/detail libs/core libs/assert libs/type_traits
|
||||
run: git submodule update --init tools/build tools/boost_install libs/headers libs/detail libs/core libs/assert libs/type_traits libs/static_assert libs/throw_exception libs/preprocessor
|
||||
working-directory: ../boost-root
|
||||
- name: Copy files
|
||||
run: cp -r $GITHUB_WORKSPACE/* libs/config
|
||||
@@ -126,7 +126,7 @@ jobs:
|
||||
- name: Checkout main boost
|
||||
run: git clone -b develop --depth 1 https://github.com/boostorg/boost.git ../boost-root
|
||||
- name: Update Dependencies
|
||||
run: git submodule update --init tools/build tools/boost_install libs/headers libs/detail libs/core libs/assert libs/type_traits
|
||||
run: git submodule update --init tools/build tools/boost_install libs/headers libs/detail libs/core libs/assert libs/type_traits libs/static_assert libs/throw_exception libs/preprocessor
|
||||
working-directory: ../boost-root
|
||||
- name: Copy files
|
||||
run: cp -r $GITHUB_WORKSPACE/* libs/config
|
||||
@@ -146,25 +146,31 @@ jobs:
|
||||
- name: Test
|
||||
run: ../../../b2 toolset=$TOOLSET cxxstd=03,11,14,17,2a
|
||||
working-directory: ../boost-root/libs/config/test
|
||||
macos_11:
|
||||
runs-on: macos-11
|
||||
ubuntu-focal-clang:
|
||||
runs-on: ubuntu-20.04
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
toolset: [ clang, gcc-11, gcc-10 ]
|
||||
compiler: [ clang++-11, clang++-12 ]
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: '0'
|
||||
- uses: mstachniuk/ci-skip@v1
|
||||
with:
|
||||
commit-filter: '[skip ci];[ci skip];[CI SKIP];[SKIP CI];***CI SKIP***;***SKIP CI***;[windows];[Windows];[WINDOWS];[linux];[Linux];[LINUX]'
|
||||
commit-filter: '[skip ci];[ci skip];[CI SKIP];[SKIP CI];***CI SKIP***;***SKIP CI***;[windows];[Windows];[WINDOWS];[apple];[Apple];[APPLE]'
|
||||
commit-filter-separator: ';'
|
||||
fail-fast: true
|
||||
- name: Set TOOLSET
|
||||
run: echo ${{ matrix.compiler }} | awk '/^g/ { print "TOOLSET=gcc" } /^clang/ { print "TOOLSET=clang" }' >> $GITHUB_ENV
|
||||
- name: Add repository
|
||||
run: sudo apt-add-repository -y "ppa:ubuntu-toolchain-r/test"
|
||||
- name: Install packages
|
||||
run: sudo apt install clang-11 clang-12
|
||||
- name: Checkout main boost
|
||||
run: git clone -b develop --depth 1 https://github.com/boostorg/boost.git ../boost-root
|
||||
- name: Update Dependencies
|
||||
run: git submodule update --init tools/build tools/boost_install libs/headers libs/detail libs/core libs/assert libs/type_traits
|
||||
run: git submodule update --init tools/build tools/boost_install libs/headers libs/detail libs/core libs/assert libs/type_traits libs/static_assert libs/throw_exception libs/preprocessor
|
||||
working-directory: ../boost-root
|
||||
- name: Copy files
|
||||
run: cp -r $GITHUB_WORKSPACE/* libs/config
|
||||
@@ -175,14 +181,17 @@ jobs:
|
||||
- name: Generate headers
|
||||
run: ./b2 headers
|
||||
working-directory: ../boost-root
|
||||
- name: Generate user config
|
||||
run: 'echo "using $TOOLSET : : ${{ matrix.compiler }} ;" > ~/user-config.jam'
|
||||
working-directory: ../boost-root
|
||||
- name: Config info
|
||||
run: ../../../b2 print_config_info toolset=${{ matrix.toolset }} cxxstd=03,11,14,17,2a
|
||||
run: ../../../b2 print_config_info toolset=$TOOLSET cxxstd=03,11,14,17,2a
|
||||
working-directory: ../boost-root/libs/config/test
|
||||
- name: Test
|
||||
run: ../../../b2 toolset=${{ matrix.toolset }} cxxstd=03,11,14,17,2a
|
||||
run: ../../../b2 toolset=$TOOLSET cxxstd=03,11,14,17,2a
|
||||
working-directory: ../boost-root/libs/config/test
|
||||
macos_12:
|
||||
runs-on: macos-12
|
||||
macos:
|
||||
runs-on: macos-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
@@ -199,7 +208,7 @@ jobs:
|
||||
- name: Checkout main boost
|
||||
run: git clone -b develop --depth 1 https://github.com/boostorg/boost.git ../boost-root
|
||||
- name: Update Dependencies
|
||||
run: git submodule update --init tools/build tools/boost_install libs/headers libs/detail libs/core libs/assert libs/type_traits
|
||||
run: git submodule update --init tools/build tools/boost_install libs/headers libs/detail libs/core libs/assert libs/type_traits libs/static_assert libs/throw_exception libs/preprocessor
|
||||
working-directory: ../boost-root
|
||||
- name: Copy files
|
||||
run: cp -r $GITHUB_WORKSPACE/* libs/config
|
||||
@@ -211,7 +220,7 @@ jobs:
|
||||
run: ./b2 headers
|
||||
working-directory: ../boost-root
|
||||
- name: Config info
|
||||
run: ../../../b2 print_config_info toolset=${{ matrix.toolset }} cxxstd=03,11,14,17,2a
|
||||
run: ../../../b2 print_config_info toolset=${{ matrix.toolset }} cxxstd=03,11,14,17,20
|
||||
working-directory: ../boost-root/libs/config/test
|
||||
- name: Test
|
||||
run: ../../../b2 toolset=${{ matrix.toolset }} cxxstd=03,11,14,17,2a
|
||||
@@ -237,7 +246,7 @@ jobs:
|
||||
- name: Checkout main boost
|
||||
run: git clone -b develop --depth 1 https://github.com/boostorg/boost.git ../boost-root
|
||||
- name: Update Dependencies
|
||||
run: git submodule update --init tools/build tools/boost_install libs/headers libs/detail libs/core libs/assert libs/type_traits
|
||||
run: git submodule update --init tools/build tools/boost_install libs/headers libs/detail libs/core libs/assert libs/type_traits libs/static_assert libs/throw_exception libs/preprocessor
|
||||
working-directory: ../boost-root
|
||||
- name: Copy files
|
||||
run: xcopy /s /e /q %GITHUB_WORKSPACE% libs\config
|
||||
@@ -249,10 +258,10 @@ jobs:
|
||||
run: b2 headers
|
||||
working-directory: ../boost-root
|
||||
- name: Config info
|
||||
run: ..\..\..\b2 print_config_info cxxstd=14,17 address-model=64 toolset=msvc-14.0
|
||||
run: ..\..\..\b2 print_config_info cxxstd=14,latest address-model=64 toolset=msvc-14.0
|
||||
working-directory: ../boost-root/libs/config/test
|
||||
- name: Test
|
||||
run: ..\..\..\b2 --hash address-model=64 cxxstd=14,17 toolset=msvc-14.0
|
||||
run: ..\..\..\b2 --hash address-model=64 cxxstd=14,latest toolset=msvc-14.0
|
||||
working-directory: ../boost-root/libs/config/test
|
||||
windows_msvc_14_2:
|
||||
runs-on: windows-2019
|
||||
@@ -275,7 +284,7 @@ jobs:
|
||||
- name: Checkout main boost
|
||||
run: git clone -b develop --depth 1 https://github.com/boostorg/boost.git ../boost-root
|
||||
- name: Update Dependencies
|
||||
run: git submodule update --init tools/build tools/boost_install libs/headers libs/detail libs/core libs/assert libs/type_traits
|
||||
run: git submodule update --init tools/build tools/boost_install libs/headers libs/detail libs/core libs/assert libs/type_traits libs/static_assert libs/throw_exception libs/preprocessor
|
||||
working-directory: ../boost-root
|
||||
- name: Copy files
|
||||
run: xcopy /s /e /q %GITHUB_WORKSPACE% libs\config
|
||||
@@ -287,10 +296,10 @@ jobs:
|
||||
run: b2 headers
|
||||
working-directory: ../boost-root
|
||||
- name: Config info
|
||||
run: ..\..\..\b2 print_config_info cxxstd=14,17,latest address-model=64 toolset=msvc-14.2
|
||||
run: ..\..\..\b2 print_config_info cxxstd=14,17,20,latest address-model=64 toolset=msvc-14.2
|
||||
working-directory: ../boost-root/libs/config/test
|
||||
- name: Test
|
||||
run: ..\..\..\b2 --hash address-model=64 cxxstd=14,17,latest toolset=msvc-14.2
|
||||
run: ..\..\..\b2 --hash address-model=64 cxxstd=14,17,20,latest toolset=msvc-14.2
|
||||
working-directory: ../boost-root/libs/config/test
|
||||
windows_msvc_14_3:
|
||||
runs-on: windows-2022
|
||||
@@ -313,7 +322,7 @@ jobs:
|
||||
- name: Checkout main boost
|
||||
run: git clone -b develop --depth 1 https://github.com/boostorg/boost.git ../boost-root
|
||||
- name: Update Dependencies
|
||||
run: git submodule update --init tools/build tools/boost_install libs/headers libs/detail libs/core libs/assert libs/type_traits
|
||||
run: git submodule update --init tools/build tools/boost_install libs/headers libs/detail libs/core libs/assert libs/type_traits libs/static_assert libs/throw_exception libs/preprocessor
|
||||
working-directory: ../boost-root
|
||||
- name: Copy files
|
||||
run: xcopy /s /e /q %GITHUB_WORKSPACE% libs\config
|
||||
@@ -325,7 +334,7 @@ jobs:
|
||||
run: b2 headers
|
||||
working-directory: ../boost-root
|
||||
- name: Config info
|
||||
run: ..\..\..\b2 print_config_info cxxstd=14,17,latest address-model=64 toolset=msvc-14.3
|
||||
run: ..\..\..\b2 print_config_info cxxstd=14,17,20,latest address-model=64 toolset=msvc-14.3
|
||||
working-directory: ../boost-root/libs/config/test
|
||||
- name: Test
|
||||
run: ..\..\..\b2 --hash address-model=64 cxxstd=14,17,20,latest toolset=msvc-14.3
|
||||
@@ -351,7 +360,7 @@ jobs:
|
||||
- name: Checkout main boost
|
||||
run: git clone -b develop --depth 1 https://github.com/boostorg/boost.git ../boost-root
|
||||
- name: Update Dependencies
|
||||
run: git submodule update --init tools/build tools/boost_install libs/headers libs/detail libs/core libs/assert libs/type_traits
|
||||
run: git submodule update --init tools/build tools/boost_install libs/headers libs/detail libs/core libs/assert libs/type_traits libs/static_assert libs/throw_exception libs/preprocessor
|
||||
working-directory: ../boost-root
|
||||
- name: Copy files
|
||||
run: xcopy /s /e /q %GITHUB_WORKSPACE% libs\config
|
||||
@@ -368,20 +377,20 @@ jobs:
|
||||
- name: Test
|
||||
run: ..\..\..\b2 --hash address-model=64 cxxstd=14,17,latest toolset=clang-win embed-manifest-via=linker
|
||||
working-directory: ../boost-root/libs/config/test
|
||||
non_intel_ubuntu_20_04_gcc:
|
||||
runs-on: ubuntu-20.04
|
||||
non_intel_ubuntu_22_04_gcc:
|
||||
runs-on: ubuntu-22.04
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
qemu_arch: [ aarch64, s390x, ppc64le ]
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: uraimo/run-on-arch-action@v2
|
||||
- uses: uraimo/run-on-arch-action@v3
|
||||
name: Run commands
|
||||
id: runcmd
|
||||
with:
|
||||
arch: ${{ matrix.qemu_arch }}
|
||||
distro: ubuntu20.04
|
||||
distro: ubuntu22.04
|
||||
|
||||
# Not required, but speeds up builds by storing container images in
|
||||
# a GitHub package registry.
|
||||
@@ -391,7 +400,7 @@ jobs:
|
||||
run: |
|
||||
uname -a
|
||||
apt update
|
||||
apt -y install gcc g++ git python
|
||||
apt -y install gcc g++ git python3
|
||||
echo $PWD
|
||||
config=$PWD
|
||||
cd ..
|
||||
@@ -399,25 +408,25 @@ jobs:
|
||||
cd boost-root
|
||||
rm -rf libs/config/*
|
||||
cp -r $config/* libs/config
|
||||
git submodule update --init tools/build tools/boost_install libs/headers libs/detail libs/core libs/assert libs/type_traits
|
||||
git submodule update --init tools/build tools/boost_install libs/headers libs/detail libs/core libs/assert libs/type_traits libs/static_assert libs/throw_exception libs/preprocessor
|
||||
./bootstrap.sh
|
||||
./b2 headers
|
||||
./b2 toolset=gcc libs/config/test//print_config_info libs/config/test//print_math_info
|
||||
cd libs/config/test && ../../../b2 toolset=gcc cxxstd=03,11,14,17
|
||||
non_intel_ubuntu_20_04_clang:
|
||||
runs-on: ubuntu-20.04
|
||||
non_intel_ubuntu_22_04_clang:
|
||||
runs-on: ubuntu-22.04
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
qemu_arch: [ aarch64, ppc64le ]
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: uraimo/run-on-arch-action@v2
|
||||
- uses: uraimo/run-on-arch-action@v3
|
||||
name: Run commands
|
||||
id: runcmd
|
||||
with:
|
||||
arch: ${{ matrix.qemu_arch }}
|
||||
distro: ubuntu20.04
|
||||
distro: ubuntu22.04
|
||||
|
||||
# Not required, but speeds up builds by storing container images in
|
||||
# a GitHub package registry.
|
||||
@@ -427,7 +436,7 @@ jobs:
|
||||
run: |
|
||||
uname -a
|
||||
apt update
|
||||
apt -y install clang gcc g++ git python
|
||||
apt -y install clang gcc g++ git python3
|
||||
echo $PWD
|
||||
config=$PWD
|
||||
cd ..
|
||||
@@ -435,14 +444,14 @@ jobs:
|
||||
cd boost-root
|
||||
rm -rf libs/config/*
|
||||
cp -r $config/* libs/config
|
||||
git submodule update --init tools/build tools/boost_install libs/headers libs/detail libs/core libs/assert libs/type_traits
|
||||
git submodule update --init tools/build tools/boost_install libs/headers libs/detail libs/core libs/assert libs/type_traits libs/static_assert libs/throw_exception libs/preprocessor
|
||||
./bootstrap.sh
|
||||
./b2 headers
|
||||
./b2 toolset=clang libs/config/test//print_config_info libs/config/test//print_math_info
|
||||
cd libs/config/test
|
||||
../../../b2 toolset=clang cxxstd=03,11,14,17
|
||||
emscripten_wasm:
|
||||
runs-on: ubuntu-20.04
|
||||
runs-on: ubuntu-22.04
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
@@ -471,7 +480,7 @@ jobs:
|
||||
- name: Checkout main boost
|
||||
run: git clone -b develop --depth 1 https://github.com/boostorg/boost.git ../boost-root
|
||||
- name: Update Dependencies
|
||||
run: git submodule update --init tools/build tools/boost_install libs/headers libs/detail libs/core libs/assert libs/type_traits
|
||||
run: git submodule update --init tools/build tools/boost_install libs/headers libs/detail libs/core libs/assert libs/type_traits libs/static_assert libs/throw_exception libs/preprocessor
|
||||
working-directory: ../boost-root
|
||||
- name: Copy files
|
||||
run: cp -r $GITHUB_WORKSPACE/* libs/config
|
||||
@@ -518,58 +527,3 @@ jobs:
|
||||
source ../emsdk/emsdk_env.sh
|
||||
emcc -pthread -s EXIT_RUNTIME=1 -s PTHREAD_POOL_SIZE=32 -s DISABLE_EXCEPTION_CATCHING=0 -I. -O3 -o config_test_pthread libs/config/test/config_test.cpp
|
||||
node --experimental-wasm-threads config_test_pthread
|
||||
ubuntu-cuda:
|
||||
runs-on: ubuntu-20.04
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
std: [ 11, 14, 17 ]
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: '0'
|
||||
- uses: mstachniuk/ci-skip@v1
|
||||
with:
|
||||
commit-filter: '[skip ci];[ci skip];[CI SKIP];[SKIP CI];***CI SKIP***;***SKIP CI***;[windows];[Windows];[WINDOWS];[apple];[Apple];[APPLE]'
|
||||
commit-filter-separator: ';'
|
||||
fail-fast: true
|
||||
- uses: Jimver/cuda-toolkit@v0.2.4
|
||||
- name: Add repository
|
||||
run: sudo apt-add-repository -y "ppa:ubuntu-toolchain-r/test"
|
||||
- name: Install packages
|
||||
run: sudo apt install g++-11 clang-11
|
||||
- name: Checkout main boost
|
||||
run: git clone -b develop --depth 1 https://github.com/boostorg/boost.git ../boost-root
|
||||
- name: Update Dependencies
|
||||
run: git submodule update --init tools/build tools/boost_install libs/headers libs/detail libs/core libs/assert libs/type_traits
|
||||
working-directory: ../boost-root
|
||||
- name: Copy files
|
||||
run: cp -r $GITHUB_WORKSPACE/* libs/config
|
||||
working-directory: ../boost-root
|
||||
- name: Bootstrap
|
||||
run: ./bootstrap.sh
|
||||
working-directory: ../boost-root
|
||||
- name: Generate headers
|
||||
run: ./b2 headers
|
||||
working-directory: ../boost-root
|
||||
- name: nvcc version
|
||||
run: nvcc --version
|
||||
working-directory: ../boost-root/libs/config/test
|
||||
- name: Config info nvcc
|
||||
run: nvcc -std=c++${{ matrix.std }} -o config_info -I../../.. config_info.cpp && ./config_info
|
||||
working-directory: ../boost-root/libs/config/test
|
||||
- name: Config_test nvcc
|
||||
run: nvcc -std=c++${{ matrix.std }} -o config_test -I../../.. config_test.cpp && ./config_test
|
||||
working-directory: ../boost-root/libs/config/test
|
||||
- name: Config_test nvcc-cuda
|
||||
run: nvcc -c -std=c++${{ matrix.std }} -I../../.. config_test.cu
|
||||
working-directory: ../boost-root/libs/config/test
|
||||
- name: Config info nvcc+clang
|
||||
run: nvcc -std=c++${{ matrix.std }} --compiler-bindir=clang++ -o config_info -I../../.. config_info.cpp && ./config_info
|
||||
working-directory: ../boost-root/libs/config/test
|
||||
- name: Config_test nvcc+clang
|
||||
run: nvcc -std=c++${{ matrix.std }} --compiler-bindir=clang++ -o config_test -I../../.. config_test.cpp -latomic && ./config_test
|
||||
working-directory: ../boost-root/libs/config/test
|
||||
- name: Config_test clang-cuda
|
||||
run: clang++ -nocudalib --no-cuda-version-check -c --cuda-gpu-arch=sm_75 -std=c++${{ matrix.std }} -I../../.. config_test.cu
|
||||
working-directory: ../boost-root/libs/config/test
|
||||
|
||||
32
build.jam
Normal file
32
build.jam
Normal file
@@ -0,0 +1,32 @@
|
||||
# Copyright René Ferdinand Rivera Morell 2023-2024
|
||||
# Distributed under the Boost Software License, Version 1.0.
|
||||
# (See accompanying file LICENSE_1_0.txt or copy at
|
||||
# http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
require-b2 5.2 ;
|
||||
|
||||
path-constant BOOST_CONFIG_ROOT : . ;
|
||||
import-search $(BOOST_CONFIG_ROOT)/checks ;
|
||||
|
||||
project /boost/config
|
||||
: common-requirements
|
||||
<include>include
|
||||
;
|
||||
|
||||
explicit
|
||||
[ alias boost_config : : : : <library>$(boost_dependencies) ]
|
||||
[ alias all : boost_config test ]
|
||||
[ alias testing
|
||||
: # sources
|
||||
: # requirements
|
||||
: # default-buidl
|
||||
: # usage-requirements
|
||||
<include>test
|
||||
]
|
||||
;
|
||||
|
||||
call-if : boost-library config
|
||||
;
|
||||
|
||||
use-project /boost/architecture : checks/architecture ;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#
|
||||
# *** DO NOT EDIT THIS FILE BY HAND ***
|
||||
# This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
# This file was automatically generated on Mon Jan 22 16:16:53 2024
|
||||
# by libs/config/tools/generate.cpp
|
||||
# Copyright John Maddock.
|
||||
# Use, modification and distribution are subject to the
|
||||
@@ -119,6 +119,7 @@ obj cxx14_return_type_deduction : test_case.cpp : <define>TEST_BOOST_NO_CXX14_RE
|
||||
obj cxx14_std_exchange : test_case.cpp : <define>TEST_BOOST_NO_CXX14_STD_EXCHANGE ;
|
||||
obj cxx14_variable_templates : test_case.cpp : <define>TEST_BOOST_NO_CXX14_VARIABLE_TEMPLATES ;
|
||||
obj cxx17 : test_case.cpp : <define>TEST_BOOST_NO_CXX17 ;
|
||||
obj cxx17_auto_nontype_template_params : test_case.cpp : <define>TEST_BOOST_NO_CXX17_AUTO_NONTYPE_TEMPLATE_PARAMS ;
|
||||
obj cxx17_deduction_guides : test_case.cpp : <define>TEST_BOOST_NO_CXX17_DEDUCTION_GUIDES ;
|
||||
obj cxx17_fold_expressions : test_case.cpp : <define>TEST_BOOST_NO_CXX17_FOLD_EXPRESSIONS ;
|
||||
obj cxx17_hdr_any : test_case.cpp : <define>TEST_BOOST_NO_CXX17_HDR_ANY ;
|
||||
@@ -245,6 +246,24 @@ obj cxx11_variadic_macros : test_case.cpp : <define>TEST_BOOST_NO_CXX11_VARIADIC
|
||||
obj cxx11_variadic_templates : test_case.cpp : <define>TEST_BOOST_NO_CXX11_VARIADIC_TEMPLATES ;
|
||||
obj void_returns : test_case.cpp : <define>TEST_BOOST_NO_VOID_RETURNS ;
|
||||
obj intrinsic_wchar_t : test_case.cpp : <define>TEST_BOOST_NO_INTRINSIC_WCHAR_T ;
|
||||
obj cpp_consteval_23 : std/cpp_consteval_23.cpp ;
|
||||
alias cpp_consteval : cpp_consteval_23 ;
|
||||
obj cpp_explicit_this_parameter_23 : std/cpp_explicit_this_parameter_23.cpp ;
|
||||
alias cpp_explicit_this_parameter : cpp_explicit_this_parameter_23 ;
|
||||
obj cpp_if_consteval_23 : std/cpp_if_consteval_23.cpp ;
|
||||
alias cpp_if_consteval : cpp_if_consteval_23 ;
|
||||
obj cpp_implicit_move_23 : std/cpp_implicit_move_23.cpp ;
|
||||
alias cpp_implicit_move : cpp_implicit_move_23 ;
|
||||
obj cpp_multidimensional_subscript_23 : std/cpp_multidimensional_subscript_23.cpp ;
|
||||
alias cpp_multidimensional_subscript : cpp_multidimensional_subscript_23 ;
|
||||
obj cpp_named_character_escapes_23 : std/cpp_named_character_escapes_23.cpp ;
|
||||
alias cpp_named_character_escapes : cpp_named_character_escapes_23 ;
|
||||
obj cpp_range_based_for_23 : std/cpp_range_based_for_23.cpp ;
|
||||
alias cpp_range_based_for : cpp_range_based_for_23 ;
|
||||
obj cpp_size_t_suffix_23 : std/cpp_size_t_suffix_23.cpp ;
|
||||
alias cpp_size_t_suffix : cpp_size_t_suffix_23 ;
|
||||
obj cpp_static_call_operator_23 : std/cpp_static_call_operator_23.cpp ;
|
||||
alias cpp_static_call_operator : cpp_static_call_operator_23 ;
|
||||
obj cpp_impl_destroying_delete_20 : std/cpp_impl_destroying_delete_20.cpp ;
|
||||
alias cpp_impl_destroying_delete : cpp_impl_destroying_delete_20 ;
|
||||
obj cpp_lib_destroying_delete_20 : std/cpp_lib_destroying_delete_20.cpp ;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
30
checks/std/cpp_consteval_23.cpp
Normal file
30
checks/std/cpp_consteval_23.cpp
Normal file
@@ -0,0 +1,30 @@
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
// Boost Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
// See http://www.boost.org/libs/config for the most recent version.//
|
||||
// Revision $Id$
|
||||
//
|
||||
|
||||
#ifdef __has_include
|
||||
#if __has_include(<version>)
|
||||
#include <version>
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef __cpp_consteval
|
||||
#error "Macro << __cpp_consteval is not set"
|
||||
#endif
|
||||
|
||||
#if __cpp_consteval < 202211
|
||||
#error "Macro __cpp_consteval had too low a value"
|
||||
#endif
|
||||
|
||||
int main( int, char *[] )
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
30
checks/std/cpp_explicit_this_parameter_23.cpp
Normal file
30
checks/std/cpp_explicit_this_parameter_23.cpp
Normal file
@@ -0,0 +1,30 @@
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
// Boost Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
// See http://www.boost.org/libs/config for the most recent version.//
|
||||
// Revision $Id$
|
||||
//
|
||||
|
||||
#ifdef __has_include
|
||||
#if __has_include(<version>)
|
||||
#include <version>
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef __cpp_explicit_this_parameter
|
||||
#error "Macro << __cpp_explicit_this_parameter is not set"
|
||||
#endif
|
||||
|
||||
#if __cpp_explicit_this_parameter < 202110
|
||||
#error "Macro __cpp_explicit_this_parameter had too low a value"
|
||||
#endif
|
||||
|
||||
int main( int, char *[] )
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
30
checks/std/cpp_if_consteval_23.cpp
Normal file
30
checks/std/cpp_if_consteval_23.cpp
Normal file
@@ -0,0 +1,30 @@
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
// Boost Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
// See http://www.boost.org/libs/config for the most recent version.//
|
||||
// Revision $Id$
|
||||
//
|
||||
|
||||
#ifdef __has_include
|
||||
#if __has_include(<version>)
|
||||
#include <version>
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef __cpp_if_consteval
|
||||
#error "Macro << __cpp_if_consteval is not set"
|
||||
#endif
|
||||
|
||||
#if __cpp_if_consteval < 202106
|
||||
#error "Macro __cpp_if_consteval had too low a value"
|
||||
#endif
|
||||
|
||||
int main( int, char *[] )
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
30
checks/std/cpp_implicit_move_23.cpp
Normal file
30
checks/std/cpp_implicit_move_23.cpp
Normal file
@@ -0,0 +1,30 @@
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
// Boost Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
// See http://www.boost.org/libs/config for the most recent version.//
|
||||
// Revision $Id$
|
||||
//
|
||||
|
||||
#ifdef __has_include
|
||||
#if __has_include(<version>)
|
||||
#include <version>
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef __cpp_implicit_move
|
||||
#error "Macro << __cpp_implicit_move is not set"
|
||||
#endif
|
||||
|
||||
#if __cpp_implicit_move < 202207
|
||||
#error "Macro __cpp_implicit_move had too low a value"
|
||||
#endif
|
||||
|
||||
int main( int, char *[] )
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-21.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user