In general, compiling is done in three steps.
./configure --prefix=/home/userName/DirName
make or make all
Sometimes, the compiling error in a large code will be huge and may not be displayed in a single screen. It may be better to save the compiling error in a text file. This can be done using
make &> file.txt
or
make all &> file.txt
No comments:
Post a Comment