Changes between Version 3 and Version 4 of ARM_QEMU
- Timestamp:
- Feb 5, 2008 12:00:08 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ARM_QEMU
v3 v4 4 4 * GNU ARM toolchain (download binaries from http://www.gnuarm.com/) 5 5 * Linux kernel source (download from http://www.kernel.org) 6 * textinfo 6 7 7 8 == Setting up Development Environment == … … 108 109 }}} 109 110 111 ==== Update binutils Path ==== 112 113 Before 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 110 120 ==== Build gcc ==== 111 121 … … 113 123 $ mkdir /arm/objs/gcc-arm 114 124 $ 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 117 128 $ make 118 $ su -c "make install" 119 $ cd .. 129 $ make install 120 130 }}} 121 131 132