Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-11-26 | Robustify setting silent mode | Bernhard Reutner-Fischer | |
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | |||
2009-11-20 | realclean: wipe kconfig objects | Bernhard Reutner-Fischer | |
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | |||
2009-11-19 | remove ARCH_CFLAGS, ARCH_LDFLAGS and CROSS | Peter S. Mazinger | |
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net> Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | |||
2009-10-17 | Makerules: add a do_sed command | Austin Foxley | |
Signed-off-by: Austin Foxley <austinf@cetoncorp.com> | |||
2009-08-17 | support building out-of-tree | Bernhard Reutner-Fischer | |
Handle O= Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | |||
2009-01-28 | Partially revent "make utils" fix. This version is less intrusive, | Denis Vlasenko | |
but still works! :) | |||
2009-01-28 | "make utils" now successfully makes utils for target | Denis Vlasenko | |
2009-01-14 | - hide __dl_ldso__ (Peter S. Mazinger) | Bernhard Reutner-Fischer | |
2008-12-22 | - fix fpclassify, signbit, isfinite, isnan, isinf macros for long double ↵ | Bernhard Reutner-Fischer | |
math support - add rule to create preprocessor output for float- and long double math wrapper | |||
2008-12-12 | - only strip if cc compiled fine | Bernhard Reutner-Fischer | |
Avoids displaying an additional error from strip when your cc ICEs or fails otherwise. | |||
2008-12-04 | Added do_awk commanf for invoking awk parser. It will be used | Carmelo Amoroso | |
for generating some file on-the-fly on the NPTL case. Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com> | |||
2008-11-07 | - less verbose make clean | Bernhard Reutner-Fischer | |
2008-10-14 | - fix locale dependencies and make default locale generation less verbose. | Bernhard Reutner-Fischer | |
The verbosity can be set to the previous level by passing V=2 to make. | |||
2008-10-09 | - prevent spurious rebuilds | Bernhard Reutner-Fischer | |
Previously this led to superfluous re-stripping and the re-ar'ing | |||
2008-10-09 | - cut down on attempted pattern rule matches | Bernhard Reutner-Fischer | |
2008-10-09 | - beautify hcompile.u | Bernhard Reutner-Fischer | |
2008-10-08 | - revert bad hunk from (my) r22403 | Bernhard Reutner-Fischer | |
CRT need config too | |||
2008-09-16 | - do not attempt to rm twice | Bernhard Reutner-Fischer | |
- clean targets are supposed to clean independently of any .config | |||
2008-09-11 | - the help target is phony | Bernhard Reutner-Fischer | |
2008-09-11 | - honour EXTRA_CPPFLAGS | Bernhard Reutner-Fischer | |
Makes it easier to say something like make libc/sysdeps/linux/common/close.i EXTRA_CPPFLAGS=-P | |||
2008-08-27 | - should either be defined or callers should do_t_strip manually afterwards | Bernhard Reutner-Fischer | |
2008-07-11 | - the interp is an order-only prereq of lib-so-y | Bernhard Reutner-Fischer | |
- hint vi on the filetype while at it | |||
2008-06-17 | - move stripping into do_ar resp compile-m for the sake of simplicity | Bernhard Reutner-Fischer | |
2008-06-16 | - remove improper comment | Bernhard Reutner-Fischer | |
2008-06-11 | - disregard any and all $(top_builddir) in deps. | Bernhard Reutner-Fischer | |
Fixes e.g. make -C ldso rebuilding unneeded stuff | |||
2008-06-10 | - no need to export the included dependencies generated by cc | Bernhard Reutner-Fischer | |
2008-06-09 | - Improve prerequisites and avoid spurious reconfigurations. | Bernhard Reutner-Fischer | |
More details: http://uclibc.org/lists/uclibc/2008-June/019509.html | |||
2008-06-04 | - strip the targets and not prerequisites | Bernhard Reutner-Fischer | |
- tidy up PTHREADS_DEBUG_SUPPORT by using per-target STRIP_FLAGS for the few This fixes the spurious rebuilds bernd and vda were seeing with libpthreads. | |||
2008-06-04 | - fix typo (have to check the content, not if true) | Bernhard Reutner-Fischer | |
2008-06-03 | - add libpthread-nonshared-y to files.dep | Bernhard Reutner-Fischer | |
Fixes superfluous rebuild of pthread_atfork.oS. | |||
2008-06-03 | - Generate dummy rules for prerequisites. | Bernhard Reutner-Fischer | |
Fixes build-failures in ldso when switching thread-impl because of missing rule to make e.g. pthreadtypes.h Thanks to Peter Kjellerstedt for the reminder. | |||
2008-06-03 | - breakup lines of compile.c and add a variable to hold filter-out PHONY target. | Bernhard Reutner-Fischer | |
No functional changes. | |||
2008-06-01 | Still forgot some libraries in one of the previous commits. | Bernd Schmidt | |
2008-06-01 | Use $(<D) rather than $(^D), as the latter now contains an element | Bernd Schmidt | |
corresponding to FORCE, which causes some CFLAGS to be lost. Include all objects in the dependency calculation, not just the ones in libc. | |||
2008-06-01 | - since we force make into trying to rebuild unconditionally, we have to | Bernhard Reutner-Fischer | |
check for changed prerequisites manually. | |||
2008-06-01 | - store the used compiler plus flags in the .%.dep files too and | Bernhard Reutner-Fischer | |
use this info to decide whether or not to rebuild something (if e.g. the filestamp of the prereq did not change but the cc or CFLAGS did). For files that we did not yet build we have no flags on record, so those did change inherently and we rebuild. Shouldn't be much slower than before. | |||
2008-05-31 | Oh, and prepend a dot to the basename so i don't have to change my habit of | Bernhard Reutner-Fischer | |
calling 'size thefile.o*' | |||
2008-05-31 | - generate deps via gcc | Bernhard Reutner-Fischer | |
2008-05-31 | - fix whitespace | Bernhard Reutner-Fischer | |
2008-05-31 | - fix prerequisites of sysnum.h (has to depend on the script that generates it) | Bernhard Reutner-Fischer | |
2008-03-26 | - fixup stripping of host utils and make host-utils compile with std=gnu99 | Bernhard Reutner-Fischer | |
2008-03-26 | - improve building utils | Bernhard Reutner-Fischer | |
Either by first compiling objects and linking those or by just passing the source to create the desired binary (this patchlet does the latter). Fixes cosmetic glitch by just not building individual .o (in pwd, at least). | |||
2008-03-26 | - fix generation of sysnum.h for parallel builds, second take. | Bernhard Reutner-Fischer | |
Revert r21503 and redo more cleanly. | |||
2008-03-26 | - fix (parallel) compilation error in ldso.c | Bernhard Reutner-Fischer | |
We have to generate sysnum.h to satisfy all includes of ldso.c | |||
2008-01-26 | Filter out '-std=gnu99' when running the assembler. This causes an error | "Steven J. Hill" | |
when building MIPS that looks like this: libc/string/mips/memcpy.S:156:1: pasting "memcpy" and ":" does not give a valid preprocessing token make[1]: *** [libc/string/mips/memcpy.os] Error 1 Even if this does not cause an error on other architectures, this option should not be having an effect on preprocessed assembly code. | |||
2008-01-18 | Another piece needed for FD-PIC. This compiles another startfile, crtreloc.o, | Bernd Schmidt | |
if necessary. | |||
2008-01-16 | - check for -nostdlib | Bernhard Reutner-Fischer | |
2007-11-23 | Some shared flat improvements. | Bernd Schmidt | |
Fix minor errors: - UCLIBC_SHARED_FLAT_ID instead of SHARED_FLAT_ID - use -Wl,-shared-lib-id properly Use libc_so.a as the source for the shared libc, in order to be able to use -mleaf-id-shared-library on the Blackfin. | |||
2007-10-13 | - use the compiler-driver instead of the linker | Bernhard Reutner-Fischer | |
- adjust setting flags accordingly to use (hardcoded, see below) -Wl, Potential improvements: *) --warn-unresolved-symbols should perhaps be used for all libs *) eventually rename LDFLAGS to CC_LDFLAGS *) probe for compiler driver's notion of flag to use for passing in linker flags (i.e. don't hardcode "-Wl,") | |||
2006-12-11 | create new menu so people can select what format they wish to build uClibc | Mike Frysinger | |