24 lines
577 B
Bash
Executable File
24 lines
577 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Common prelude for macos-build.sh and macos-test.sh
|
|
|
|
# shellcheck source=./common.sh
|
|
source "$(dirname "${BASH_SOURCE[0]}")/common.sh"
|
|
|
|
sysctl -a | grep machdep.cpu
|
|
|
|
# These are required for both the build job and the test job.
|
|
# In the latter to test cpp extensions.
|
|
export MACOSX_DEPLOYMENT_TARGET=11.1
|
|
export CXX=clang++
|
|
export CC=clang
|
|
|
|
print_cmake_info() {
|
|
CMAKE_EXEC=$(which cmake)
|
|
echo "$CMAKE_EXEC"
|
|
|
|
CONDA_INSTALLATION_DIR=$(dirname "$CMAKE_EXEC")
|
|
# Print all libraries under cmake rpath for debugging
|
|
ls -la "$CONDA_INSTALLATION_DIR/../lib"
|
|
}
|