Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

"Removing drivers that are not ARM64 compatible yet from the build so… #1003

Merged
merged 1 commit into from
Nov 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,15 @@ IF (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
set(WITH_AHP_XC Off)
set(WITH_AHP_GT Off)
set(WITH_ASTROASIS Off)
# The drivers below are not yet compatible with Apple Silicon since their libraries are not universal binaries
if(CMAKE_SYSTEM_PROCESSOR STREQUAL "arm64")
SET(WITH_ASICAM Off)
SET(WITH_SBIG Off)
SET(WITH_ATIK Off)
SET(WITH_TOUPBASE Off)
SET(WITH_QHY Off)
SET(WITH_SVBONY Off)
endif()
ENDIF ()
# Disable apogee, qhy and mi with gcc 4.8 and earlier versions
IF (CMAKE_COMPILER_IS_GNUCXX AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.9)
Expand Down
Loading