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've tried to build the project from 3 different sources and it does not seem to work.
First I had to add
#include<cstdint>
to both
./OpenEXR/src/OpenEXR/OpenEXR/IlmImf/ImfDwaCompressor.cpp
and
./OpenEXR/src/OpenEXR/OpenEXR/IlmImf/ImfMisc.cpp
due to errors:
path/to/build/DJV/DJV-Release/OpenEXR/src/OpenEXR/OpenEXR/IlmImf/ImfDwaCompressor.cpp:1013:38: error: ‘uintptr_t’ does not name a type
1013 |if (reinterpret_cast<uintptr_t>(_rowPtrs[comp][y])& _SSE_ALIGNMENT_MASK)
and
path/to/build/DJV/DJV-Release/OpenEXR/src/OpenEXR/OpenEXR/IlmImf/ImfDwaCompressor.cpp:745:31: error: ‘uintptr_t’ does not name a type
745 |if((reinterpret_cast<uintptr_t>(rowBlockHandle + i) & _SSE_ALIGNMENT_MASK) ==0)
And after that it spits out an error regarding RapidJSON:
path/to/build/DJV/DJV-install-Release/include/rapidjson/document.h:319:82: error: assignment of read-only member ‘rapidjson::GenericStringRef<CharType>::length’
319 | GenericStringRef& operator=(const GenericStringRef& rhs) { s = rhs.s; length = rhs.length; }
I presume the build problems are not fixable on your end, since they are third party libraries, right?
I found that the bug regarding the assignment has been fixed so maybe this just needs to be updated on your end?
The text was updated successfully, but these errors were encountered:
I've tried to build the project from 3 different sources and it does not seem to work.
First I had to add
to both
./OpenEXR/src/OpenEXR/OpenEXR/IlmImf/ImfDwaCompressor.cpp
and
./OpenEXR/src/OpenEXR/OpenEXR/IlmImf/ImfMisc.cpp
due to errors:
and
And after that it spits out an error regarding RapidJSON:
I presume the build problems are not fixable on your end, since they are third party libraries, right?
I found that the bug regarding the assignment has been fixed so maybe this just needs to be updated on your end?
The text was updated successfully, but these errors were encountered: