Unresolved external symbol _strerror_r error while executing libcurl with QT
Unsolved
3rd Party Software
-
@Ace04 said in Unresolved external symbol _strerror_r error while executing libcurl with QT:
LIBS += -L"$$PRO_FILE_PWD/dependencies/SSL/lib/" libcrypto.a libssl.a
Your
LIBS
lines are wrong.Correct would be:
LIBS += -L"$$_PRO_FILE_PWD_/dependencies/SSL/lib" -lcrypto -lssl
(Add-l
, omitlib...
and.a
.Also, convert all backslashes to forward slashes.
Also, remove all trailing slashes from the paths (
INCLUDEPATH
andLIBS
)Regards.