From subsecret
(Created page with "==tar== tar xf tar-1.26.tar.bz2 cd tar-1.26 ./configure --prefix=/tools make -j 12 make install cd .. ==pcre== tar xf pcre-8.12.tar.bz2 cd pcre-8.12 ./configure -...") |
(→grep) |
||
(6 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
Continue to build from /tools (remember to have the PATH set as described in [[Recompiling]]) | |||
==tar== | ==tar== | ||
tar xf tar-1.26.tar. | tar xf tar-1.26.tar.gz | ||
cd tar-1.26 | cd tar-1.26 | ||
./configure --prefix=/tools | ./configure --prefix=/tools | ||
make -j | make -j 8 | ||
build will fail. remove _GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead"); from gnu/stdio.h | |||
make -j 8 | |||
make install | make install | ||
cd .. | cd .. | ||
Line 9: | Line 13: | ||
==pcre== | ==pcre== | ||
tar xf pcre-8. | tar xf pcre-8.32.tar.gz | ||
cd pcre-8. | cd pcre-8.32 | ||
./configure --prefix=/tools | ./configure --prefix=/tools | ||
make -j | make -j 8 | ||
make install | make install | ||
cd .. | cd .. | ||
==grep== | ==grep== | ||
tar xf grep-2. | tar xf grep-2.14.tar.xz | ||
cd grep-2. | cd grep-2.14 | ||
./configure --prefix=/tools | ./configure --prefix=/tools | ||
make -j | make -j 8 | ||
make install | make install | ||
cd .. | cd .. | ||
We are now ready for next step | We are now ready for next step |
Latest revision as of 13:01, 9 May 2013
Continue to build from /tools (remember to have the PATH set as described in Recompiling)
tar
tar xf tar-1.26.tar.gz cd tar-1.26 ./configure --prefix=/tools make -j 8
build will fail. remove _GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead"); from gnu/stdio.h
make -j 8 make install cd ..
pcre
tar xf pcre-8.32.tar.gz cd pcre-8.32 ./configure --prefix=/tools make -j 8 make install cd ..
grep
tar xf grep-2.14.tar.xz cd grep-2.14 ./configure --prefix=/tools make -j 8 make install cd ..
We are now ready for next step