Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
从源文件构建任何库时,是否可以设置我想要安装它的位置?我读过一些prefix标志,但我想知道是否所有应用程序都有那个标志。
prefix
例如,我正在从源代码构建 OpenCV,当我make && make install将内容安装在其中时,/usr/local/opencv但是如果我希望将它安装在什么位置/other/place/opencv?
make && make install
/usr/local/opencv
/other/place/opencv
如果我正确地跟随你,那么这些东西是在配置阶段完成的,比如:
$ ./configure --prefix=/other/place/opencv
如果项目没有configure脚本,那么这是Makefile直接编辑的情况。
configure
Makefile