Skip to content

Commit

Permalink
build: apple-clang-15 support added
Browse files Browse the repository at this point in the history
  • Loading branch information
mpusz committed Dec 8, 2023
1 parent 39533be commit 202277d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-conan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ jobs:
}
- {
name: "Apple Clang 15",
os: macos-latest,
os: macos-13,
compiler:
{
type: APPLE_CLANG,
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
if: matrix.config.compiler.type == 'APPLE_CLANG' && matrix.config.compiler.version == '15.0'
shell: bash
run: |
sudo xcode-select -s /Applications/Xcode_15.0.1.app && /usr/bin/xcodebuild -version
sudo xcode-select -s /Applications/Xcode_15.0.app && /usr/bin/xcodebuild -version
- name: Install Ninja
shell: bash
run: |
Expand Down
5 changes: 3 additions & 2 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,9 @@ def _min_cppstd(self):
def _minimum_compilers_version(self):
return {
"gcc": "11",
"clang": "16"
# , "apple-clang": "13", "msvc": "192"
"clang": "16",
"apple-clang": "15"
# , "msvc": "192"
}

@property
Expand Down
1 change: 1 addition & 0 deletions docs/getting_started/installation_and_usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
- please note that we observed some ICEs on gcc-11
- no problems with gcc-12.2+
- clang-16
- apple-clang-15


## Repository Structure and Dependencies
Expand Down
1 change: 1 addition & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,4 @@ The library source code is hosted on [GitHub](https://github.com/mpusz/mp-units)
- please note that we observed some ICEs on gcc-11
- no problems with gcc-12.2+
- clang-16
- apple-clang-15

0 comments on commit 202277d

Please sign in to comment.