diff options
author | André Draszik <adraszik@tycoint.com> | 2016-06-24 16:30:11 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-07-01 16:22:44 +0100 |
commit | 0412b6d90d9eaa424cd0e6b7f205ba7f6622625c (patch) | |
tree | f56a8008ba3011904bff07172db4bba9fa836379 | |
parent | c1dafd10d807c975b41b5d7f523aae4bbf443968 (diff) | |
download | poky-0412b6d90d9eaa424cd0e6b7f205ba7f6622625c.tar.gz |
uclibc: re-enable verbose compilation
uClibc-ng swapped the meaning of V=1 and V=2 in 2015 before
the 1.0.3 release.
Before that, V=2 printed the full commands while V=1 printed the
abbreviated versions.
This recipe was never updated to follow the change and we since
see brief build output only.
At the same time, convert V from an environment variable to
a make variable by adding to EXTRA_OEMAKE, so as to be in
line with how things are done in other recipes that use
kbuild.
(From OE-Core rev: 4ff37b9a55b1239e339e7d93a2ad6e0c71971345)
Signed-off-by: André Draszik <adraszik@tycoint.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-core/uclibc/uclibc.inc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/meta/recipes-core/uclibc/uclibc.inc b/meta/recipes-core/uclibc/uclibc.inc index cb785dd091..02cd8d1ae5 100644 --- a/meta/recipes-core/uclibc/uclibc.inc +++ b/meta/recipes-core/uclibc/uclibc.inc | |||
@@ -52,13 +52,11 @@ EXTRA_OEMAKE = "${OEMAKE_NO_CC} \ | |||
52 | 'HOSTCC=${BUILD_CC}' \ | 52 | 'HOSTCC=${BUILD_CC}' \ |
53 | 'HOST_CFLAGS=${BUILD_CFLAGS}' \ | 53 | 'HOST_CFLAGS=${BUILD_CFLAGS}' \ |
54 | 'CC=${CC}' \ | 54 | 'CC=${CC}' \ |
55 | ARCH=${UCLIBC_ARCH}" | 55 | ARCH=${UCLIBC_ARCH} \ |
56 | V=1" | ||
56 | 57 | ||
57 | EXTRA_OEMAKE_task_do_package = "${OEMAKE_NO_CC}" | 58 | EXTRA_OEMAKE_task_do_package = "${OEMAKE_NO_CC}" |
58 | 59 | ||
59 | # enable verbose output: | ||
60 | export V="2" | ||
61 | |||
62 | # -O<n> -fno-omit-frame-pointer ends up with GCC ICE on thumb as reported | 60 | # -O<n> -fno-omit-frame-pointer ends up with GCC ICE on thumb as reported |
63 | # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44860 | 61 | # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44860 |
64 | # | 62 | # |