Skip to content

Commit

Permalink
Add additional debugging for CPU architecture
Browse files Browse the repository at this point in the history
  • Loading branch information
nightlark committed Feb 3, 2024
1 parent a12647a commit 2df22e3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
package-dir: helics_apps-pip
env:
CIBW_ARCHS: "${{ matrix.arch }}"
CIBW_ARCHS_MACOS: "universal2"
CIBW_ARCHS_MACOS: "x86_64 universal2 arm64"
CIBW_BUILD: "cp39-${{ matrix.build }}*"
CIBW_BUILD_VERBOSITY: 3
TEST_ENV_VAR: "A VALUE!!!"
Expand Down
2 changes: 2 additions & 0 deletions helics_apps-pip/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ cmake_minimum_required(VERSION 3.15...3.26)
project(HELICS LANGUAGES CXX) # Must be "HELICS" due to its CMake files requiring CMAKE_PROJECT_NAME == PROJECT_NAME in order to build app executables

message(STATUS "--------------------")
message(STATUS "SIZEOF_VOID_P ${CMAKE_SIZEOF_VOID_P}") # if(CMAKE_SIZEOF_VOID_P EQUAL 8)
message(STATUS "CMAKE_GENERATOR ${CMAKE_GENERATOR}")
message(STATUS "INSTALL_PREFIX ${CMAKE_INSTALL_PREFIX}")
message(STATUS "SYSTEM ${CMAKE_SYSTEM}")
message(STATUS "SYSTEM_PROCESSOR ${CMAKE_SYSTEM_PROCESSOR}")
Expand Down

0 comments on commit 2df22e3

Please sign in to comment.