Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-11-02 | Don't pass target $CFLAGS to host builds (telling x86 compiler to be big-endian | Rob Landley | |
seldom ends well). Instead add -DBUILD_FOR_HOST to $HOSTCC and wrap #ifdefs around problematic (smack) includes from toys.h. | |||
2015-10-05 | Fix allnoconfig. (Exporting HOSTCC before HOSTCC?=cc caused a problem.) | Rob Landley | |
2015-09-17 | Fix a couple things gcc is too dumb to figure out on its own. | Rob Landley | |
2015-05-09 | Probe for -Wno-string-plus-int. | Rob Landley | |
LLVM has its own nuts warnings about things that aren't wrong, but disabling them with the relevant -Wno-* warning disabling command line option drives gcc nuts because it's a command line option it doesn't recognize. (gcc 4.2.1 dies with an error. gcc 4.6 warns about it _only_ if it's warning about something else. (PICK ONE, either you warn about this or you don't, distract people from actual problems with noise about something clearly unrelated to what just changed is extra-stupid.) So just probe for it, and add the flag only if it doesn't complain about it while we're producing an unrelated warning. | |||
2015-03-27 | Flag to make llvm shut up about a broken warning. | Rob Landley | |
2015-03-06 | Yank $STRIP from config (and STRIP=no weirdness) and just allow strip to fail. | Rob Landley | |
2015-02-28 | Add LDFLAGS and STRIP=no support. | Rob Landley | |
2014-08-30 | Old compilers complain about linker options passed with -c, so split out ↵ | Rob Landley | |
$LDOPTIMIZE. | |||
2013-08-13 | Add a new optimization flag at the suggestion of the musl guys telling gcc ↵ | Rob Landley | |
not to produce a large unused dwarf table for C++ style stack unwinding. | |||
2013-01-13 | Revert some debug code accidentally checked in at commit 715. | Rob Landley | |
2012-11-23 | Add expand command as described in POSIX-2008. | Jonathan Clairembault | |
Erratum: Do not handle backspace. | |||
2012-06-18 | Replace CCFLAGS with description of how to add flags to HOSTCC. | Rob Landley | |
2012-03-03 | Fix from Georgi Chorbadzhiyski to make cross compiling more robust.0.2.1 | Rob Landley | |
2009-08-06 | Unconditionally add the $CROSS_COMPILE prefix to $CC, even if it's already set. | Rob Landley | |
2008-01-19 | Zap toys/Config.in and instead create generated/Config.in from contents of | Rob Landley | |
toys/*.c. Move relevant info into comment at the top of each toys/*.c. Also convert more of Makefile into a thin wrapper around shell scripts that actually do the work. (Makefile is only still there for the user interface.) |