We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93f74af commit 7efae47Copy full SHA for 7efae47
CMakeLists.txt
@@ -31,6 +31,10 @@ FetchContent_Declare(
31
GIT_TAG 3.4.1
32
GIT_SHALLOW TRUE)
33
FetchContent_MakeAvailable(Eigen)
34
+if(WIN32 AND ${CMAKE_HOST_SYSTEM_PROCESSOR} STREQUAL ARM64)
35
+ message(STATUS "Enabling non-optimal vectorization in Eigen to avoid alignment issues")
36
+ add_definitions("-DEIGEN_MAX_STATIC_ALIGN_BYTES=0")
37
+endif()
38
39
option(BUILD_MQT_CORE_BINDINGS "Build the MQT Core Python bindings" OFF)
40
if(BUILD_MQT_CORE_BINDINGS)
0 commit comments