Questions tagged «make-install»

4
为什么总是./configure; 使; 进行安装;作为3个单独的步骤?
每次从源代码编译内容时,您都将经过相同的3个步骤: $ ./configure $ make $ make install 我知道,将安装过程分为不同的步骤是有意义的,但是我不明白,为什么这个星球上的每个编码人员都必须一次又一次地编写相同的三个命令才能完成一项工作。以我的观点,完全./install.sh自动将包含以下文本的脚本与源代码一起交付是完全有意义的: #!/bin/sh ./configure make make install 人们为什么要分别执行这三个步骤?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.