QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 12475|回复: 41

有没有建立了ARM交叉编译环境的朋友

[复制链接]
发表于 2003-6-30 20:01:24 | 显示全部楼层 |阅读模式
我现在很急啊,按照各种方法都没有建立起编译环境!!!
有哪位朋友建立好了!!!能不能把经验给写出来啊,我真的比较急!!!
谢谢  
发表于 2003-6-30 21:35:27 | 显示全部楼层
can u find the ebook Building embedded linux systems? there is detail description in that book.
if u can not setup u own, u can try to download a ready to use one.

u can download one from
ftp://ftp.arm.linux.org.uk/pub/armlinux/toolchain/
回复

使用道具 举报

 楼主| 发表于 2003-6-30 21:46:11 | 显示全部楼层
我就是按照资料来建立的,但很惭愧没有成功
我已经下载了TOOLCHAIN,但该如何应用呢,解压后放在哪个目录下,斑竹是否建立了这个环境?
谢谢
回复

使用道具 举报

发表于 2003-6-30 21:48:31 | 显示全部楼层
uncompress to any place, and then copy to /usr i remeber, then setup patch in u shell script. i forget the detail, i setup my own one year ago. and that machine is not in my office now.
回复

使用道具 举报

 楼主| 发表于 2003-7-1 10:43:14 | 显示全部楼层
希望DRAGONFLY记起来,我相信很多初入门的人正在期待你的经验
回复

使用道具 举报

发表于 2003-7-1 10:54:31 | 显示全部楼层
Building the Toolchain
In outline what you need to do is:


Decide on the target name;

Decide where to put the images;

Work out headers policy;

Compile binutils first;

Then compile gcc;

Produce gLibc last.


Picking a target name
A native compiler is one that compiles instructions for the same sort of processor as the one it is running on. A cross-compiler is one that runs on one type of processor, but compiles instructions for another. For ARM embedded development it is common to have a compiler that runs on an x86 PC but generates code for the target ARM device.

What type of compiler you build and the sort of output it produces is controlled by the 'target name'. This name is what you put in instead of 'TARGET-NAME' in many of the examples in this chapter. Here are the basic types:


arm-linux
This is the most likely target you'll want. This compiles ELF support for Linux/ARM (i.e. standard ARMLinux). ELF is the best and most recent form for binaries to be compiled in, although early Acorn Linux/ARM users may still be using the old 'a.out' format.

arm-linuxaout
This produces Linux/ARM flavour, again, but using the 'a.out' binary format, instead of ELF. This is older, but produces binaries which will run on very old ARMLinux installations. This is now strongly deprecated; there should be no reason to use this target; note that binutils 2.9.5 doesn't contain support for it (refer to the section called Issues with older version of binutils and gcc).

arm-aout, arm-coff, arm-elf, arm-thumb
These all produce flat, or standalone binaries, not tied to any operating system. arm-elf selects Cygnus' ELF support, which shares much of its code with arm-linux.

You can fiddle with the arm bit of the target name in order to tweak the toolchain you build by replacing it with any of these:


armv2
This makes support for the ARM v2 architecture, as seen in the older ARM2 and ARM3 processors. Specifically, this forces the use of 26-bit mode code, as this is the only type supported in the v2 architecture.

armv3l, armv3b
This makes support for the ARM v3 architecture, as seen in the ARM610, and ARM710. The l or b suffix indicates whether little-endian or big-endian support is desired (this will almost always be little-endian).

armv4l, armv4b
This makes support for the ARM v4 architecture, as used in the StrongARM, ARM7TDMI, ARM8, ARM9.

armv5l, armv5b
This makes support for the ARM v5 architecture, as used in the XScale and ARM10.

In practice the target name makes almost no practical difference to the toolchain you get anyway so you should always use plain 'arm'. This means that the toolchain itself is not unhelpfully tied to the type of processor it was built on. You get a toolchain that will run on all ARM processors and you can set the compiler output for the target processor when you build each part of the toolchain.

Choosing a directory structure
In many of the shell commands listed in this document you'll see italicised and emboldened bits of text. These are, on the whole, directory paths which will change depending on exactly how you've configured your toolchain. This means that we have not used an actual directory path in examples as it could be different from your setup. You need to substitute the correct value for your setup yourself for any commands that we have listed in this document.

Here is a list of these items:


PREFIX
This is the base directory containing all the other subdirectories and bits of your toolchain; the default for any system is almost always /usr, so unless you have a particular desire to put your toolchain in /usr/local, or /usr/arm/tools or somewhere else (to keep it separate, perhaps), we recommend you use the default, /usr.

TARGET-PREFIX
If you're building a cross-toolchain, this is equal to PREFIX/TARGET-NAME (e.g. /usr/arm-linux). If you're building a native compiler, this is simply equal to PREFIX.

KERNEL-SOURCE-LOCATION
This is the place where your kernel source (or at least headers) are stored. Especially if you are cross compiling this may well be different to the native set of files. We recommend that you set this to TARGET-PREFIX/linux as a sensible default.

Binutils
Binutils is a collection of utilities, for doing things with binary files.

Binutils components

addr2line
Translates program addresses into file names and line numbers. Given an address and an executable, it uses the debugging information in the executable to figure out which file name and line number are associated with a given address.

ar
The GNU ar program creates, modifies, and extracts from archives. An archive is a single file holding a collection of other files in a structure that makes it possible to retrieve the original individual files (called members of the archive).

as
GNU as is really a family of assemblers. If you use (or have used) the GNU assembler on one architecture, you should find a fairly similar environment when you use it on another architecture. Each version has much in common with the others, including object file formats, most assembler directives (often called pseudo-ops) and assembler syntax.

as is primarily intended to assemble the output of the GNU C compiler gcc for use by the linker ld. Nevertheless, we've tried to make as assemble correctly everything that the native assembler would. This doesn't mean as always uses the same syntax as another assembler for the same architecture.

c++filt
The c++filt program does the inverse mapping: it decodes (demangles) low-level names into user-level names so that the linker can keep these overloaded functions from clashing.

gasp
Gnu Assembler Macro Preprocessor.

ld
The GNU linker ld combines a number of object and archive files, relocates their data and ties up symbol references. Often the last step in building a new compiled program to run is a call to ld.

nm
GNU nm lists the symbols from object files.

objcopy
The GNU objcopy utility copies the contents of an object file to another. objcopy uses the GNU BFD library to read and write the object files. It can write the destination object file in a format different from that of the source object file. The exact behavior of objcopy is controlled by command-line options.

objdump
objdump displays information about one or more object files. The options control what particular information to display.

ranlib
ranlib generates an index to the contents of an archive, and stores it in the archive. The index lists each symbol defined by a member of an archive that is a relocatable object file. You may use `nm -s' or `nm --print-armap' to list this index.

readelf
readelf Interprets headers on elf files.

size
The GNU size utility lists the section sizes and the total size for each of the object files objfile in its argument list. By default, one line of output is generated for each object file or each module in an archive.

strings
GNU strings prints the printable character sequences that are at least 4 characters long (or the number given with the options below) and are followed by an unprintable character. By default, it only prints the strings from the initialized and loaded sections of object files; for other types of files, it prints the strings from the whole file.

strip
GNU strip discards all symbols from the target object file(s). The list of object files may include archives. At least one object file must be given. strip /modifies the files named in its argument, rather than writing modified copies under different names.

Downloading, unpacking and patching
The first thing you need to build is GNU binutils. 2.9.5 versions have proved stable but generally the latest release is recommended (2.10.1 at the time of writing). No-one should be using 2.9.1 anymore.

Download the latest version you can find from any of these sites:


ftp://ftp.gnu.org/gnu/binutils/" - the official release site (US);

H. J. Lu's own site -- this has the very latest stuff (US);

src.doc.ic.ac.uk (UK).

Unpack the archive somewhere handy, like /usr/src:


cd /usr/src
tar -xzf /.../binutils-2.10.1.tar.gz


There may be ARM-specific patches available for binutils which resolve various bugs, or perhaps improve performance; it's usually a good idea to apply these to the source, if they exist. However ARM binutils are now quite stable (at the time of writing) and integrated with the main tree, so extra patches are no longer normally required. The best place to get up to date information is the armlinux-toolchain mailing list.

The place to check if there are any currently recommended patches is here:


ftp://ftp.armlinux.org/pub/toolchain (UK).

If you do need to patch binutils refer to the section called Patching in Chapter 7 for details of the proceedure.

Configuring and compiling
Essentially, you want to follow the instructions provided in the file called INSTALL. In practice you'll probably use one of the followingexamples.

If you're building a native toolchain, i.e. you're building on an ARM machine for an ARM machine, then you should just do this from inside the binutils directory:

./configure --prefix=PREFIX

If you're building on another machine (such as an x86 Linux box), and you want to build a cross-compiler for the ARM, try this:

./configure --target=TARGET-NAME --prefix=PREFIX e.g. ./configure --target=arm-linux --prefix=/usr

This should succeed (i.e. proceed without stopping with anything that looks like an obvious error message), and you can then actually start the build.

Invoke make in the binutils directory:

make

This should proceed without incident.

If it works, you can then install your new binutils tools, making sure you've read the overwriting warning below (refer to the section called Overwriting an existing toolchain):

make install

You'll notice your new set of tools in PREFIX/TARGET-NAME/. One likely location may be in /usr/arm-linux/.

Right, we're done with binutils. Now we move on to the compiler.

gcc
Kernel headers
Note: The following headers section may well be redundant if you're building a native compiler, as it will almost certainly have already been done.

If you have a working Linux/ARM kernel installed which is configured for the same sort of machine you're trying to build a toolchain for, simply:

cd TARGET-PREFIX
mkdir include
cd include
ln -s KERNEL-SOURCE-LOCATION/include/asm-arm asm
ln -s KERNEL-SOURCE-LOCATION/include/linux linux

The overwhelming chances are that KERNEL-SOURCE-LOCATION will be /usr/src/linux. Now skip the rest of this section.

However if you are compiling for a different type of ARM machine, or compiling a different version of the kernel or cross-compiling, then you need a different set of headers. First off we need to get hold of a current Linux/ARM kernel. Download the latest kernel archive you can find (version 2.4.1 at the time of writing):


ftp.uk.kernel.org (UK)

ftp.kernel.org (US)

We recommend you use a version 2.4 kernel (i.e. one in the v2.4 directory). There are several reasons for this; many newer ARM architectures are only really properly supported in kernel 2.4 and development on version 2.0 has ceased, whilst 2.2 is now in maintainence mode. However, 2.2 kernels are significantly smaller, so if it has the functionality you need it may make sense to use one, but you will be running against the flow to an increasing extent.

Unpack this somewhere, although preferably not in /usr/src. If you're on a Linux system, the chances are you'll trash whatever Linux kernel source you already have installed on your system. We suggest /usr/PREFIX/ (e.g. /usr/arm-linux/).

There are a wide variety of patches you can apply to Linux kernel source for ARM. Applying the kernel patches tends to be mandatory. The two basic patches we recommend are:


the latest patch you can find on ftp.arm.linux.org.uk for your version of the kernel (currently patch-2.4.1-rmk1.gz for version 2.4);

the latest patch you can find in Nicolas Pitre's StrongARM patches for your version of the kernel (currently diff-2.4.1-rmk1-np2.gz for version 2.4).

You may possibly require patches for specific hardware (e.g. iPAQ, Psion), but this is unlikely for here: we are only trying to get the kernel headers into a state where they can be used to compile gcc; we don't have to worry about device driver support and so forth.

Apply these two patches as shown in the section called Patching in Chapter 7, in sequence (assuming you want to use both of them).

Now you need to tweak the make file, to ensure that the configure scripts select the ARM portion of the kernel. Load up the file Makefile in the top-level kernel source directory into your favourite text editor, and find the line that looks like this:

ARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/sun4u/sparc64/ -e s/arm.*/arm/ -e s/sa110/arm/)

Delete it, or comment it out, and insert this:

ARCH = arm

Now you have to configure the kernel, even though you won't necessarily want to compile from it. Fire up make menuconfig in the top-level kernel source directory:

make menuconfig

Go into the top option: 'System and processor type', and select a system consistent with the tools you're building.

For example, if you're building a set for arm-linux with a StrongARM that doesn't need to support arm v3, select 'LART'. In practice, the toolchain only takes a couple of items from the kernel headers so it doesn't actually matter much what you select, so long as you select something and the correct links are made so that the files needed are visible in the right places.

Exit the configuration program, tell it to save the changes, and then run:

make dep

This command actually makes the links (linking /linux/include/asm/ to /linux/include/asm-arm etc) and ensures your kernel headers are in tip-top condition for the toolchain.

Having patched up your kernel appropriately, you can now copy the headers across into your new toolchain's directory:

mkdir TARGET-PREFIX/include

cp -dR LINUX-SOURCE-LOCATION/include/asm-arm TARGET-PREFIX/include/asm

cp -dR LINUX-SOURCE-LOCATION/include/linux TARGET-PREFIX/include/linux

Now gcc will have its headers, and compile happily.

Downloading, unpacking and patching gcc
Download the latest version (2.95.3-prerelease at the time of writing), unless you need thumb support or are feeling brave, in which case you can try a CVS snapshot of the forthcoming v3.0 from any of these sites:


gcc.gnu.org (US)

sourceware.cygnus.com Mirror (UK)

We suggest you grab gcc-core-2.95.3.test4.tar.bz2 (8MB) (in the gcc-2.95.3-prerelease directory on the gcc site), or even gcc-2.95.3-test4.tar.bz2 (12MB) if you're feeling masochistic and want the whole thing.

Following through the same instructions as above, unpack your downloaded gcc. Then you may choose to apply patches if they exist; As of gcc 2.95.2 patches for ARM are not generally required. Check out the armlinux-toolchain list archives for the current state of play or look here to see if there are any current patches for your version:


ftp://ftp.armlinux.org/pub/toolchain (UK).

Configuring and compiling
You can now configure gcc in a similar way that you did for binutils (reading INSTALL as you go).

Most people will have arm-linux as the target name they're configuring for, which builds a toolchain suitable for running on any ARM. For a native compiler do this:

./configure --prefix=PREFIX

For a cross-compiler, do this::

./configure --target=TARGET-NAME --prefix=PREFIX e.g. ./configure --target=arm-linux --prefix=/usr

Configuring done, now we can build the C compiler portion.

This is probably the trickiest stage to get right; There are several factors to consider:


Do you have a fully-working and installed version of glibc for the same ABI as that for which you are building gcc? (i.e is your existing glibc for the same processor-type and binary format etc). If this is your first time building a cross-compiler, then the answer is almost certainly no. If this is not your first time building, and you built glibc previously, in the same format as you're using for gcc now, then the answer might be yes.

If the answer is no, then you cannot build support for any language other than C, because all the other front-ends depend on libc (i.e. the final gcc binary would expect to link with libc), so if this is your first build, or you changed to a different target, then you must append LANGUAGES="c" to each make command line in this section.

Do you even have the libc headers for your target? If this is the very first time you have built a cross-compiler on your host, then the chances are that the answer is no. However, if you have previously successfully completed a compilation of a cross-compiling gcc, and installed it in a location that can be found this time round, the answer is probably yes.

If the answer is no, you will probably need to employ the Dinhibit_libc hack (refer to the section called The -Dinhibit_libc hack); however, it's worth attempting a build first to see whether you're affected or not. See later for information that will allow you to recognise this problem from the output of make.

Invoke make inside the top-level gcc directory, with your chosen parameters:

make [LANGUAGES="c"]

The most common error looks like this:


      ./libgcc2.c:41: stdlib.h: No such file or directory
      ./libgcc2.c:42: unistd.h: No such file or directory
      make[3]: *** [libgcc2.a] Error 1


and is common with first time building of cross-compilers (see above). You can fix it, this time, using the -Dinhibit_libc hack (refer to the section called The -Dinhibit_libc hack) -- follow through the instructions in the hack, and then restart at the configure stage.

Assuming that worked, you can now install your spiffy new compiler:

make [LANGUAGES="c"] install

If this worked, congratulations. You (probably) have a compilation environment capable of compiling kernel-mode software, such as the Linux kernel itself, and if you're only after cross-compiling kernels, feel free to stop here. If you want the ability to compile user-space binaries, press on.

glibc
glibc is the C library. Almost all userland applications will link to this library. Only things like the kernel, bootloaders and other things that avoid using any C library functions can be compiled without it. There are alternatives to glibc for small and embedded systems (it's a big library) but this is the standard and it's what you should use for compiling the rest of gcc.

Downloading and unpacking
glibc is split into bits:


the linuxthreads code which is in a separate archive;

the crypto stuff, which is only available outside the US (see the USA's cryptography export laws), although this is soon likely to change.

Fetch the main glibc archive (currently glibc-2.1.3.tar.gz is recommended although 2.2.2 has been released) and the corresponding linuxthreads archive from one of the following:


ftp.gnu.org/gnu/glibc (US);

ftp.funet.fi (Finland);

Now fetch a corresponding (if possible) glibc-crypt archive; try the Finnish site above.

Unpack the main glibc archive somewhere handy like /usr/src. Then unpack the two add-on archives inside the directory created when you unpacked the main glibc archive. All set.

Configuring and compiling
This is slightly more complicated than the previous section. The most important point is that before doing any configuring or compiling, you must set the C compiler that you're using to be your cross-compiler, otherwise glibc will compile as a horrible mix of ARM code and native code. This is specified by the CC system variable. Do this in the same shell you're going to compile in:

CC=TARGET-NAME-gcc

Now we can configure glibc. Go into the top-level glibc directory, and you'll probably want to run configure more or less like this:

./configure arm-TARGET-NAME --build=NATIVE-TARGET --prefix=TARGET-PREFIX --enable-add-ons

So what do all the variables mean? arm-TARGET-NAME is important: at present the glibc configuration scripts don't recognise the various mutations of the arm- bit of the target name. So here you have to specify your normal target name, but changing the first arm- bit back to simply arm, rather than, say, armv3l.

NATIVE-TARGET is the target name of the machine you're building on; for instance on an x86 Linux machine, i586-linux would probably do nicely.

You'll notice the prefix is different this time: not just PREFIX, but with the target name component on the end as well.


Warning
Don't forget to specify this last component, or you may hose your local libraries, and thus screw up your system.


Okay, go ahead and configure, reading INSTALL if you want to check out all the options. Assuming that worked, just run:


make
make install


And if those worked, you're sorted. You have a full ARM toolchain and library kit available for use on your system.

You can run the glibc or gcc test suites, and also go back to gcc, and compile up all the parts of the compiler you couldn't before (i.e. you can leave off LANGUAGES="c" now).

You can now try compiling things by using TARGET-NAME-gcc (e.g arm-linux-gcc) as your compiler; just set CC as above (e.g CC=arm-linux-gcc) before compiling any given package, and it should work. For any package using configure, you can normally set CC in the makefile, rather than as a local system variable. Setting the local system variable can be a problem if later on you need to compile something natively and you forget to unset it.

Notes
libgcc
Whatever target name you build gcc for, the main code engine still contains support for all the different ARM variations (i.e. it's the same whatever target name you build with). However, there is a library accompanying gcc, containing some fundamental support routines, called libgcc.a. This is the thing that will differ between different target names, and this is what makes different toolchains binary incompatible.

Note: Exactly the same incompatibilities apply to glibc as well.

Overwriting an existing toolchain
If you're building a native compiler, with a significantly different target from the current one, you must be aware that it is extremely easy to trash your toolchain half-way through building. The most common cause of this is trying to build a native set of ELF tools on a system where gcc was built to produce a.out code (e.g. older Linux/ARM systems running on Acorn hardware). This is no longer a significant issue, but the example remains valid. The crucial breaking point is the make install command which installs binutils. In the example scenario, this will leave you unable to link any programs, as gcc's libraries will be in a.out format, but all your binutils will be unable to understand anything but ELF.

So, how does one get round this? A solution is to initially build everything with a "PREFIX" of something like /usr/local/arm-tmp, so as not to interfere with the existing toolchain. Then, go back and compile everything again, but using your proper prefix (e.g. /usr), but making sure /usr/local/arm-tmp (or whatever you used) is on your $PATH environment variable. Then, having built everything in the correct directory, swipe /usr/local/arm-tmp.

If you do manage to trash your toolchain, you will need to go and fetch a suitable toolchain for your existing installation.

Issues with older version of binutils and gcc
There are some significant differences between binutils 2.9.1 and 2.9.5 and between gcc 2.95.1 and 2.95.2. If you use an old binutils with a new compiler or vice versa then things will go wrong. The indications of this areas follows: the error 'unrecognised emulation: armelf_linux' means your toolchain is too old for your compiler. Conversely 'unrecognised emulation: elf32arm' means your compiler is too old for your toolchain.

The -Dinhibit_libc hack
Upon installing a successful build of gcc, some headers will get put in the target's include directory. However, if you are building a (cross) compiler for the very first time, or with a different set of paths, it won't have these headers to hand. For the first time you build a gcc then, you can follow through these steps to fix the problem:


Edit gcc/config/arm/t-linux

and add

-Dinhibit_libc and -D__gthr_posix_h

to:

TARGET_LIBGCC2_CFLAGS.

That is, change the line that looks like:

TARGET_LIBGCC2_CFLAGS = -fomit-frame-pointer -fPIC

to:

TARGET_LIBGCC2_CFLAGS = -fomit-frame-pointer -fPIC -Dinhibit_libc -D__gthr_posix_h.

Re-run configure, but supplying the extra parameter --disable-threads.
回复

使用道具 举报

发表于 2003-7-1 10:57:47 | 显示全部楼层
can u check these doc and try again. i have a work that need to be done before july 14. after that, i will try to build one and report my whole procedure here. sorry for the time delay.      
回复

使用道具 举报

 楼主| 发表于 2003-7-1 16:36:46 | 显示全部楼层
thank you very much
good good study
day day up
play joke :-)
回复

使用道具 举报

发表于 2003-7-1 20:58:45 | 显示全部楼层
sure
回复

使用道具 举报

发表于 2003-7-9 15:02:32 | 显示全部楼层
回复

使用道具 举报

发表于 2003-7-9 21:16:12 | 显示全部楼层
[quote:07d19e7784="sozn"][/quote]

?  water?
回复

使用道具 举报

发表于 2003-7-11 08:32:43 | 显示全部楼层
see thsi to know how to dl, uncompress and use a toolchain from their site. i will try to buidl one when get time.
ftp://ftp.arm.linux.org.uk/pub/armlinux/toolchain/README
回复

使用道具 举报

发表于 2003-7-12 03:52:32 | 显示全部楼层
ok, today i finish my paper draft and gave to boss, so i get a chance to finish this.

i only have xscale cpu, so i use mine as an example, but i think that gcc can compile other cpu as well;

in fact, many are borrowed from the author from armlinux. i just try it on my pc.

-------------------------------------------------------
1) download needed files
except the gcc 2.95.3 patch, other files u can download from gnu site or one of the mirror site.
save the script as a file with -rwx file mode.
put all these files in one dir.

2) prepare linux kernel
*tar jxvf linux-2.4.19.tar.bz2
*cd linux-2.4.19/
*zcat ../patch-2.4.19-rmk7.gz |patch -p1
*zcat ../patch-2.4.19-rmk7-ds2.gz |patch -p1
*make iq80321_config
*make oldconfig
*make menuconfig, change nothing, save, and exit;
*make dep (with error, but ignore it)
3) modify shell script, define variables
4) run script;
5) have a cup of tea; or find a paper to read
6) all set;

I only compile a kernel for IQ80310 with 2.4.19-rmk7-ds2, and boot it. without further test. No time. if u have time, u should do the gcc test base on gcc doc.

For GCC 2.95.3
# binutils 2.13 for ARM is broken.
# binutils 2.11.2 + gcc 2.95.3 with patch is fine.
# binutils 2.13.2 + gcc 2.95.3 with patch is fine.
# binutils 2.14 + gcc 2.95.3 with patch is fine.

i am checking gcc 3.3 now.
回复

使用道具 举报

发表于 2003-7-12 03:54:55 | 显示全部楼层
i can not attach again. so here is the patch

ftp://ftp.arm.linux.org.uk/pub/armlinux/toolchain/gcc-2.95.3.diff.bz2
回复

使用道具 举报

发表于 2003-7-12 03:58:00 | 显示全部楼层
this is the script for gcc2.95.3
[code:1]
#!/bin/sh -e
PREFIX=/usr/local/arm
KERNEL=/tmp/cross/linux-2.4.19/
HOST=
BINVER=2.14

mkdir -p $PREFIX
# check arm kernel
if [ "$KERNEL" = "" -o ! -f "$KERNEL/Documentation/arm/README" ]; then
  echo "You haven't changed KERNEL to point at a valid kernel tree"
  exit 1
fi
# check if binutils there
if [ ! -f binutils-$BINVER.tar.gz ]; then
  echo Binutils $BINVER seems to be missing
  exit 1
fi
# check if gcc there
if [ ! -f gcc-2.95.3.tar.gz ]; then
  echo GCC 2.95.3 seems to be missing
  exit 1
fi
# check if gcc patch there
if [ ! -f gcc-2.95.3.diff.bz2 ]; then
  echo GCC 2.95.3 diff seems to be missing
  exit 1
fi

# compile binutils
tar zxf binutils-$BINVER.tar.gz
pushd binutils-$BINVER
./configure --target=arm-linux --prefix=$PREFIX
make
make install
popd
rm -rf binutils-$BINVER

# add path
PATH=$PATH:$PREFIX/bin

# compile gcc
rm -rf gcc-2.95.3
tar zxf gcc-2.95.3.tar.gz
pushd gcc-2.95.3
bzcat ../gcc-2.95.3.diff.bz2 | patch -p1
perl -pi -e 's/^(TARGET_LIBGCC2_CFLAGS.*)/$1 -Dinhibit_libc -D__gthr_posix_h/' gcc/config/arm/t-linux
echo 'T_CFLAGS = -Dinhibit_libc -D__gthr_posix_h' >> gcc/config/arm/t-linux
./configure --target=arm-linux --prefix=$PREFIX $HOST --with-headers=$KERNEL/include
make LANGUAGES=c
make install LANGUAGES=c
popd
rm -rf gcc-2.95.3

# why not glibc?
echo 'You are done!!! Enjoy it!'
[/code:1]
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-5-22 00:16 , Processed in 0.169003 second(s), 15 queries .

© 2021 Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表