forked from boostorg/config
Compare commits
7 Commits
mclow-patc
...
cpp23
Author | SHA1 | Date | |
---|---|---|---|
dd7fa7f902 | |||
6ec687639f | |||
c23bb933a9 | |||
ce665092fe | |||
33b12777cf | |||
015247ccd0 | |||
d483059795 |
@ -43,9 +43,9 @@ def main(ctx):
|
||||
linux_cxx("clang++-8 03,11,14,17", "clang++-8", packages="clang-8", llvm_os="xenial", llvm_ver="8", buildtype="boost", image="cppalliance/droneubuntu1804:1", environment={'TOOLSET': 'clang', 'COMPILER': 'clang++-8', 'CXXSTD': '03,11,14,17,2a', }, globalenv=globalenv),
|
||||
linux_cxx("clang++-9 03,11,14,17,2a", "clang++-9", packages="clang-9", llvm_os="xenial", llvm_ver="9", buildtype="boost", image="cppalliance/droneubuntu1804:1", environment={'TOOLSET': 'clang', 'COMPILER': 'clang++-9', 'CXXSTD': '03,11,14,17,2a', }, globalenv=globalenv),
|
||||
linux_cxx("clang++-10 03,11,14,17,20", "clang++-10", packages="clang-10", llvm_os="xenial", llvm_ver="10", buildtype="boost", image="cppalliance/droneubuntu1804:1", environment={'TOOLSET': 'clang', 'COMPILER': 'clang++-10', 'CXXSTD': '03,11,14,17,20', }, globalenv=globalenv),
|
||||
linux_cxx("Ubuntu g++-13", packages="g++-13", buildtype="boost", image="cppalliance/droneubuntu2304:1", environment={'TOOLSET': 'gcc', 'COMPILER': 'g++-13', 'CXXSTD': '14,17,20,23', }, globalenv=globalenv),
|
||||
osx_cxx("XCode-11.7 03,11,17,2a", "clang++", packages="", buildtype="boost", xcode_version="11.7", environment={'TOOLSET': 'clang', 'COMPILER': 'clang++', 'CXXSTD': '03,11,14,17,2a', }, globalenv=globalenv),
|
||||
osx_cxx("XCode-10.2 03,11,17,2a", "clang++", packages="", buildtype="boost", xcode_version="10.2", environment={'TOOLSET': 'clang', 'COMPILER': 'clang++', 'CXXSTD': '03,11,14,17,2a', }, globalenv=globalenv),
|
||||
osx_cxx("XCode-9.4.1 03,11,14,17", "clang++", packages="", buildtype="boost", xcode_version="9.4.1", environment={'TOOLSET': 'clang', 'COMPILER': 'clang++', 'CXXSTD': '03,11,14,17', }, globalenv=globalenv),
|
||||
]
|
||||
|
||||
# from https://github.com/boostorg/boost-ci
|
||||
|
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
@ -328,7 +328,7 @@ jobs:
|
||||
run: ..\..\..\b2 print_config_info cxxstd=14,17,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,latest toolset=msvc-14.3
|
||||
run: ..\..\..\b2 --hash address-model=64 cxxstd=14,17,20,latest toolset=msvc-14.3
|
||||
working-directory: ../boost-root/libs/config/test
|
||||
windows_clang_msvc_14_3:
|
||||
runs-on: windows-2022
|
||||
@ -570,9 +570,6 @@ jobs:
|
||||
- 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 nvcc-cuda+clang
|
||||
run: nvcc -c -std=c++${{ matrix.std }} --compiler-bindir=clang++ -I../../.. config_test.cu
|
||||
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
|
||||
|
@ -1,6 +1,6 @@
|
||||
#
|
||||
# *** DO NOT EDIT THIS FILE BY HAND ***
|
||||
# This file was automatically generated on Sun Jun 5 16:50:18 2022
|
||||
# This file was automatically generated on Sat Sep 9 19:03:28 2023
|
||||
# by libs/config/tools/generate.cpp
|
||||
# Copyright John Maddock.
|
||||
# Use, modification and distribution are subject to the
|
||||
@ -68,6 +68,7 @@ obj cxx03 : test_case.cpp : <define>TEST_BOOST_NO_CXX03 ;
|
||||
obj cxx11 : test_case.cpp : <define>TEST_BOOST_NO_CXX11 ;
|
||||
obj cxx11_addressof : test_case.cpp : <define>TEST_BOOST_NO_CXX11_ADDRESSOF ;
|
||||
obj cxx11_alignas : test_case.cpp : <define>TEST_BOOST_NO_CXX11_ALIGNAS ;
|
||||
obj cxx11_alignof : test_case.cpp : <define>TEST_BOOST_NO_CXX11_ALIGNOF ;
|
||||
obj cxx11_allocator : test_case.cpp : <define>TEST_BOOST_NO_CXX11_ALLOCATOR ;
|
||||
obj cxx11_atomic_smart_ptr : test_case.cpp : <define>TEST_BOOST_NO_CXX11_ATOMIC_SMART_PTR ;
|
||||
obj cxx11_defaulted_moves : test_case.cpp : <define>TEST_BOOST_NO_CXX11_DEFAULTED_MOVES ;
|
||||
@ -149,6 +150,15 @@ obj cxx20_hdr_span : test_case.cpp : <define>TEST_BOOST_NO_CXX20_HDR_SPAN ;
|
||||
obj cxx20_hdr_stop_token : test_case.cpp : <define>TEST_BOOST_NO_CXX20_HDR_STOP_TOKEN ;
|
||||
obj cxx20_hdr_syncstream : test_case.cpp : <define>TEST_BOOST_NO_CXX20_HDR_SYNCSTREAM ;
|
||||
obj cxx20_hdr_version : test_case.cpp : <define>TEST_BOOST_NO_CXX20_HDR_VERSION ;
|
||||
obj cxx23_hdr_expected : test_case.cpp : <define>TEST_BOOST_NO_CXX23_HDR_EXPECTED ;
|
||||
obj cxx23_hdr_flat_map : test_case.cpp : <define>TEST_BOOST_NO_CXX23_HDR_FLAT_MAP ;
|
||||
obj cxx23_hdr_flat_set : test_case.cpp : <define>TEST_BOOST_NO_CXX23_HDR_FLAT_SET ;
|
||||
obj cxx23_hdr_generator : test_case.cpp : <define>TEST_BOOST_NO_CXX23_HDR_GENERATOR ;
|
||||
obj cxx23_hdr_mdspan : test_case.cpp : <define>TEST_BOOST_NO_CXX23_HDR_MDSPAN ;
|
||||
obj cxx23_hdr_print : test_case.cpp : <define>TEST_BOOST_NO_CXX23_HDR_PRINT ;
|
||||
obj cxx23_hdr_spanstream : test_case.cpp : <define>TEST_BOOST_NO_CXX23_HDR_SPANSTREAM ;
|
||||
obj cxx23_hdr_stacktrace : test_case.cpp : <define>TEST_BOOST_NO_CXX23_HDR_STACKTRACE ;
|
||||
obj cxx23_hdr_stdfloat : test_case.cpp : <define>TEST_BOOST_NO_CXX23_HDR_STDFLOAT ;
|
||||
obj cxx98_binders : test_case.cpp : <define>TEST_BOOST_NO_CXX98_BINDERS ;
|
||||
obj cxx98_function_base : test_case.cpp : <define>TEST_BOOST_NO_CXX98_FUNCTION_BASE ;
|
||||
obj cxx98_random_shuffle : test_case.cpp : <define>TEST_BOOST_NO_CXX98_RANDOM_SHUFFLE ;
|
||||
|
@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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 Thu Feb 3 18:10:41 2022
|
||||
// This file was automatically generated on Sat Sep 9 19:03:28 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