mirror of
https://github.com/boostorg/config.git
synced 2026-03-07 14:24:10 +01:00
Compare commits
8 Commits
mclow-patc
...
feature/ms
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
252f31b601 | ||
|
|
56239bfd88 | ||
|
|
f6131a2900 | ||
|
|
82f16e561a | ||
|
|
451bdf1905 | ||
|
|
69f219e5ef | ||
|
|
345f0be6a6 | ||
|
|
b0debf9397 |
1
.github/workflows/ci.yml
vendored
1
.github/workflows/ci.yml
vendored
@@ -10,6 +10,7 @@ on:
|
||||
branches:
|
||||
- master
|
||||
- develop
|
||||
- feature/**
|
||||
pull_request:
|
||||
release:
|
||||
types: [published, created, edited]
|
||||
|
||||
@@ -187,11 +187,16 @@ BOOST_LIB_SUFFIX: Static/import libraries extension (".lib", ".a") for the c
|
||||
// vc14.2:
|
||||
# define BOOST_LIB_TOOLSET "vc142"
|
||||
|
||||
# elif defined(BOOST_MSVC)
|
||||
# elif defined(BOOST_MSVC) && (BOOST_MSVC < 1950)
|
||||
|
||||
// vc14.3:
|
||||
# define BOOST_LIB_TOOLSET "vc143"
|
||||
|
||||
# elif defined(BOOST_MSVC)
|
||||
|
||||
// vc14.5:
|
||||
# define BOOST_LIB_TOOLSET "vc145"
|
||||
|
||||
# elif defined(BOOST_EMBTC_WINDOWS)
|
||||
|
||||
// Embarcadero Clang based compilers:
|
||||
|
||||
@@ -11,7 +11,10 @@
|
||||
|
||||
// https://en.wikipedia.org/wiki/Xcode#Toolchain_versions
|
||||
|
||||
# if BOOST_CLANG_REPORTED_VERSION >= 160000
|
||||
# if BOOST_CLANG_REPORTED_VERSION >= 170000
|
||||
# define BOOST_CLANG_VERSION 190104
|
||||
|
||||
# elif BOOST_CLANG_REPORTED_VERSION >= 160000
|
||||
# define BOOST_CLANG_VERSION 170006
|
||||
|
||||
# elif BOOST_CLANG_REPORTED_VERSION >= 150000
|
||||
|
||||
@@ -372,8 +372,10 @@
|
||||
# define BOOST_COMPILER_VERSION 14.1
|
||||
# elif _MSC_VER < 1930
|
||||
# define BOOST_COMPILER_VERSION 14.2
|
||||
# elif _MSC_VER < 1940
|
||||
# elif _MSC_VER < 1950
|
||||
# define BOOST_COMPILER_VERSION 14.3
|
||||
# elif _MSC_VER < 1960
|
||||
# define BOOST_COMPILER_VERSION 14.5
|
||||
# else
|
||||
# define BOOST_COMPILER_VERSION _MSC_VER
|
||||
# endif
|
||||
@@ -385,8 +387,8 @@
|
||||
#include <boost/config/pragma_message.hpp>
|
||||
|
||||
//
|
||||
// last known and checked version is 19.3x (VS2022):
|
||||
#if (_MSC_VER >= 1940)
|
||||
// last known and checked version is 19.5x (VS2026):
|
||||
#if (_MSC_VER >= 1960)
|
||||
# if defined(BOOST_ASSERT_CONFIG)
|
||||
# error "Boost.Config is older than your current compiler version."
|
||||
# elif !defined(BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE)
|
||||
|
||||
Reference in New Issue
Block a user