Skip to content

Commit

Permalink
GA: fix v23.11 Boost compile error on macOS ARM
Browse files Browse the repository at this point in the history
  • Loading branch information
pablode committed May 5, 2024
1 parent 4b41cbb commit c6afe06
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,14 @@ 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 }}
# The libcpp option fixes a v23.11 Boost compile error on macOS ARM
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=1 \
${{ inputs.extra-cmake-flags }}
- name: Build guc
working-directory: BUILD
Expand Down

0 comments on commit c6afe06

Please sign in to comment.