mirror of
https://github.com/mpusz/mp-units.git
synced 2025-07-30 10:27:16 +02:00
build: apple-clang-15 support added
This commit is contained in:
4
.github/workflows/ci-conan.yml
vendored
4
.github/workflows/ci-conan.yml
vendored
@ -118,7 +118,7 @@ jobs:
|
|||||||
}
|
}
|
||||||
- {
|
- {
|
||||||
name: "Apple Clang 15",
|
name: "Apple Clang 15",
|
||||||
os: macos-latest,
|
os: macos-13,
|
||||||
compiler:
|
compiler:
|
||||||
{
|
{
|
||||||
type: APPLE_CLANG,
|
type: APPLE_CLANG,
|
||||||
@ -178,7 +178,7 @@ jobs:
|
|||||||
if: matrix.config.compiler.type == 'APPLE_CLANG' && matrix.config.compiler.version == '15.0'
|
if: matrix.config.compiler.type == 'APPLE_CLANG' && matrix.config.compiler.version == '15.0'
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
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
|
- name: Install Ninja
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
@ -74,8 +74,9 @@ class MPUnitsConan(ConanFile):
|
|||||||
def _minimum_compilers_version(self):
|
def _minimum_compilers_version(self):
|
||||||
return {
|
return {
|
||||||
"gcc": "11",
|
"gcc": "11",
|
||||||
"clang": "16"
|
"clang": "16",
|
||||||
# , "apple-clang": "13", "msvc": "192"
|
"apple-clang": "15"
|
||||||
|
# , "msvc": "192"
|
||||||
}
|
}
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
- please note that we observed some ICEs on gcc-11
|
- please note that we observed some ICEs on gcc-11
|
||||||
- no problems with gcc-12.2+
|
- no problems with gcc-12.2+
|
||||||
- clang-16
|
- clang-16
|
||||||
|
- apple-clang-15
|
||||||
|
|
||||||
|
|
||||||
## Repository Structure and Dependencies
|
## Repository Structure and Dependencies
|
||||||
|
@ -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
|
- please note that we observed some ICEs on gcc-11
|
||||||
- no problems with gcc-12.2+
|
- no problems with gcc-12.2+
|
||||||
- clang-16
|
- clang-16
|
||||||
|
- apple-clang-15
|
||||||
|
Reference in New Issue
Block a user