caffeine
05/29/2019, 3:23 PM:ssl
, and he needs -lssl
for linking. This project builds normally with linkOpts -lssl
Also, I have :httpServer
project. Then I add :ssl
as a dependency to :httpServer
and after I try to build it. On linking I catching errors they say that argument -lssl
is not added tp linkOpts. What I must do to fix this error. For example, I can add -lssl
to :httpServer
but I don't want to do this, because I already added this arg to :ssl
. I don't want to add -lssl
to each project who using :ssl
and :httpServer
Dominaezzz
05/29/2019, 3:53 PMDominaezzz
05/29/2019, 3:54 PMcaffeine
05/29/2019, 6:39 PM:httpServer
. As result httpServer
can't find *.a
files because this *.a
not a part of embedded mingw.
When I build :ssl
I added custom path to *.a
filesDominaezzz
05/29/2019, 6:40 PMDominaezzz
05/29/2019, 6:40 PM*.a
files and forget about linking altogether.caffeine
05/29/2019, 6:41 PMcaffeine
05/29/2019, 6:41 PMYou could always just bundle thehow?files and forget about linking altogether.*.a
Dominaezzz
05/29/2019, 6:42 PMDominaezzz
05/29/2019, 6:42 PMDominaezzz
05/29/2019, 6:43 PM