summaryrefslogtreecommitdiff
path: root/extra/gcc-uClibc
AgeCommit message (Collapse)Author
2003-11-04Kill off the gcc wrapper. It has served us well, but there comes a time whenEric Andersen
90% of correct is simply not good enough. Some people will not be very happy about the decision to kill the wrapper toolchain. Sorry, but a real toolchain is the One True Way(tm). -Erik
2003-10-23Peter Kjellerstedt writes:Eric Andersen
The attached patch performs a clean up of extra/gcc-uClibc/gcc-uClibc.c: * Use NULL for pointers and '\0' for characters; not the opposite... * Fixed an (assumed) segv if --uclibc-cc was used. * Skip the argument to -x so it isn't considered to be a source file. * Simplified the loop in xstrcat(). * A little white space clean up. //Peter
2003-10-18Peter Kjellerstedt writes:Eric Andersen
ln.patch: * Define $(LN) as ln in Rules.mak. * Change all occurrences of ln into $(LN). * Change all constructs like (cd path && ln -sf foo/file file) into $(LN) -sf foo/file path/file. The latter construct is already used in a number of places so it should not be an additional compatibility problem.
2003-10-18Peter Kjellerstedt writes:Eric Andersen
rm.patch: * Define $(RM) as rm -f in Rules.mak and test/Rules.mak (this is the same definition as gmake uses by default). * Change all occurrences of rm and rm -f into $(RM).
2003-10-18Peter Kjellerstedt writes:Eric Andersen
install.patch: * Define $(INSTALL) as install in Rules.mak. * Change all occurrences of install into $(INSTALL). * Change all occurrences of mkdir -p into $(INSTALL) -d. install -d is already used in a number of places so this should not be an additional compatibility problem.
2003-10-15Brett Nash writes:Eric Andersen
Hello, Attached is a patch of some changes I made to the gcc wrapper to get it to compile XFree CVS. Basically it supports the use of '-' on the command line to read stdin for gcc, as well as setting the file type back to none before adding the last too .o files if the file type was set on the command line. It is applied against uClibc-0.9.20 Regards, nash
2003-10-13Patch from Peter Kjellerstedt:Eric Andersen
The attached patch performs a clean up of extra/gcc-uClibc/Makefile: * Better dependencies to only rebuild what is necessary. * Use $< and $@ where appropriate. * Suppress warning messages from which about commands that cannot be found. //Peter
2003-09-01pass in "-s" directlyEric Andersen
2003-08-28(1) Make UCLIBC_CC env var work even if __UCLIBC_CTOR_DTOR__ isn't defined.Miles Bader
(2) Add a command-line option --uclibc-cc with the same functionality.
2003-06-24Several more cleanupsEric Andersen
2003-06-24Fix indenting for real this time.Eric Andersen
2003-06-24Make indenting be consistantEric Andersen
2003-06-24Rename the very badly named 'UCLIBC_GCC' to 'UCLIBC_ENV' andEric Andersen
implement 'UCLIBC_CC', which does this: $ UCLIBC_CC=gcc-2.95 /usr/i386-linux-uclibc/bin/i386-uclibc-gcc --version 2.95.4 $ UCLIBC_CC=gcc-3.3 /usr/i386-linux-uclibc/bin/i386-uclibc-gcc --version gcc-3.3 (GCC) 3.3 (Debian) Copyright (C) 2003 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
2003-05-28Allow gcc to move/update by detecting where needed files are shouldEric Andersen
they move/disappear from the expected location. -Erik
2003-05-28Accomodate building under cygwinEric Andersen
2003-03-05Patch from Konrad Eisele to omit -Wl,--dynamic-linker fromEric Andersen
the gcc wrapper when not building with shared library support.
2003-03-03Initial effort at adding profiling support.Eric Andersen
2003-02-27Patch from David Airlie to fix handling of ctor/dtor stuff when used inEric Andersen
combination with and w/o both the nostdinc and nostdlib options.
2002-12-12Use crt1.o when ctor/dtor support is enabledEric Andersen
2002-12-12When -shared is specified, meaning they wish to create a sharedEric Andersen
library, we need to disable adding start files (i.e. crt0) since it isn't supposed to be creating an executable, just a shared lib. -Erik
2002-12-04Change some variable names so we are more consistant with whatEric Andersen
the linux kernel uses. -Erik
2002-11-27Make support for global constructors and global destructors beEric Andersen
configurable, so people who do not need or want ctor/dtor support can disable it and make their binaries a little bit smaller. -Erik
2002-11-15Ronald Wahl writes:Eric Andersen
since uclibc-0.9.16 I have to specify -fpic during _link_-time or else I get an error from the dynamic linker when I load shared objects. Patch is appended.
2002-11-08Use NATIVE_CC. Don't hard code using 'gcc'.Eric Andersen
-Erik
2002-11-05Fix gcc-uClibc.h dependanciesEric Andersen
2002-11-05Standardize LIBGCC_DIREric Andersen
2002-10-31Skip the dependancy on .config for nowEric Andersen
2002-10-31Fix a lingering reference to ConfigEric Andersen
-Erik
2002-10-31Ok, this commit is _huge_ and its gonna change the world. I'veEric Andersen
been working on a new config system on and off for about 6 months now, but I've never been fully satisfied. Well, I'm finally am happy with the new config system, so here it is. This completely removes the old uClibc configuration system, and replaces it with an entirely new system based on LinuxKernelConf, from http://www.xs4all.nl/~zippel/lc/ As it turns out, Linus has just merged LinuxKernelConf into Linux 2.5.45, so it looks like I made the right choice. I have thus far updated only x86. I'll be updating the other architectures shortly. -Erik
2002-10-23Make `-nostdlib' and `-nodefaultlibs' work correctly.Miles Bader
2002-10-01This commit contains a patch from Stefan Allius <allius@atecom.com> to changeEric Andersen
how uClibc handles _init and _fini, allowing shared lib constructors and destructors to initialize things in the correct sequence. Stefan ported the SH architecture. I then ported x86, arm, and mips. x86 and arm are working fine, but I don't think I quite got things correct for mips.
2002-09-12Some minor C++ support updatesEric Andersen
2002-08-12Only try to install existing binariesEric Andersen
-Erik
2002-08-12Fix the gcc wrapper to include crtbeginS.o and crtendS.o when we are compilingEric Andersen
PIC code, and use crtbegin.o and crtend.o when compiling non-pic code. As was caused problems, esp on powerpc... -Erik
2002-07-31Patch from Alexander Pevzner <pzz@pzz.msk.ru> to fixup things when invoked asEric Andersen
the C++ compiler to to automagically add include/g++ into the include search path, and automagically add -lstdc++ and -lm into the set of automatically linked libraries.
2002-07-05Only enable elf2flt support when using elf toolchainsEric Andersen
-Erik
2002-07-02Change the default structure of the installed toolchainEric Andersen
-Erik
2002-06-20Add support for doing the mmu-less thingEric Andersen
-Erik
2002-06-20Fix a bug reported by Michael Weiser <michael@weiser.saale-net.de>Eric Andersen
which could cause incorrect invocations of g++. Cleanup a few things. Add a new --uclibc-ctors flag allowing one to apply ctor/dtor support to regular C code. -Erik
2002-05-30Put GCCINCDIR here, which is the only place it is needed.Eric Andersen
-Erik
2002-05-24Send the -s to the linkerEric Andersen
2002-03-22It doesn't make sense to supress linking for -i or -r,Eric Andersen
-Erik
2002-03-22Fix incorrect ordering of -L and -l options, which prevented thingsEric Andersen
like iproute2 and XFree86 from linking. -Erik
2002-03-18Add initial support for compiling cpp code.Eric Andersen
-Erik
2002-03-14Setup so ctors/dtors can run. Disabled for now, since they doEric Andersen
add a little bit to binary size... -Erik
2002-02-27Lose the -nostdlib, which causes problems with older binutils, andEric Andersen
add some fflush calls, since it seems streams are not flushed before an exec
2002-02-26Remove an erroneous -L-Eric Andersen
2002-02-26Patch from Miles Bader: All the -M* options shouldEric Andersen
suppress linking (right now, only `-M' does).
2002-02-25Yet another iteration...Eric Andersen
2002-02-25Both Miles and Manuel complained about this one. I was silentlyEric Andersen
losing all -Wl calls...