Skip to content

Commit 6ec15d1

Browse files
authored
Upgrade range-v3 and make usage optional via conformance checks (#355)
* Upgrade range-v3 and make usage optional via conformance checks * Run pre-commit and make available on apple clang * Apple clang 15 has full ranges support * Pin ranges support to the one ranges proposal
1 parent 0774349 commit 6ec15d1

File tree

3 files changed

+26
-4
lines changed

3 files changed

+26
-4
lines changed

conanfile.py

+12-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ class Morpheus(ConanFile):
8181
"magic_enum/0.9.5",
8282
"ms-gsl/4.0.0",
8383
"rapidjson/cci.20230929",
84-
"range-v3/0.12.0",
8584
"scnlib/4.0.1",
8685
)
8786

@@ -124,6 +123,15 @@ def useFMT(self):
124123
(compiler == "clang" and version >= Version("19"))
125124
return not std_support
126125

126+
@property
127+
def useRanges(self):
128+
""" Does the current compiler version lack support for std::ranges via the STL. """
129+
compiler = self.settings.compiler
130+
version = Version(self.settings.compiler.version)
131+
std_support = (compiler == "msvc" and version >= 193) or (compiler == "gcc" and version >= Version("10")) or \
132+
(compiler == "clang" and version >= Version("16")) or (compiler == "apple-clang" and version >= Version("15"))
133+
return not std_support
134+
127135
def config_options(self):
128136
if not self.checkMoldIsSupported():
129137
self.options.rm_safe("link_with_mold")
@@ -172,6 +180,9 @@ def requirements(self):
172180
if self.useFMT:
173181
self.requires("fmt/11.0.2", transitive_headers=True)
174182

183+
if self.useRanges:
184+
self.requires("range-v3/cci.20240905", transitive_headers=True)
185+
175186
def system_requirements(self):
176187
if self.options.get_safe("with_rs_opengl", False):
177188
apt = Apt(self)

libraries/core/src/morpheus/core/conformance/CMakeLists.txt

+13-2
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,14 @@ morpheus_conformance_check(
3838
CLANG_VERSION "19"
3939
)
4040

41+
morpheus_conformance_check(
42+
RESULT RANGES_SUPPORTED
43+
MSVC_VERSION "19.29"
44+
GNU_VERSION "10"
45+
CLANG_VERSION "16"
46+
APPLECLANG_VERSION "15"
47+
)
48+
4149
if (NOT ${DATE_SUPPORTED})
4250
find_package(date REQUIRED)
4351
endif (NOT ${DATE_SUPPORTED})
@@ -50,7 +58,10 @@ if (NOT ${FORMAT_SUPPORTED})
5058
find_package(fmt REQUIRED)
5159
endif (NOT ${FORMAT_SUPPORTED})
5260

53-
find_package(range-v3 REQUIRED)
61+
if (NOT ${RANGES_SUPPORTED})
62+
find_package(range-v3 REQUIRED)
63+
endif (NOT ${RANGES_SUPPORTED})
64+
5465
find_package(scn REQUIRED)
5566

5667
# GCC 12 and later must be compiled with support for stacktrace for it to be usable: https://stackoverflow.com/questions/72341483/how-can-i-generate-a-c23-stacktrace-with-gcc-12-1
@@ -69,7 +80,7 @@ target_link_libraries(MorpheusCore
6980
$<$<NOT:$<BOOL:${DATE_SUPPORTED}>>:date::date>
7081
$<$<NOT:$<BOOL:${DATE_SUPPORTED}>>:date::date-tz>
7182
$<$<NOT:$<BOOL:${FORMAT_SUPPORTED}>>:fmt::fmt>
72-
range-v3::range-v3
83+
$<$<NOT:$<BOOL:${RANGES_SUPPORTED}>>:range-v3::range-v3>
7384
scn::scn
7485
$<$<NOT:$<BOOL:${EXPECTED_SUPPORTED}>>:tl::expected>
7586
$<$<AND:$<CXX_COMPILER_ID:GNU>,$<BOOL:${GCC_STACKTRACE_SUPPORTED}>,$<VERSION_GREATER_EQUAL:$<CXX_COMPILER_VERSION>,12>,$<VERSION_LESS:$<CXX_COMPILER_VERSION>,14>>:-lstdc++_libbacktrace>

libraries/core/src/morpheus/core/conformance/ranges.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#endif
88

99
// clang-format off
10-
#if (__cpp_lib_ranges >= 202110L)
10+
#if (__cpp_lib_ranges >= 201911L)
1111

1212
#include <algorithm>
1313
#include <iterator>

0 commit comments

Comments
 (0)