summaryrefslogtreecommitdiff
path: root/make/gcc-3.3.mk
AgeCommit message (Collapse)Author
2004-01-29Kill off the old gcc/binutils stuffEric Andersen
2004-01-14Enable building <arch>-linux-uclibc toolchains. Note that, due to configManuel Novoa III
issues for applications, we also create staging_dir/bin/<arch>-linux-* symlinks which allows us to configure most apps with target=<arch>-linux. gcc 3.3.2 libstdc++ now correctly identifies uclibc locale support. There are still some issues (mainly related to wide char time strings and wcsftime) to be addressed, but those are on hold until the uClibc locale internals are reworked once again. With the new stuff, we can also build gcc 2.95 and STLport again, although the native gcc build for the target is failing. Archs supported (some archs not yet tested): 2.95 - i386, arm, mips*, powerpc. 3.3.2 - Hopefull all for which uClibc has shared lib support.
2004-01-08we do not 'ant' to use anythingEric Andersen
2004-01-08Document the unwind-dw2-fde stuff a bit better, remove pointlessEric Andersen
and inadvertant munging of libgcc_s's soname.
2003-12-02Remove the broken handling of libgcc_s.Manuel Novoa III
2003-11-25Remove libgcc_eh hack. Things now build as they are supposed to.Manuel Novoa III
2003-11-24Fix the condition for applying the i386 soft float patch.Manuel Novoa III
2003-11-22Handle the case of no shared libgcc -- sh4 for instance.Manuel Novoa III
2003-11-20Ouch! Cut-n-paste strikes again!Manuel Novoa III
2003-11-20Fix missing line continuation.Manuel Novoa III
2003-11-20Add some quoting to handle unusual host compiler namingEric Andersen
2003-11-19automatically detect if we have a usable version of sedEric Andersen
installed. If not, we will now build our own version.
2003-11-18Change 'sed -ie' to 'sed -i -e' to avoid littering the buildEric Andersen
with lots of unwanted backup files with the letter "e" appended. -Erik
2003-11-13By popular demand, use 'sed' rather than 'perl' for doingEric Andersen
search and replace stuff. Hopefully we do not have any perl specific regexs that will be broken by this change, but it seems to be working thus far anyways,
2003-11-12Thomas Cameron writes:Eric Andersen
this patch fixes the source file downloads when executing a "make source", and a few cut-and-paste (tm) errors in the *.mk files. Again, this is a patch against the current CVS sources, and includes my previous patch.
2003-11-11Slight cleanup, now that the locale option is handled in the main Makefile.Manuel Novoa III
2003-11-07make sure we have a directory before trying to install symlinksEric Andersen
2003-11-01Enable building soft float buildroot for gcc 3.3. Currently works forManuel Novoa III
i386 (limited to 64 bit long double... same as double), arm (libfloat), mips, and mipsel. Enable cross compiling a native gcc 3.3 toolchain to run on the target. Misc rootfs cleanups... strip some things that weren't, eliminate duplicate libs, move openssl shared libs out of /lib, reduce size of libssl.so by dynamicly linking with libcrypto.so, fix dropbear compile on mips.
2003-10-18Add support for 'make -j3' so make to run stuff in parallelEric Andersen
2003-10-18Update to gcc 3.3.2Eric Andersen
2003-10-15simplify things a little bitEric Andersen
2003-10-08Use a local copy of the source when building gcc-target (sinceEric Andersen
we hacked up the source used to build the cross compiler). Fix the crt1.o not found problems. It turns out gcc was thinking it was acting as a cross compiler, which is clearly not what we want here. With this, everything seems to be working nicely for both C and C++.
2003-09-30Fix the build when host arch == target archEric Andersen
2003-09-30With this, buildroot builds w/o needing the magic symlink,Eric Andersen
and properly cross compiles. Wohoo, time to ship... -Erik
2003-09-27Fixup gcc_target build.Eric Andersen
2003-09-26This should at least build. I think.Eric Andersen
2003-09-14Rework toolchain build to make it much more modular andEric Andersen
remove the redundant redundancy.