一些开源工程的编译
GMSSL
“`sh
$ ./config
$ make
$ sudo make install
https://blog.csdn.net/weixin_45485719/article/details/107877000
libusb
git://git.savannah.gnu.org/config.git
https://git.savannah.gnu.org/git/config.git
ssh: USER@git.savannah.gnu.org:/srv/git/config.git
./configure –build=x86_64-linux –disable-udev
【aclocal-1.15: command not found】
sudo apt-get install autoconf automake libtool
autoconf -ivf
yum install gettext-devel(不一定要)
【undefined reference to `google::protobuf::internal::Release_CompareAndSwap】
https://www.codeleading.com/article/7891286908/
https://git.savannah.gnu.org/cgit/config.git/plain/config.guess
wget https://git.savannah.gnu.org/cgit/config.git/plain/config.sub
【opencv】
cmake CMakeLists.txt -DBUILD_opencv_world=ON
make
【boost】
https://www.shangmayuan.com/a/b2cd0801c4f34aae9921b061.html
boost.org
wget https://boostorg.jfrog.io/artifactory/main/release/1.77.0/source/boost_1_77_0.tar.bz2
https://www.cnblogs.com/smallredness/p/9245127.html
注意赋予可执行权限 chmod -R a+x
sudo ./bootstrap.sh –with-libraries=all –with-toolset=gcc
sudo ./b2 install –prefix=./build
Categories: IT