]> code.ossystems Code Review - openembedded-core.git/commit
security_flags: Add SECURITY_CFLAGS to TARGET_CC_ARCH for binutils
authorKhem Raj <raj.khem@gmail.com>
Mon, 15 Feb 2016 16:57:14 +0000 (16:57 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 15 Feb 2016 17:58:08 +0000 (17:58 +0000)
commit9349f28531619a4ff15c382dacc460d61e3ec7af
treea31710e0a789a48197bf56aea6eb80caa06efcdc
parent3685a1246110d84bffffa6d03a3c2ec0417cb4a3
security_flags: Add SECURITY_CFLAGS to TARGET_CC_ARCH for binutils

libtool decides to
filter out -fstack-protector-strong on its own and its documented here

https://www.gnu.org/software/libtool/manual/html_node/Stripped-link-flags.html

this causes linking errors when linking libbfd.so since objects (.o) are
compiled using -fstack-protector-strong so they are expecting to link
with libssp but the option goes missing in linker flags.

With this patch the security flags are hoisted upto CC itself and
libtool thankfully does not touch CC.

Adding to CC also means that we can now remove it from LDFLAGS since
when gcc driver is used to do linking then we have LD = CC and this
option makes to linker cmdline

Since CC is used without CFLAGS in configure tests, some tests fail
complaining that -Olevel is not used while using _FORTIFY_SOURCE
therefore added SELECTED_OPTIMIZATION to TARGET_CC_ARCH as well

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/conf/distro/include/security_flags.inc