Skip to content

Commit

Permalink
Merge pull request #659 from rothmichaels/feature/std-format-apple-cl…
Browse files Browse the repository at this point in the history
…ang-16

Enable use of std::format for AppleClang / Xcode 16
  • Loading branch information
mpusz authored Dec 19, 2024
2 parents d9c3911 + 8293f02 commit e3ec5cb
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 13 deletions.
17 changes: 13 additions & 4 deletions .github/generate-job-matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ def make_clang_config(
return Configuration(**vars(ret))


def make_apple_clang_config(os: str, version: str) -> Configuration:
def make_apple_clang_config(
os: str, version: str, std_format_support: bool
) -> Configuration:
ret = Configuration(
name=f"Apple Clang {version}",
os=os,
Expand All @@ -64,7 +66,7 @@ def make_apple_clang_config(os: str, version: str) -> Configuration:
cxx="clang++",
),
cxx_modules=False,
std_format_support=False,
std_format_support=std_format_support,
)
return ret

Expand Down Expand Up @@ -95,8 +97,15 @@ def make_msvc_config(release: str, version: int) -> Configuration:
# arm64 runners are expensive; only consider one version
if ver == 18 or platform != "arm64"
]
+ [make_apple_clang_config("macos-13", ver) for ver in ["15.2"]]
+ [make_apple_clang_config("macos-14", ver) for ver in ["16.1"]]
+ [
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)]
}

Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def _feature_compatibility(self):
"compiler": {
"gcc": "13",
"clang": "17",
"apple-clang": "",
"apple-clang": "16",
"msvc": "194",
},
},
Expand Down
2 changes: 1 addition & 1 deletion docs/getting_started/cpp_compiler_support.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
16 changes: 9 additions & 7 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e3ec5cb

Please sign in to comment.