Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-07-06 | Minor build tweaks that save 1100 bytes building busybox on Ubuntu 6.06. | Rob Landley | |
2006-07-04 | - Pull r15593: | Bernhard Reutner-Fischer | |
Rename to CROSS_COMPILE and move its configuration to .config.mak. (Shaun Jackman) | |||
2006-06-30 | Annoint 1.2.0. | Rob Landley | |
2006-06-22 | Patch from Shaun Jackman to replace CFLAGS_EXTRA with .config.mak | Rob Landley | |
2006-06-13 | Use -ffunction-sections -fdata-sections --gc-sections if the compiler supports | Rob Landley | |
it. If nothing else, this gives us better granularity in bloatcheck. | |||
2006-06-13 | - make VERBOSE= and V= work equally; use BUILD_VERBOSE internally. | Bernhard Reutner-Fischer | |
- move the link flags to cmd_link* so they are printed when requesting verbose output | |||
2006-06-11 | - invert logic for nocheck_targets to exclude the empty default target. | Bernhard Reutner-Fischer | |
2006-06-10 | - don't check for toolchain-setting for make targets that don't need them | Bernhard Reutner-Fischer | |
- we already depend on sed, so do away with tr. Avoids pulling in yet another dependency. | |||
2006-05-29 | - cleanup conftest temporary files. | Bernhard Reutner-Fischer | |
2006-05-26 | - add central knob to turn off getopt_long everywhere. EXPERIMENTAL! | Bernhard Reutner-Fischer | |
Adds "Enable getopt long" under "General options", default y. Send patches to fix getopt_ulflags and run_parts.c if you turn this off.. See http://busybox.net/lists/busybox/2006-May/021828.html for a start to run-parts | |||
2006-05-26 | - add target hosttools (see make help) | Bernhard Reutner-Fischer | |
- rename check_gcc to check_cc and pass the CC to use as arg#1; peruse check_cc for HOSTCFLAGS - add and use check_strip - add checks for {,no-}whole-archive and {start,end}-group LD flags | |||
2006-05-15 | The one line fix to Bernhard Fischer's "profoundly". | Rob Landley | |
2006-05-11 | back out default implicit %.o rule for now | Mike Frysinger | |
2006-05-10 | add implicit rule for %.a to help debugging in subdirs | Mike Frysinger | |
2006-05-10 | add a default .o rule for easier debug | Mike Frysinger | |
2006-05-09 | Split CONFIG_DEBUG from CONFIG_DEBUG_PESSIMIZE, and consolidate some Rules.mak | Rob Landley | |
stuff along the way. | |||
2006-05-08 | - fix build | Bernhard Reutner-Fischer | |
2006-05-08 | The changes svn 14960 made to Rules.mak broke building out of tree | Rob Landley | |
(with O=directory), and reverting them fixes building out of tree. I'd be happy to fix them up instead of reverting them if I had the foggiest idea what they were trying to do, but I don't, and this at least gets building out of tree working again... | |||
2006-05-07 | Remove bb_strlen() in favor of -fno-builtin-strlen. Saves as many bytes | Rob Landley | |
as the old optimization did (actually does slightly better under gcc 4.0), and simplifies the code. | |||
2006-04-29 | compile.h is incorrect; create a new do_link.h and use that for bb_mkdep and ↵ | Mike Frysinger | |
usage | |||
2006-04-28 | - rerun gcse pass after reload, enable whole-program iff we are not building | Bernhard Reutner-Fischer | |
the lib (due to bug in gcc; see comment.) I would have run the testsuite to check if everything is still behaving, but unfortunately i cannot run the testsuite anymore: it just sits there and does nothing even with a pristine checkout and an old gcc. srcdir=/tmp/busybox/testsuite /tmp/busybox/testsuite/runtest PASS: Applet order FAIL: Common typos PASS: Obsolete function usage PASS: Obsolete function usage <spins, ^C> make[1]: *** [check] Interrupt make: *** [check] Interrupt I've just corrected that wrong double-printing. Anyway. with gcc-4.1-HEAD from earlier today, we now have for defconfig+ COMPILE_AT_ONCE: 880 -rwxr-xr-x 1 433 433 893476 Apr 28 21:41 busybox.oorig-4.0 860 -rwxr-xr-x 1 433 433 874560 Apr 28 21:36 busybox.oorig 844 -rwxr-xr-x 1 433 433 858752 Apr 28 21:49 busybox text data bss dec hex filename 879920 11568 1039148 1930636 1d758c busybox.oorig-4.0 862802 10192 1038796 1911790 1d2bee busybox.oorig 848066 9100 1037536 1894702 1ce92e busybox values for 4.0.2 just added for reference.. | |||
2006-04-21 | 2006-04-20 Shaun Jackman <sjackman@gmail.com> | Mike Frysinger | |
* Makefile: Build a bFLT binary. * Rules.mak: Ditto. | |||
2006-04-19 | svn 14824 broke -funsigned-char and possibly building out of tree, because | Rob Landley | |
$(srcdir) can't bind early since it's set to a different value in each subdir. If it binds early, it's blank, hence an empty -I which eats the next option as a directory to look for #include files in. So CFLAGS has to bind late, but the check_gcc stuff should only get run once. I added a "make V=2" mode to show when check_gcc gets run, and turned WARNINGS into a CFLAGS line since it was always getting added anyway. | |||
2006-04-11 | - pin the CFLAGS to make sure that we don't have to re-evaluate the | Bernhard Reutner-Fischer | |
check_gcc over and over again. Makes make -j work for me.. | |||
2006-04-02 | - switch Warning Of the Week to wrong or missing prototypes. | Bernhard Reutner-Fischer | |
e.g. archival/uncompress.c wrongly includes libbb.h instead of busybox.h decompress_bunzip2.c,open_transformer.c don't include the proper "unarchive.h" etc, etc. | |||
2006-03-29 | - warn a bit more verbosely about fmt stuff for non-release versions | Bernhard Reutner-Fischer | |
2006-03-29 | - mark trunk as 1.2.0-pre0 | Bernhard Reutner-Fischer | |
2006-03-28 | Mike Frysinger pointed out we can go | Rob Landley | |
CFLAGS=-I/usr/some/funky/path/to/selinux \ LDFLAGS=-L/usr/some/funky/path/to/selinux make So Jan Kiszka reverted part of the selinux patch. | |||
2006-03-27 | Patch from Jan Kiszka: In case the libselinux development installation is not | Rob Landley | |
located at its default location, this patch allows to override the path via SELINUX_INC and SELINUX_LIB when invoking make. | |||
2006-03-22 | We make both busybox and busybox_unstripped all the time now, no need to | Rob Landley | |
specify whether or not to strip the binary. | |||
2006-03-22 | Annoint 1.1.1. | Rob Landley | |
2006-03-21 | - workaroung pr25795 in gcc-4.1 | Bernhard Reutner-Fischer | |
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25795 | |||
2006-03-13 | - revert back to r14406 | Bernhard Reutner-Fischer | |
2006-03-10 | add a sep option for stripping | Mike Frysinger | |
2006-03-09 | - remove check. Fixes e.g. buildroot | Bernhard Reutner-Fischer | |
2006-03-09 | - backout using features which are not available with the previous stable | Bernhard Reutner-Fischer | |
version of make (3.71.1). | |||
2006-03-03 | - correct comment. | Bernhard Reutner-Fischer | |
Should revisit gcc >= 4.1 with that =1 later on | |||
2006-03-03 | Denis Vlasenko noticed that falign=0 is meaningless, and that should probably | Rob Landley | |
be falign=1. Saves a little over 3k on an x86 "make defconfig" build. | |||
2006-03-02 | - make sure applets.o is rebuilt when the .config changes. | Bernhard Reutner-Fischer | |
- don't overwrite objects in the archive. Affected applets with name-clash mostly vs. libbb: iplink_main iproute_main iptunnel_main login_main run_parts_main | |||
2006-03-01 | - fixes parallel builds (make -j) | Bernhard Reutner-Fischer | |
- use less resources for the buildsystem itself | |||
2006-02-02 | make the build system puuuuuuuuuuurty | Mike Frysinger | |
2006-01-31 | - pass -static via CC rather than LD | Bernhard Reutner-Fischer | |
2006-01-30 | Remove foo.txt and reenable -funsigned-char now that ash is fixed. | Rob Landley | |
2006-01-27 | - add a macro to check for ld and as flags | Bernhard Reutner-Fischer | |
Very unreliable as e.g the ld check will see the flags supported by each emulation, not just the active one. good enough for now.. Fix would be to crate one or more dummy .c files and accually try if a flag works. | |||
2006-01-24 | - correct flag for gcc-3.x | Bernhard Reutner-Fischer | |
2006-01-23 | ash with -funsigned-char don`t work! | "Vladimir N. Oleynik" | |
2006-01-19 | - bump version to 1.1.1 nonrelease series (let's say -pre0). | Bernhard Reutner-Fischer | |
2006-01-15 | - shared libbusybox. | Bernhard Reutner-Fischer | |
- IMA compilation option (aka IPO, IPA,..) Please holler if i broke something.. | |||
2006-01-10 | And lo, we hath reached Release Candidate 1. 1.1.0 should happen this week. | Rob Landley | |
2005-12-15 | The rest of Yann E. Morin's install revamp. | Rob Landley | |