Changes between Version 3 and Version 4 of ARM_QEMU


Ignore:
Timestamp:
Feb 5, 2008 12:00:08 AM (16 years ago)
Author:
bennylp
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ARM_QEMU

    v3 v4  
    44 * GNU ARM toolchain (download binaries from http://www.gnuarm.com/) 
    55 * Linux kernel source (download from http://www.kernel.org) 
     6 * textinfo 
    67 
    78== Setting up Development Environment == 
     
    108109}}} 
    109110 
     111==== Update binutils Path ==== 
     112 
     113Before we build gcc below, we need to first add the path to (thew newly installed) binutils: 
     114 
     115{{{ 
     116  $ export PATH=/arm/bin:$PATH 
     117}}} 
     118 
     119 
    110120==== Build gcc ==== 
    111121 
     
    113123  $ mkdir /arm/objs/gcc-arm 
    114124  $ cd /arm/objs/gcc-arm 
    115   $ ../../srcs/gcc-3.4.6/configure  
    116  
     125  $ ./../srcs/gcc-3.4.6/configure --target=arm-elf --prefix=/arm --enable-threads \ 
     126                                  --with-cpu=arm9 --enable-languages=c --disable-nls \ 
     127                                  --with-newlib 
    117128  $ make 
    118   $ su -c "make install" 
    119   $ cd .. 
     129  $ make install 
    120130}}} 
    121131 
     132