[Linux Development Notes] General method for Linux to compile third-party libraries

first step

Resolve dependent libraries.

second step

Enter the root directory of the third-party library source code,

./configure --prefix=[path] 

For example:

./configure --prefix=/home/admin/workspace/build

third step

make install

Guess you like

Origin blog.csdn.net/qq_37354286/article/details/102932316