From fda90656f1471c448ff5872525654edb5b66ded0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Wed, 7 Jul 2021 11:19:26 +0200 Subject: [PATCH] install ccache and make from Homebrew --- tools/macos_buildenv.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tools/macos_buildenv.sh b/tools/macos_buildenv.sh index fc38aed424c8..0410195552d2 100755 --- a/tools/macos_buildenv.sh +++ b/tools/macos_buildenv.sh @@ -91,12 +91,14 @@ case "$1" in export VCPKG_OVERLAY_TRIPLETS="${BUILDENV_PATH}/overlay/triplets" export VCPKG_DEFAULT_TRIPLET=x64-osx export X_VCPKG_APPLOCAL_DEPS_INSTALL=ON + export CMAKE_MAKE_PROGRAM=gmake echo_exported_variables() { echo "VCPKG_ROOT=${VCPKG_ROOT}" echo "VCPKG_OVERLAY_TRIPLETS=${VCPKG_OVERLAY_TRIPLETS}" echo "VCPKG_DEFAULT_TRIPLET=${VCPKG_DEFAULT_TRIPLET}" echo "X_VCPKG_APPLOCAL_DEPS_INSTALL=${X_VCPKG_APPLOCAL_DEPS_INSTALL}" + echo "CMAKE_MAKE_PROGRAM=${CMAKE_MAKE_PROGRAM}" } if [ -n "${GITHUB_ENV}" ]; then @@ -106,6 +108,9 @@ case "$1" in echo "Exported environment variables:" echo_exported_variables fi + + brew install ccache + brew install make # is installed as gmake ;; *) echo "Usage: source macos_buildenv.sh [options]"