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.
我wget从 下载了该程序http://ftp.gnu.org/gnu/wget/,并使用./configure; make; sudo make install. 现在,假设我更改了下载的源代码。为了应用更改,我需要运行什么命令?
wget
http://ftp.gnu.org/gnu/wget/
./configure; make; sudo make install
三个一样。./configure用于配置当前系统和代码、make重建程序以及sudo make install安装修改后的版本。
./configure
make
sudo make install