I compile application under msis64 fresh version, openframe version 0.11.2. I’m running the application from mingw64 (“make RunRelease”). The application starts normally.
I copy the necessary libraries (“make copy_dlls”) and run the app from windows.The application crashes without saying anything. By trial and error, I figured out that if I erase the libcrypto-3-x64.dll library, the application starts normally. I found all copies of the library on the disk, tried to substitute the library. Still won’t launch. I erase - it starts. Perhaps my application picks up this library somewhere else, it in turn uses other libraries.
It won’t work on another computer either. If I delete libcrypto-3-x64.dll, it swears that it is not there.
I’ve never enccountered such case.
libcrypto generally comes as a dependency of libcurl.
in a mingw64 shell, you may run ntldd to see which dll your application is using :
The first dlls are Windows system dlls.
libcurl is found in the bin directory (due to make copy_dlls)
libcrypto is used from my mingw64 installation (I’ve voluntarily deleted it from bin folder for illustration purpose !)
It was possible to compile in version 12. Here are the errors:
missing link to json.http.
add to config.make file
PROJECT_CFLAGS=-I/opt/of12/libs/json/include
Swears at the definition of byte in the file:
mingw64/include/rpcnd.h:63
the problem is that 12 openframework compiles with gcc++17 (in version 11 - gcc++14 (inaccurately)). Version 17 of the compiler has its own std::byte.
So far changed the definition of byte as:
typedef unsigned char byte_17;
and changed its application in files:
objidl.h, wtypesbase.h, objidlbase.h, wtypes.h, oaidl.h
Swears at the absence of the description ofLogVerbose in the line
49:ofLogVerbose(“ImageUtils::loadHeader”) << "Loading full pixels, may be slow: " << _path;