From 1314e8ff856ef98c5958670fc6a09be65aba9468 Mon Sep 17 00:00:00 2001 From: Thomas-Otavio Peulen Date: Wed, 11 Dec 2024 15:53:38 +0100 Subject: [PATCH] Add submodule update --- conda-recipe/build.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/conda-recipe/build.sh b/conda-recipe/build.sh index 7033d887..f2482564 100755 --- a/conda-recipe/build.sh +++ b/conda-recipe/build.sh @@ -1,10 +1,12 @@ -mkdir b2 && cd b2 +# Update submodules +git submodule update --recursive --init --remote if [[ "${target_platform}" == osx-* ]]; then # See https://conda-forge.org/docs/maintainer/knowledge_base.html#newer-c-features-with-old-sdk CXXFLAGS="${CXXFLAGS} -D_LIBCPP_DISABLE_AVAILABILITY" fi +mkdir b2 && cd b2 cmake -S .. -B . \ -DCMAKE_CXX_COMPILER="${CXX}" \ -DCMAKE_INSTALL_PREFIX="$PREFIX" \