Fix building on CY2025 on MacOS - #1031
Merged
rogernelson merged 1 commit intoDec 18, 2025
Merged
Conversation
Signed-off-by: Roger Nelson <roger.nelson@autodesk.com>
rogernelson
requested review from
bernie-laberge,
cedrik-fuoco-adsk and
eloisebrosseau
as code owners
December 18, 2025 16:35
cedrik-fuoco-adsk
approved these changes
Dec 18, 2025
rogernelson
enabled auto-merge (squash)
December 18, 2025 18:00
rogernelson
merged commit Dec 18, 2025
7351285
into
AcademySoftwareFoundation:main
34 of 36 checks passed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix building with MacOS on CY2025
Summarize your change.
The versions of openexr and png included with CY2025 introduce rpath setups, which ends up conflicting with RV's own rpath management on macos. And resulting in build errors like the following when RV tries to overwrite them.
The simplest olution is just to disable the rpath generation in those libraries, and let RV handle it as its currently doing for earlier versions. An corollary fix was required in the RV rpath script that removes rpaths to not to fail if there is no rpath (since we now effectively remove it at the build stage). Another script later in the build process will add the correct rpath back in.
Describe the reason for the change.
Fix building on MacOS with CY2025
Describe what you have tested and on which operating system.
MacOS 26.1
Add a list of changes, and note any that might need special attention during the review.
If possible, provide screenshots.