-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
Architectures: PPC64le, AARCH64/ARM64
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
BUILD: | ||
- aarch64-conda_cos7-linux-gnu | ||
c_compiler: | ||
- gcc | ||
c_compiler_version: | ||
- '12' | ||
cdt_arch: | ||
- aarch64 | ||
cdt_name: | ||
- cos7 | ||
channel_sources: | ||
- conda-forge | ||
channel_targets: | ||
- conda-forge main | ||
cxx_compiler: | ||
- gxx | ||
cxx_compiler_version: | ||
- '12' | ||
docker_image: | ||
- quay.io/condaforge/linux-anvil-cos7-x86_64 | ||
target_platform: | ||
- linux-aarch64 | ||
zip_keys: | ||
- - c_compiler_version | ||
- cxx_compiler_version |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
c_compiler: | ||
- gcc | ||
c_compiler_version: | ||
- '12' | ||
cdt_name: | ||
- cos7 | ||
channel_sources: | ||
- conda-forge | ||
channel_targets: | ||
- conda-forge main | ||
cxx_compiler: | ||
- gxx | ||
cxx_compiler_version: | ||
- '12' | ||
docker_image: | ||
- quay.io/condaforge/linux-anvil-cos7-x86_64 | ||
target_platform: | ||
- linux-ppc64le | ||
zip_keys: | ||
- - c_compiler_version | ||
- cxx_compiler_version |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
MACOSX_DEPLOYMENT_TARGET: | ||
- '11.0' | ||
c_compiler: | ||
- clang | ||
c_compiler_version: | ||
- '16' | ||
channel_sources: | ||
- conda-forge | ||
channel_targets: | ||
- conda-forge main | ||
cxx_compiler: | ||
- clangxx | ||
cxx_compiler_version: | ||
- '16' | ||
llvm_openmp: | ||
- '16' | ||
macos_machine: | ||
- arm64-apple-darwin20.0.0 | ||
target_platform: | ||
- osx-arm64 | ||
zip_keys: | ||
- - c_compiler_version | ||
- cxx_compiler_version |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,16 @@ | ||
github: | ||
branch_name: main | ||
tooling_branch_name: main | ||
build_platform: | ||
linux_aarch64: linux_64 | ||
linux_ppc64le: linux_64 | ||
osx_arm64: osx_64 | ||
conda_build: | ||
error_overlinking: true | ||
pkg_format: '2' | ||
conda_forge_output_validation: true | ||
github: | ||
branch_name: main | ||
tooling_branch_name: main | ||
provider: | ||
linux_aarch64: default | ||
linux_ppc64le: azure | ||
win: azure | ||
test_on_native_only: true |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
From a1accf5a6ea7468f7e223c0305cdb13c70a34fc2 Mon Sep 17 00:00:00 2001 | ||
From a553e39ef6b93c2e9a72de6b02b98ea21a4e56e3 Mon Sep 17 00:00:00 2001 | ||
From: Axel Huebl <[email protected]> | ||
Date: Wed, 18 Oct 2023 09:58:37 -0700 | ||
Subject: [PATCH] Install Move Tools to `shared/amrex` | ||
|
@@ -11,11 +11,55 @@ This moves its content in both the build directory and the | |
install destination to `share/amrex/` and | ||
`<CMakePkgRoot>/AMReXCMakeModules/`, respectively. | ||
--- | ||
Tools/CMake/AMReXBuildInfo.cmake | 29 +++++++++++++++++++------ | ||
Tools/CMake/AMReXInstallHelpers.cmake | 31 ++++++++++++++++++--------- | ||
1 file changed, 21 insertions(+), 10 deletions(-) | ||
Tools/CMake/AMReXTypecheck.cmake | 8 +++++-- | ||
3 files changed, 49 insertions(+), 19 deletions(-) | ||
|
||
diff --git a/Tools/CMake/AMReXBuildInfo.cmake b/Tools/CMake/AMReXBuildInfo.cmake | ||
index 36c7005787..77a90e4fd3 100644 | ||
--- a/Tools/CMake/AMReXBuildInfo.cmake | ||
+++ b/Tools/CMake/AMReXBuildInfo.cmake | ||
@@ -38,15 +38,30 @@ include(AMReXTargetHelpers) | ||
# | ||
# Set paths | ||
# | ||
-string(REPLACE "/Tools/CMake" "" AMREX_TOP_DIR ${CMAKE_CURRENT_LIST_DIR}) | ||
-set( AMREX_TOP_DIR ${AMREX_TOP_DIR} CACHE INTERNAL "Top level AMReX directory") | ||
- | ||
-set( AMREX_BUILDINFO_IFILE ${CMAKE_CURRENT_LIST_DIR}/AMReX_buildInfo.cpp.in | ||
+if (AMReX_FOUND) | ||
+ # AMReX is pre-installed and used as a library | ||
+ string(REPLACE "/lib/cmake/AMReX/AMReXCMakeModules" "" AMREX_TOP_DIR_DEFAULT | ||
+ ${CMAKE_CURRENT_LIST_DIR}) | ||
+else () | ||
+ # this is a superbuild | ||
+ string(REPLACE "/Tools/CMake" "" AMREX_TOP_DIR_DEFAULT | ||
+ ${CMAKE_CURRENT_LIST_DIR}) | ||
+endif () | ||
+set(AMREX_TOP_DIR "${AMREX_TOP_DIR_DEFAULT}" CACHE INTERNAL "Top level AMReX directory") | ||
+ | ||
+if (AMReX_FOUND) | ||
+ # AMReX is pre-installed and used as a library | ||
+ set(AMREX_C_SCRIPTS_DIR "${AMREX_TOP_DIR}/share/amrex/C_scripts" | ||
+ CACHE INTERNAL "Path to AMReX' C_scripts dir") | ||
+else () | ||
+ # this is a superbuild | ||
+ set(AMREX_C_SCRIPTS_DIR "${AMREX_TOP_DIR}/Tools/C_scripts" | ||
+ CACHE INTERNAL "Path to AMReX' C_scripts dir") | ||
+endif () | ||
+ | ||
+set(AMREX_BUILDINFO_IFILE ${CMAKE_CURRENT_LIST_DIR}/AMReX_buildInfo.cpp.in | ||
CACHE INTERNAL "Full path and name of AMReX_buildInfo.cpp.in") | ||
|
||
-set( AMREX_C_SCRIPTS_DIR "${AMREX_TOP_DIR}/Tools/C_scripts" | ||
- CACHE INTERNAL "Path to AMReX' C_scripts dir") | ||
- | ||
set(AMREX_BUILD_DATETIME "" CACHE STRING | ||
"User defined build date and time. Set ONLY for reproducibly built binary distributions") | ||
|
||
diff --git a/Tools/CMake/AMReXInstallHelpers.cmake b/Tools/CMake/AMReXInstallHelpers.cmake | ||
index 0720efb4cf9..a01cd63301d 100644 | ||
index 0720efb4cf..a01cd63301 100644 | ||
--- a/Tools/CMake/AMReXInstallHelpers.cmake | ||
+++ b/Tools/CMake/AMReXInstallHelpers.cmake | ||
@@ -26,7 +26,7 @@ function (install_amrex_targets) | ||
|
@@ -79,3 +123,23 @@ index 0720efb4cf9..a01cd63301d 100644 | |
) | ||
|
||
|
||
diff --git a/Tools/CMake/AMReXTypecheck.cmake b/Tools/CMake/AMReXTypecheck.cmake | ||
index 0b68fb8c27..c569eb5d9b 100644 | ||
--- a/Tools/CMake/AMReXTypecheck.cmake | ||
+++ b/Tools/CMake/AMReXTypecheck.cmake | ||
@@ -296,9 +296,13 @@ function( add_typecheck_target _target) | ||
# | ||
set(_outfile "${_typecheck_dir}/${_target}_typecheck.ou" ) | ||
|
||
- # Find typechecker | ||
+ # Find typechecker | ||
find_file(_typechecker "typechecker.py" | ||
- HINTS ${AMReX_SOURCE_DIR} ${AMReX_ROOT} ENV AMReX_ROOT PATH_SUFFIXES Tools/typechecker) | ||
+ HINTS ${AMReX_SOURCE_DIR} ${AMReX_ROOT} ENV AMReX_ROOT | ||
+ PATH_SUFFIXES | ||
+ Tools/typechecker # in-source | ||
+ share/amrex/typechecker # installed | ||
+ ) | ||
|
||
add_custom_target( typecheck_${_target} | ||
COMMAND python3 ${_typechecker} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ source: | |
- 3599.patch | ||
|
||
build: | ||
number: 0 | ||
number: 1 | ||
|
||
requirements: | ||
build: | ||
|