Skip to content

Commit

Permalink
Raise macOS target version to 11 (Qt6.5 requirement).
Browse files Browse the repository at this point in the history
Raised processor instruction set to AVX, because all macOS 11 supported Apple models have AVX.
  • Loading branch information
JoergAtGithub committed Mar 29, 2024
1 parent 05f33a4 commit f0c09d9
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ jobs:
- os: macos-11
vcpkg_path: /Users/runner/mixxx-vcpkg
vcpkg_bootstrap: ./bootstrap-vcpkg.sh
vcpkg_triplet: x64-osx-min1015
vcpkg_host_triplet: x64-osx-min1015
vcpkg_triplet: x64-osx-min1100
vcpkg_host_triplet: x64-osx-min1100
check_disk_space: df -h
- os: macos-11
vcpkg_path: /Users/runner/mixxx-vcpkg
vcpkg_bootstrap: ./bootstrap-vcpkg.sh
vcpkg_triplet: arm64-osx-min1100-release
vcpkg_host_triplet: x64-osx-min1015-release
vcpkg_host_triplet: x64-osx-min1100-release
check_disk_space: df -h
env:
VCPKG_DEFAULT_TRIPLET: ${{ matrix.vcpkg_triplet }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ endif()
set(VCPKG_CMAKE_SYSTEM_NAME Darwin)
set(VCPKG_OSX_ARCHITECTURES x86_64)

set(VCPKG_OSX_DEPLOYMENT_TARGET 10.15)
# Minimum supported macOS version as target platform for Qt6.5 is 11
# https://doc.qt.io/qt-6.5/supported-platforms.html#desktop-platforms
set(VCPKG_OSX_DEPLOYMENT_TARGET 11.0)

# All Apple computer supported by macOS 11, have processors with AVX instruction set
set(VCPKG_C_FLAGS "${VCPKG_C_FLAGS} -mavx")
set(VCPKG_CXX_FLAGS "${VCPKG_CXX_FLAGS} -mavx")

set(VCPKG_BUILD_TYPE release)
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,10 @@ endif()
set(VCPKG_CMAKE_SYSTEM_NAME Darwin)
set(VCPKG_OSX_ARCHITECTURES x86_64)

set(VCPKG_OSX_DEPLOYMENT_TARGET 10.15)
# Minimum supported macOS version as target platform for Qt6.5 is 11
# https://doc.qt.io/qt-6.5/supported-platforms.html#desktop-platforms
set(VCPKG_OSX_DEPLOYMENT_TARGET 11.0)

# All Apple computer supported by macOS 11, have processors with AVX instruction set
set(VCPKG_C_FLAGS "${VCPKG_C_FLAGS} -mavx")
set(VCPKG_CXX_FLAGS "${VCPKG_CXX_FLAGS} -mavx")

0 comments on commit f0c09d9

Please sign in to comment.