Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-05-20 | Back out nptl changes, which for now will be done in branches/uClibc-nptl | Eric Andersen | |
2005-05-15 | Fix up some more NPTL stuff for header file symbolic links. | "Steven J. Hill" | |
2005-05-14 | There were two versions of 'pthreadtypes.h' originally in uClibc. Also, | "Steven J. Hill" | |
since we are going to support the two implementations of pthreads, we again need to instead create symbolic links to use the proper version of the file depending on the pthreads option chosen. | |||
2005-05-14 | In order to accomodate usage of either pthreads implementation, we now | "Steven J. Hill" | |
have to create symbolic links for 'semaphore.h' and 'pthread.h' which will point to the proper pthreads directory. When we finish getting NPTL working with uClibc, perhaps we can merge them, but a first glance at the differences between the two does not make that very likely. | |||
2005-05-14 | Top-level makefile fix for OS agnosticism and set the value of TARGET_ARCH | "Steven J. Hill" | |
using grep because the '.config' will not get included if we are doing a 'clean' or other targets. This was preventing the proper cleaning up target architecture include files. | |||
2005-03-10 | chown syntax 0.0 -> 0:0 | Mike Frysinger | |
2005-03-09 | add a check target cause i'm lazy | Mike Frysinger | |
2005-02-16 | Since libdl is pretty small, and not likely to benefit from mklibs.py | Eric Andersen | |
and similar, lets just remove libdl_pic.a and avoid the issue | |||
2005-02-16 | Unlike the other static libs, libdl.a and libdl_pic.a are different. | Manuel Novoa III | |
So we need to copy the actual libdl_pic.a or bad things happen when optimizing libdl.so with mklibs.py. | |||
2005-02-08 | Update release target for subversion | Eric Andersen | |
2005-02-08 | add notes about header generation | Mike Frysinger | |
2005-01-31 | Always use the target CC when generating include/bits/sysnum.h, since some | Eric Andersen | |
arches like mips have an include/asm/unistd.h that depends on #defines provided only by gcc. Therefore, since we may need to generate include/bits/sysnum.h before the target CC is actually existant when bootstrapping a toolchain, we must ensure that include/bits/sysnum.h is rebuilt every time we run make. Sigh. What a pain. -Erik | |||
2005-01-29 | Use HOSTCC for seting up the syscall list | Eric Andersen | |
2005-01-24 | Use $(LN) rather than ln. | Peter Kjellerstedt | |
2005-01-19 | add a tiny hack so that the headers target isnt rebuilt all the time, only ↵ | Mike Frysinger | |
when it should be | |||
2005-01-18 | tweak target dependencies to support parallel builds | Mike Frysinger | |
2005-01-16 | Made it possible to make utils when $(CROSS) or $(CC) contain spaces. | Peter Kjellerstedt | |
2005-01-11 | Do not use portable (POSIX) 'cp -PRf' but instead use 'cp -dRf' since | Eric Andersen | |
busybox does not yet support 'cp -P' | |||
2005-01-11 | Patch from Paul Mundt (lethal) adding an initial librt implementation. | Eric Andersen | |
I then reworked the syscall handling and made minor cleanups. With luck I've not completely broken his patch... | |||
2005-01-01 | Amir Shalem writes: | Mike Frysinger | |
here are few patches for better compatability in ./Makefile: cp.diff - use portable (POSIX) way to specfic --no-dereference (-d) | |||
2005-01-01 | Amir Shalem writes: | Mike Frysinger | |
here are few patches for better compatability in ./Makefile: make.diff - make should never called directly, change it to $(MAKE) | |||
2004-12-11 | Remove some accumulated ugly junk | Eric Andersen | |
2004-08-21 | Kill off all support for 'gcc -pg' / 'gprof' style profiling. There is both a | Eric 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-10 | At solar's request... | Manuel Novoa III | |
2004-03-18 | Alexandre 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-12 | Add our own copies of the include/scsi header files, per what glibc | Eric Andersen | |
does, rather than depending on the kernel header files. -Erik | |||
2004-01-16 | s/UCLIBC_HAS_MMU/ARCH_HAS_MMU/g | Eric Andersen | |
2004-01-13 | Fixup dated comments | Eric Andersen | |
2004-01-03 | Be sure to fully clean 2.6 kernel headers on 'make clean' | Eric Andersen | |
2003-12-04 | Don't download the local data if we have it already. | Manuel Novoa III | |
2003-11-23 | Make 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-22 | Make sure the utils build gets the setting for CROSS. | Manuel Novoa III | |
2003-11-16 | Don't install shadow.h if shadow password support is disabled. | Manuel Novoa III | |
2003-11-13 | Teach the install_dev target to behave itself and install | Eric Andersen | |
the correct stuff with the correct names, and not install yet another set of shared libs in the wrong place -Erik | |||
2003-11-08 | For now, disable the iconv utility | Eric Andersen | |
2003-11-07 | remove some junk I added while debugging | Eric Andersen | |
2003-11-07 | It is remotely possible the utils might even compile this time | Eric Andersen | |
around... | |||
2003-11-06 | Begin converting the client utils | Eric Andersen | |
2003-11-06 | s,(RUNTIME_PREFIX)/,(RUNTIME_PREFIX),g | Eric Andersen | |
2003-11-06 | s,(DEVEL_PREFIX)/,(DEVEL_PREFIX),g | Eric Andersen | |
2003-11-05 | Kill off "mipsel" and just use "mips" | Eric Andersen | |
2003-11-04 | Rework the config system. Better utilize the Kconfig language | Eric Andersen | |
which should simplify enabling arbitrary architectures. -Erik | |||
2003-11-04 | Minor makefile tweaks | Eric Andersen | |
2003-10-20 | Fix a stupid bug that caused uClibc to never provide the correct | Eric Andersen | |
fpu_control.h header file, since the correct arch specific one was always later overwritten by the generic one. oops. -Erik | |||
2003-10-20 | Patch from Peter S. Mazinger: | Eric Andersen | |
patch to allow building uClibc with busybox's chmod | |||
2003-10-18 | more install changes | Eric Andersen | |
2003-10-18 | Do not install the uClibc wrapper toolchain by default. Make | Eric Andersen | |
people ask for it explicitly. | |||
2003-10-18 | the runtime should not install a /bin dir | Eric Andersen | |
2003-10-18 | Add a new RUNTIME_PREFIX | Eric Andersen | |
2003-10-18 | Peter 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. |