diff options
author | Taras Kondratiuk <takondra@cisco.com> | 2018-02-02 18:10:43 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-06-15 11:09:40 +0100 |
commit | ba69701dac785a220feffd6118718b1c9e733548 (patch) | |
tree | 2552f0108d352859f0a53048c4ea27a64cdc54c7 | |
parent | d5266f8f209cb80d9adb06e9cfc60515337a9398 (diff) | |
download | openembedded-core-ba69701dac785a220feffd6118718b1c9e733548.tar.gz openembedded-core-ba69701dac785a220feffd6118718b1c9e733548.tar.bz2 openembedded-core-ba69701dac785a220feffd6118718b1c9e733548.zip |
gcc: enable build-id in gcc-cross-initial
Normal gcc-cross has build-id feature enabled by default, so most of
target binaries has build-id. But libc (glibc, musl) doesn't have
build-id, because it is built with gcc-cross-initial.
Build-id is a useful feature, so enable it for gcc-cross-initial too.
Signed-off-by: Taras Kondratiuk <takondra@cisco.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-7.3.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-7.3.inc b/meta/recipes-devtools/gcc/gcc-7.3.inc index c662899174..b816f7d12f 100644 --- a/meta/recipes-devtools/gcc/gcc-7.3.inc +++ b/meta/recipes-devtools/gcc/gcc-7.3.inc @@ -120,6 +120,7 @@ EXTRA_OECONF_INITIAL = "\ --with-system-zlib \ --disable-lto \ --disable-plugin \ + --enable-linker-build-id \ --enable-decimal-float=no \ --without-isl \ --disable-libssp \ |