You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am in a linux OS and use glog-0.3.5. I want to build a dynamic library of the glog with the following main steps:
$ ./configure
$ make -j56 install
from the output in terminal I find that libtool is used and I can get the libglog.so successfully. However, I want to change the name to libmyglog.so. What should I do? I tried change the value of PACKAGE in configure to myglog, lib_LTLIBRARIES in Makefile.am to libmyglog.la, but they don't work...
The text was updated successfully, but these errors were encountered:
After search on the Internet, I know that configure and Makefile.in is generated by autoconf and automake tools. Thus now, I want to know the arguments you used in autoconf and automake.
I am in a linux OS and use glog-0.3.5. I want to build a dynamic library of the glog with the following main steps:
from the output in terminal I find that libtool is used and I can get the libglog.so successfully. However, I want to change the name to libmyglog.so. What should I do? I tried change the value of
PACKAGE
in configure to myglog,lib_LTLIBRARIES
in Makefile.am tolibmyglog.la
, but they don't work...The text was updated successfully, but these errors were encountered: