From subsecret
Jump to: navigation, search
No edit summary
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
==zlib==
==zlib==
  tar xf zlib-1.2.7.tar.gz  
  tar xf zlib-1.2.8.tar.gz  
  cd zlib-1.2.7
  cd zlib-1.2.8
   
   
Edit configure and replace "shared=0" with "shared=1" near the place where the following is written: "echo No shared library support."
Edit configure and replace "shared=0" with "shared=1" near the place where the following is written: "echo No shared library support."
Line 10: Line 10:
   
   
==binutils==
==binutils==
  tar xf binutils-2.21.tar.gz  
  tar xf binutils-2.23.2.tar.gz  
  cd binutils-2.21
  cd binutils-2.23.2
  ./configure --with-build-sysroot=/tools --prefix=/tools
  ./configure --with-build-sysroot=/tools --prefix=/tools
  make -j 12
  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

zlib

tar xf zlib-1.2.8.tar.gz 
cd zlib-1.2.8

Edit configure and replace "shared=0" with "shared=1" near the place where the following is written: "echo No shared library support."

./configure --prefix=/tools
make
make install
cd ..

binutils

tar xf binutils-2.23.2.tar.gz 
cd binutils-2.23.2
./configure --with-build-sysroot=/tools --prefix=/tools
make -j 8
make install
cd ..

We are now ready for next step