diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-30 17:43:28 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-10-01 08:16:03 +0100 |
commit | 21cc2a3f63ea260dbf6b50e2fd4dd50cacdd9935 (patch) | |
tree | be36bd0efa8d21979584b4b4389ab5ae30884530 | |
parent | 660543601171f88c75fb4e90f34dac86037f3f23 (diff) | |
download | openembedded-core-21cc2a3f63ea260dbf6b50e2fd4dd50cacdd9935.tar.gz openembedded-core-21cc2a3f63ea260dbf6b50e2fd4dd50cacdd9935.tar.bz2 openembedded-core-21cc2a3f63ea260dbf6b50e2fd4dd50cacdd9935.zip |
machine-sdk: Clear ABIEXTENSION to avoid sstate checksum mismatch issues
When switching MACHINE, nativeksdk recipes could end up being rebuilt. Clear
ABIEXTENSION to avoid this problem and ensure sstate checksum consistency.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/conf/machine-sdk/i586.conf | 1 | ||||
-rw-r--r-- | meta/conf/machine-sdk/i686.conf | 1 | ||||
-rw-r--r-- | meta/conf/machine-sdk/x86_64.conf | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/meta/conf/machine-sdk/i586.conf b/meta/conf/machine-sdk/i586.conf index baacce70af..41e5e159d1 100644 --- a/meta/conf/machine-sdk/i586.conf +++ b/meta/conf/machine-sdk/i586.conf @@ -1,3 +1,4 @@ SDK_ARCH = "i586" SDK_CC_ARCH = "-march=i586" +ABIEXTENSION_class-nativesdk = "" diff --git a/meta/conf/machine-sdk/i686.conf b/meta/conf/machine-sdk/i686.conf index ffdb46131c..fe406972c8 100644 --- a/meta/conf/machine-sdk/i686.conf +++ b/meta/conf/machine-sdk/i686.conf @@ -1,2 +1,3 @@ SDK_ARCH = "i686" SDK_CC_ARCH = "-march=i686" +ABIEXTENSION_class-nativesdk = "" diff --git a/meta/conf/machine-sdk/x86_64.conf b/meta/conf/machine-sdk/x86_64.conf index 812d67c8d2..61439b4fb0 100644 --- a/meta/conf/machine-sdk/x86_64.conf +++ b/meta/conf/machine-sdk/x86_64.conf @@ -1 +1,2 @@ SDK_ARCH = "x86_64" +ABIEXTENSION_class-nativesdk = "" |