You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not sure anything can be done about this, but in case someone else has this problem, I'll file it. I won't be offended if its closed :)
We got symbol errors when OpenEXR tried to throw an exception based on an errno. We linked OpenEXR statically and the link order was "Half Iex ...[rest]". This caused a symbol error when it tried to call throwErrno. By moving Iex to the end of the link order, we fixed this issue.
The text was updated successfully, but these errors were encountered:
Yeah, I'm pretty sure this is standard linker behavior, symbols are searched for left to right. But to be clear - this link order is in your application Makefile, not from OpenEXR's build files, right?
I'm not sure anything can be done about this, but in case someone else has this problem, I'll file it. I won't be offended if its closed :)
We got symbol errors when OpenEXR tried to throw an exception based on an errno. We linked OpenEXR statically and the link order was "Half Iex ...[rest]". This caused a symbol error when it tried to call throwErrno. By moving Iex to the end of the link order, we fixed this issue.
The text was updated successfully, but these errors were encountered: