summaryrefslogtreecommitdiff
path: root/Rules.mak
AgeCommit message (Collapse)Author
2003-11-16Patch from Jeffrey Baitis <baitisj@evolution.com> for mips arch tuning.Manuel Novoa III
2003-11-12Revert the stupid quoting junk I inadvertantly committedEric Andersen
2003-11-12Bump version numberEric Andersen
2003-11-10Strip off quotes from TARGET_ARCHEric Andersen
2003-11-07It is remotely possible the utils might even compile this timeEric Andersen
around...
2003-11-05Kill initfini.awkEric Andersen
2003-11-05Patch from Peter S. Mazinger to hunt for awk in additionalEric Andersen
places....
2003-11-05Kill off "mipsel" and just use "mips"Eric Andersen
2003-11-04Rework the config system. Better utilize the Kconfig languageEric Andersen
which should simplify enabling arbitrary architectures. -Erik
2003-11-03Begin preparations for the next releaseEric Andersen
2003-10-31Some more soft float fixes... for arm in particular (libfloat).Manuel Novoa III
Remove the ADD_LIBGCC_FUNCTIONS option and do things the right way. Either we have a shared libgcc available, or the libgcc routines aren't PIC and don't belong in the shared libc anyway.
2003-10-24Disable optimizations with debuggingEric Andersen
2003-10-24better tuning for xscale that copes with generally available toolchainsEric Andersen
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-09-11Fix several stupid bugs I let slip into the releaseEric Andersen
2003-09-05Bump version number in preparation for a releaseEric Andersen
2003-09-01Do not overwrite CPU_CFLAGS values....Eric Andersen
2003-08-20Revert this change for now.Eric Andersen
2003-08-18Cleanup arm architecture optimizations and add big endian arm as well.Eric Andersen
2003-08-13Patch from Paul Mundt adding uClibc sh64 support:Eric Andersen
Here's a patch that implements the beginnings of a rudimentary sh64 port. So far, this only works static, as I haven't done any of the ldso work yet. I've also not touched the libpthread stuff yet either, so that's also disabled for now. This port was based off of some work that Sean McGoogan at SuperH did for his initial port, but the this patch doesn't carry over too much from there (basically the libc/sysdeps/linux/sh64/Makefile (or rather, parts of it), the setjmp/longjmp stuff (which I had to rewrite portions of it to work with the new toolchains), etc.). However, for static, everything appears to work correcly, at least in a hello world type application.
2003-07-15Patch from Peter Kjellerstedt to make it simpler for arches to specifyEric Andersen
either -fPIC or -fpic
2003-06-14Bump version number in preparation for a releaseEric Andersen
2003-04-29Some small fixups for the h8 support and add the h8s platform support.David McCullough
2003-03-03begin preparing for releaseEric Andersen
2003-02-17updates to the uClinux-dist romfs and uClinux shared library targets.David McCullough
2003-02-15Don't just tune, use -march which implies -mcpu as wellEric Andersen
2003-02-12Bump version numberEric Andersen
2003-02-10Don't use -O0 when DODEBUG is turned on.Miles Bader
2003-01-24Begin release preparations...Eric Andersen
2003-01-23Shuffle OPTIMIZATION setting a bitEric Andersen
2003-01-23Cleanup makefiles and make clean a bitEric Andersen
2003-01-17Remember to also export LC_ALL in addition to setting it.Eric Andersen
-Erik
2003-01-16Update build rules a bit. fix quoting problems. Update defaultEric Andersen
x86 compiler optimization to not force building i386 opcodes.
2003-01-14Strip off unwanted quotes from ARCH_CFLAGS. Attempt toEric Andersen
enforce consistent sort order, 'gcc -print-search-dirs' behavior, etc by forcing the build into the C locale. -Erik
2002-12-13Only build the ncurses stuff when it is needed, based on aEric Andersen
patch from Stefan Allius (though the extra/config/Makefile rework is mine), -Erik
2002-12-13Move the soft float checkEric Andersen
2002-12-09Cleanup the case when using the system shared lib loaderEric Andersen
-Erik
2002-12-05Added CPU_CFLAGS and CPU_LDFLAGS for cris.Tobias Anderberg
Added additional CFLAGS for cris when compiling with PIC.
2002-12-04Change some variable names so we are more consistant with whatEric Andersen
the linux kernel uses. -Erik
2002-12-04Override optimization settings when debuggingEric Andersen
2002-12-03Make the arm cpu-specific optimizations work properlyEric Andersen
2002-11-21Patch from Yoshinori Sato to update the h8300 architecture.Eric Andersen
2002-11-21Doh! Manuel noticed I'd put the CFLAGS before DODEBUG, killingEric Andersen
any chance of actually building with debug symbols. -Erik
2002-11-19Remove use of $(strip) when no longer needed. Fixup DODEBUGEric Andersen
so when debugging is enabled we don't enable all the major optimizations. -Erik
2002-11-09For arm use -mcpu for the moment, since it seems to workEric Andersen
2002-11-09Final update for 0.9.16Eric Andersen
2002-11-08Add CPU_CFLAGS-y into LIBGCC_CFLAGS so multilibs gcc will behaveEric Andersen
itself. Revery the "=" to ":=" change, so people like Miles can set stuff in their .config
2002-11-08Large cleanup patch, based in large part on a patch fromEric Andersen
Stefan Allius, which adds a great deal of sanity.