summaryrefslogtreecommitdiff
path: root/Makefile
AgeCommit message (Collapse)Author
2004-12-11Remove some accumulated ugly junkEric Andersen
2004-08-21Kill off all support for 'gcc -pg' / 'gprof' style profiling. There is both aEric Andersen
size and performance penalty to profiling applications this way, as well as Heisenberg effects, where the act of measuring changes what is measured. There are better tools for doing profiling, such as OProfile, that do not require gcc to instrument the application code. -Erik
2004-08-10At solar's request...Manuel Novoa III
2004-03-18Alexandre Oliva writes:Eric Andersen
This patch arranges for the .so files in say /usr/lib to be soft links to ../../lib, instead of to /some/arbitrary/pathname/lib. This enables seamless relocation of a toolchain containing the development and run time trees in a sys-root.
2004-02-12Add our own copies of the include/scsi header files, per what glibcEric Andersen
does, rather than depending on the kernel header files. -Erik
2004-01-16s/UCLIBC_HAS_MMU/ARCH_HAS_MMU/gEric Andersen
2004-01-13Fixup dated commentsEric Andersen
2004-01-03Be sure to fully clean 2.6 kernel headers on 'make clean'Eric Andersen
2003-12-04Don't download the local data if we have it already.Manuel Novoa III
2003-11-23Make sure we use the right CC setting when building utils.Manuel Novoa III
Not doing so was breaking the buildroot softfloat arm build.
2003-11-22Make sure the utils build gets the setting for CROSS.Manuel Novoa III
2003-11-16Don't install shadow.h if shadow password support is disabled.Manuel Novoa III
2003-11-13Teach the install_dev target to behave itself and installEric Andersen
the correct stuff with the correct names, and not install yet another set of shared libs in the wrong place -Erik
2003-11-08For now, disable the iconv utilityEric Andersen
2003-11-07remove some junk I added while debuggingEric Andersen
2003-11-07It is remotely possible the utils might even compile this timeEric Andersen
around...
2003-11-06Begin converting the client utilsEric Andersen
2003-11-06s,(RUNTIME_PREFIX)/,(RUNTIME_PREFIX),gEric Andersen
2003-11-06s,(DEVEL_PREFIX)/,(DEVEL_PREFIX),gEric Andersen
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-04Minor makefile tweaksEric Andersen
2003-10-20Fix a stupid bug that caused uClibc to never provide the correctEric Andersen
fpu_control.h header file, since the correct arch specific one was always later overwritten by the generic one. oops. -Erik
2003-10-20Patch from Peter S. Mazinger:Eric Andersen
patch to allow building uClibc with busybox's chmod
2003-10-18more install changesEric Andersen
2003-10-18Do not install the uClibc wrapper toolchain by default. MakeEric Andersen
people ask for it explicitly.
2003-10-18the runtime should not install a /bin dirEric Andersen
2003-10-18Add a new RUNTIME_PREFIXEric 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-10-12Always build and install ldconfigEric Andersen
2003-09-09Enable automagic locale data downloadsEric Andersen
2003-09-08Add back in table-less ctype funcs for those interested in minimizingManuel Novoa III
static build sizes and not needing wchar support. Add in a SUSv3 getopt as an option for those not needing gnu getopt. Again, mainly for the static linking crowd.
2003-09-08Be certain the config system binaries are currentEric Andersen
2003-09-06Don't install floating point related headers, and wrap some previouslyManuel Novoa III
unwrapped prototypes, when float support is disabled. Also don't install printf.h if glibc custom printf specifier support is disabled.
2003-09-06Be more clearEric Andersen
2003-09-06Add more pretty commentsEric Andersen
2003-09-06Remove more headers when options are disabledEric Andersen
2003-09-03Some more buildroot-motivated fixes. Avoid installing some headers, asManuel Novoa III
well as stub libintl, depending on configuration.
2003-09-01Remove a bunch of guessing about the location of the kernelEric Andersen
headers. Move most of that into a script, and warn loudly when having to guess. -Erik
2003-08-24Fix a few bugs in the new extended locale functions.Manuel Novoa III
Move stub gettext functions to a stub libintl to make switching in gnu gettext easier. Also add a few gnu-isms. Change to using hidden names with global weak aliases for the extended locale functions, as expected by libstd++. Slightly rework the locale data generation stuff to allow pregenerated locale data to be used with buildroot.
2003-07-15Patch from Peter Kjellerstedt to not modify include/bits/sysnum.hEric Andersen
if it does not need to be updated.
2003-06-30Per suggestion from Stuart Hughes, allow uClibc to re-installEric Andersen
headers on a system where they have previously been installed.
2003-05-30In a number of places we erroneously used tests such as '#ifdef PIC' when weEric Andersen
should instead have been testing for '#ifdef __PIC__'. This resulted in NON-PIC code getting mixed into the shared library. Oops!!! -Erik
2003-03-07Patch from Stefan Allius:Eric Andersen
a make install_target stops if we have some sysmlinks in the destination target. This little patch force to install over a previous installed uClibc version,so we will allways get a consistent uClibc installation.
2003-03-05Patch from Konrad Eisele to add include/asm-generic since, at leastEric Andersen
on sparc, this is needed by some of the include/asm files
2003-03-03more uClinux shared libs fixupsDavid McCullough
2003-02-17updates to the uClinux-dist romfs and uClinux shared library targets.David McCullough
2003-02-11Per suggestion from Peter Lassahn, fix the install_dev targetEric Andersen