diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-05-01 15:40:40 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-05-01 22:49:00 +0100 |
commit | 97df4e8e61a7693d548c3145e36f1d5503e91d03 (patch) | |
tree | 7dd1be0b2305be8e2a1403522d4b247ec77ecf46 /meta/conf/layer.conf | |
parent | 9068a65baf4a28d04efad9297b16a2883ac42689 (diff) | |
download | openembedded-core-97df4e8e61a7693d548c3145e36f1d5503e91d03.tar.gz openembedded-core-97df4e8e61a7693d548c3145e36f1d5503e91d03.tar.bz2 openembedded-core-97df4e8e61a7693d548c3145e36f1d5503e91d03.zip |
layer.conf: Exclude gcc-cross dependencies from checksums
gcc-cross technically depends on the C library however we can use
one toolchain for multiple different tunes within a given architecture.
Manually remove these dependencies so that gcc-cross isn't rebuild with
every tune change.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/layer.conf')
-rw-r--r-- | meta/conf/layer.conf | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/meta/conf/layer.conf b/meta/conf/layer.conf index 18609ddc5c..dbcb65326b 100644 --- a/meta/conf/layer.conf +++ b/meta/conf/layer.conf @@ -31,3 +31,10 @@ SIGGEN_EXCLUDERECIPES_ABISAFE += " \ packagegroup-x11-xserver \ systemd-serialgetty \ " + +SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS += " \ + gcc-cross-${TARGET_ARCH}->eglibc \ + gcc-cross-${TARGET_ARCH}->uclibc \ + gcc-cross-${TARGET_ARCH}->linux-libc-headers \ +" + |