jdiaz
05/02/2020, 7:09 PMBefore:
linkerOpts.linux = -L/usr/lib64 -L/usr/lib/x86_64-linux-gnu -lgit2
After:
linkerOpts.linux = -L/usr/lib64 -L/usr/local/lib -L/usr/lib/x86_64-linux-gnu -lgit2
And I can see it in ldconfig -v | grep -C3 libgit
(libgit2.so.1.0 -> libgit2.so.1.0.0). What am I missing?jdiaz
05/02/2020, 7:10 PMlibgit2.so.0 -> libgit2.so.0.19.0
, not sure if I need to remap it to point to the new version. And if I need it, I don't know how.jdiaz
05/02/2020, 7:23 PMDominaezzz
05/02/2020, 7:26 PM-L
arguments?Dominaezzz
05/02/2020, 7:27 PM-L/usr/local/lib
should come either first or last.jdiaz
05/02/2020, 7:28 PM-L/usr/local/lib
as I read in one comment that the order might matter, but that didn't happenjdiaz
05/02/2020, 7:29 PMrm /usr/lib/x86_64-linux-gnu/libgit2.so.0 && sudo ln -s /usr/local/lib/libgit2.so.1.0.0 /usr/lib/x86_64-linux-gnu/libgit2.so.0
This is what I did, just removing the link to the old version and creating one to the new version