mirror of
https://github.com/mpusz/mp-units.git
synced 2025-08-01 03:14:29 +02:00
Merge branch 'master' of github.com:mpusz/units
This commit is contained in:
20
.github/generate-job-matrix.py
vendored
20
.github/generate-job-matrix.py
vendored
@@ -53,18 +53,20 @@ def make_clang_config(
|
||||
return Configuration(**vars(ret))
|
||||
|
||||
|
||||
def make_apple_clang_config(version: int) -> Configuration:
|
||||
def make_apple_clang_config(
|
||||
os: str, version: str, std_format_support: bool
|
||||
) -> Configuration:
|
||||
ret = Configuration(
|
||||
name=f"Apple Clang {version}",
|
||||
os="macos-13",
|
||||
os=os,
|
||||
compiler=Compiler(
|
||||
type="APPLE_CLANG",
|
||||
version=f"{version}.0",
|
||||
version=version,
|
||||
cc="clang",
|
||||
cxx="clang++",
|
||||
),
|
||||
cxx_modules=False,
|
||||
std_format_support=False,
|
||||
std_format_support=std_format_support,
|
||||
)
|
||||
return ret
|
||||
|
||||
@@ -95,7 +97,15 @@ configs = {
|
||||
# arm64 runners are expensive; only consider one version
|
||||
if ver == 18 or platform != "arm64"
|
||||
]
|
||||
+ [make_apple_clang_config(ver) for ver in [15]]
|
||||
+ [
|
||||
make_apple_clang_config("macos-13", ver, std_format_support=False)
|
||||
for ver in ["15.2"]
|
||||
]
|
||||
# std::format is available in Xcode 16.1 or later
|
||||
+ [
|
||||
make_apple_clang_config("macos-14", ver, std_format_support=True)
|
||||
for ver in ["16.1"]
|
||||
]
|
||||
+ [make_msvc_config(release="14.4", version=194)]
|
||||
}
|
||||
|
||||
|
3
.gitignore
vendored
3
.gitignore
vendored
@@ -50,3 +50,6 @@ CMakeUserPresets.json
|
||||
# cxxdraft-htmlgen
|
||||
docs/api_reference/src/source/
|
||||
docs/api_reference/gen
|
||||
|
||||
# macOS files
|
||||
.DS_Store
|
||||
|
@@ -99,7 +99,7 @@ class MPUnitsConan(ConanFile):
|
||||
"compiler": {
|
||||
"gcc": "13",
|
||||
"clang": "17",
|
||||
"apple-clang": "",
|
||||
"apple-clang": "16",
|
||||
"msvc": "194",
|
||||
},
|
||||
},
|
||||
|
@@ -16,7 +16,7 @@ C++ feature:
|
||||
| C++ Feature | C++ version | gcc | clang | apple-clang | MSVC |
|
||||
|-----------------------------------------------------------|:-----------:|:----:|:-----:|:-----------:|:-----------------------------------------:|
|
||||
| **Minimum support** | 20 | 12 | 16 | 15 | 194 :bug:{ title="BEWARE of MSVC Bugs!" } |
|
||||
| **`std::format`** | 20 | 13 | 17 | None | 194 |
|
||||
| **`std::format`** | 20 | 13 | 17 | 16 | 194 |
|
||||
| **C++ modules** | 20 | None | 17 | None | None |
|
||||
| **`import std;`** | 23 | None | 18 | None | None |
|
||||
| **Explicit `this` parameter** | 23 | 14 | 18 | None | None |
|
||||
|
@@ -53,13 +53,15 @@ check_cxx_feature_supported(__cpp_explicit_this_parameter ${projectPrefix}EXPLIC
|
||||
|
||||
# libc++ has a basic supports for std::format but does not set __cpp_lib_format
|
||||
# https://github.com/llvm/llvm-project/issues/77773
|
||||
if(NOT ${projectPrefix}LIB_FORMAT_SUPPORTED
|
||||
AND CMAKE_CXX_COMPILER_ID STREQUAL "Clang"
|
||||
AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL "17"
|
||||
AND ${projectPrefix}LIBCXX
|
||||
)
|
||||
message(STATUS "Clang 17+ with libc++ detected, overriding `std::format` support")
|
||||
set(${projectPrefix}LIB_FORMAT_SUPPORTED ON)
|
||||
if(NOT ${projectPrefix}LIB_FORMAT_SUPPORTED AND ${projectPrefix}LIBCXX)
|
||||
if(CMAKE_CXX_COMPILER_ID STREQUAL "Clang" AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL "17")
|
||||
message(STATUS "Clang 17+ with libc++ detected, overriding `std::format` support")
|
||||
set(${projectPrefix}LIB_FORMAT_SUPPORTED ON)
|
||||
endif()
|
||||
if(CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang" AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL "16")
|
||||
message(STATUS "AppleClang 16+ with libc++ detected, overriding `std::format` support")
|
||||
set(${projectPrefix}LIB_FORMAT_SUPPORTED ON)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# clang++-18 supports explicit `this` parameter
|
||||
|
@@ -150,5 +150,9 @@ MP_UNITS_DIAGNOSTIC_POP
|
||||
|
||||
#define MP_UNITS_API_NO_CRTP 1
|
||||
|
||||
#endif
|
||||
|
||||
#if defined(__clang__) && defined(__apple_build_version__) && __apple_build_version__ < 16000026
|
||||
#define MP_UNITS_XCODE15_HACKS
|
||||
#endif
|
||||
// NOLINTEND(bugprone-reserved-identifier, cppcoreguidelines-macro-usage)
|
||||
|
@@ -88,7 +88,7 @@ concept Scalar = (!disable_scalar<T>) &&
|
||||
{ a + b } -> std::common_with<T>;
|
||||
{ a - b } -> std::common_with<T>;
|
||||
} && ScalableWith<T, T>
|
||||
#if MP_UNITS_COMP_GCC != 12
|
||||
#if MP_UNITS_COMP_GCC != 12 && !defined(MP_UNITS_XCODE15_HACKS)
|
||||
&& WeaklyRegular<T>
|
||||
#endif
|
||||
;
|
||||
@@ -177,19 +177,23 @@ constexpr bool disable_complex = false;
|
||||
namespace detail {
|
||||
|
||||
template<typename T>
|
||||
concept Complex = (!disable_complex<T>) && requires(const T a, const T b, const T& c) {
|
||||
{ -a } -> std::common_with<T>;
|
||||
{ a + b } -> std::common_with<T>;
|
||||
{ a - b } -> std::common_with<T>;
|
||||
{ a* b } -> std::common_with<T>;
|
||||
{ a / b } -> std::common_with<T>;
|
||||
::mp_units::real(a);
|
||||
::mp_units::imag(a);
|
||||
::mp_units::modulus(a);
|
||||
requires ScalableWith<T, decltype(::mp_units::modulus(a))>;
|
||||
requires std::constructible_from<T, decltype(::mp_units::real(c)), decltype(::mp_units::imag(c))>;
|
||||
} && WeaklyRegular<T>;
|
||||
|
||||
concept Complex = (!disable_complex<T>) &&
|
||||
requires(const T a, const T b, const T& c) {
|
||||
{ -a } -> std::common_with<T>;
|
||||
{ a + b } -> std::common_with<T>;
|
||||
{ a - b } -> std::common_with<T>;
|
||||
{ a* b } -> std::common_with<T>;
|
||||
{ a / b } -> std::common_with<T>;
|
||||
::mp_units::real(a);
|
||||
::mp_units::imag(a);
|
||||
::mp_units::modulus(a);
|
||||
requires ScalableWith<T, decltype(::mp_units::modulus(a))>;
|
||||
requires std::constructible_from<T, decltype(::mp_units::real(c)), decltype(::mp_units::imag(c))>;
|
||||
}
|
||||
#ifndef MP_UNITS_XCODE15_HACKS
|
||||
&& WeaklyRegular<T>
|
||||
#endif
|
||||
;
|
||||
namespace magnitude_impl {
|
||||
|
||||
void magnitude() = delete; // poison pill
|
||||
@@ -238,19 +242,24 @@ constexpr bool disable_vector = false;
|
||||
namespace detail {
|
||||
|
||||
template<typename T>
|
||||
concept Vector = (!disable_vector<T>) && requires(const T a, const T b) {
|
||||
{ -a } -> std::common_with<T>;
|
||||
{ a + b } -> std::common_with<T>;
|
||||
{ a - b } -> std::common_with<T>;
|
||||
::mp_units::magnitude(a);
|
||||
requires ScalableWith<T, decltype(::mp_units::magnitude(a))>;
|
||||
// TODO should we also check for the below (e.g., when `size() > 1` or `2`)
|
||||
// ::mp_units::zero_vector<T>();
|
||||
// ::mp_units::unit_vector(a);
|
||||
// ::mp_units::scalar_product(a, b);
|
||||
// ::mp_units::vector_product(a, b);
|
||||
// ::mp_units::tensor_product(a, b);
|
||||
} && WeaklyRegular<T>;
|
||||
concept Vector = (!disable_vector<T>) &&
|
||||
requires(const T a, const T b) {
|
||||
{ -a } -> std::common_with<T>;
|
||||
{ a + b } -> std::common_with<T>;
|
||||
{ a - b } -> std::common_with<T>;
|
||||
::mp_units::magnitude(a);
|
||||
requires ScalableWith<T, decltype(::mp_units::magnitude(a))>;
|
||||
// TODO should we also check for the below (e.g., when `size() > 1` or `2`)
|
||||
// ::mp_units::zero_vector<T>();
|
||||
// ::mp_units::unit_vector(a);
|
||||
// ::mp_units::scalar_product(a, b);
|
||||
// ::mp_units::vector_product(a, b);
|
||||
// ::mp_units::tensor_product(a, b);
|
||||
}
|
||||
#ifndef MP_UNITS_XCODE15_HACKS
|
||||
&& WeaklyRegular<T>
|
||||
#endif
|
||||
;
|
||||
|
||||
} // namespace detail
|
||||
|
||||
|
Reference in New Issue
Block a user