File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -507,7 +507,7 @@ function(cxx_add_basic_build_flags target)
507
507
# Use C++23 for all targets.
508
508
set_target_properties (${target} PROPERTIES
509
509
CXX_STANDARD 23
510
- CXX_STANDARD_REQUIRED OFF
510
+ CXX_STANDARD_REQUIRED OFF # TODO: Make this REQUIRED once we don't need to accommodate the LLVM documentation builders using an ancient CMake
511
511
CXX_EXTENSIONS NO )
512
512
513
513
# When building the dylib, don't warn for unavailable aligned allocation
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ set_target_properties(cxxabi_shared_objects
172
172
PROPERTIES
173
173
CXX_EXTENSIONS OFF
174
174
CXX_STANDARD 23
175
- CXX_STANDARD_REQUIRED OFF
175
+ CXX_STANDARD_REQUIRED OFF # TODO: Make this REQUIRED once we don't need to accommodate the LLVM documentation builders using an ancient CMake
176
176
COMPILE_FLAGS "${LIBCXXABI_COMPILE_FLAGS} "
177
177
DEFINE_SYMBOL ""
178
178
)
@@ -252,7 +252,7 @@ set_target_properties(cxxabi_static_objects
252
252
PROPERTIES
253
253
CXX_EXTENSIONS OFF
254
254
CXX_STANDARD 23
255
- CXX_STANDARD_REQUIRED OFF
255
+ CXX_STANDARD_REQUIRED OFF # TODO: Make this REQUIRED once we don't need to accommodate the LLVM documentation builders using an ancient CMake
256
256
COMPILE_FLAGS "${LIBCXXABI_COMPILE_FLAGS} "
257
257
)
258
258
You can’t perform that action at this time.
0 commit comments