michaeldsmith
michaeldsmith
OK good to hear. My guess is that you are getting that `aIn `error because the CTL file you are using expects RGBA input but your input file is only...
i don't believe the output parameters or usage has changed. Are you getting other errors now?
Another work around is to write your CTL code to handle both RGB and RGBA input files and set a default value for `aIn` within the CTL code, like this:...
@scottdyer it looks like your build may be trying to use version 3.2 of OpenEXR (Imf_3_2) while trying to use version 2.5 of IMath (Imath_2_5).  version 2.5 of Imath...
I've not seen that debugTrapv error before. Are you sure that your shell is not doing something else like running trap? You could try compiling CTL for Release mode and...
@scottdyer One other thing I thought of to share with you, I have not tested the recent CTL using the AcesContainer dependency. Trying out AcesContainer with CTL is on my...
it looks like dyld is the mac dynamic library loader [1]. I will look into compiling CTL in static mode which may avoid the use of dyld. [1] https://developer.apple.com/library/archive/documentation/System/Conceptual/ManPages_iPhoneOS/man3/dyld.3.html
@scottdyer I found what seems to be a related issue posted in the OpenEXR repo about `iex_debugTrap`, it seems to match your error message `__Z13iex_debugTrapv` very closely https://github.com/AcademySoftwareFoundation/openexr/issues/188 It looks...
@scottdyer I've been able to replicate a `iex_debugTrap` issue that may be related to your issue, if I build openexr 2.5 with cmake argument `-DBUILD_SHARED_LIBS=ON` on a Mac ``` cd...
@meshula I created PR https://github.com/ampas/CTL/pull/160 that adds the `target_link_libraries()` recommended by OpenEXR Porting Guide https://openexr.com/en/latest/PortingGuide.html, adding `OpenEXR::Iex` and others. Please let me know if you have any comments or suggestions...