I have written a GIS application in Qt installed in MSYS/MINGW64. The application uses GDAL. Normally I copy the exe and all relevant dlls into one packge for deployment which works fine. I just updated all libraries in MSYS and get error 0xc0000142 when trying to deploy the apllication, which traces back to libcrypto-3-x64.dll, I traced this back to the library libcrypto-3-x64.dll which is used by libgdal-35.dll (as best I can detect with a dependency walker tool) and maybe other dlls.
I open a command window, change the path to c: and try to run the application. I get error 0xc0000142 unable to run. When I remove libcrypto-3-x64.dll and set the path in thhe command window to “c:qtmsys64mingw64bin” where the dlls are installed, the application runs.
Is there a way to solve this?
Thanks