From 9023e5dc7f36a303f6b3df1429adf001263678dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Delgado=20Kr=C3=A4mer?= Date: Sun, 5 May 2024 16:40:09 +0200 Subject: [PATCH] GA: fix v23.11 Boost compile error on macOS ARM --- .github/workflows/build.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a723210..3fe0691 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -55,7 +55,13 @@ jobs: - name: Generate build system files using CMake working-directory: BUILD - run: cmake .. -Dpxr_DIR=${{ inputs.usd-install-path }} -DCMAKE_BUILD_TYPE=${{ inputs.build-config }} -DGUC_BUILD_USDGLTF=ON ${{ inputs.extra-cmake-flags }} + run: | + cmake .. \ + -Dpxr_DIR=${{ inputs.usd-install-path }} \ + -DCMAKE_BUILD_TYPE=${{ inputs.build-config }} + -DGUC_BUILD_USDGLTF=ON \ + -D_LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION \ # Fix v23.11 Boost compile error on macOS ARM + ${{ inputs.extra-cmake-flags }} - name: Build guc working-directory: BUILD