mirror of
https://git.yoctoproject.org/poky
synced 2026-02-09 02:03:04 +01:00
License checksum change due to copyright year update. Latest icu will not compile with anything less than C++11, so drop the enforcement of an earlier C++ version. This should be okay, as there is now a fix in place for the problem of mixing native gcc 4/5 compiled code: http://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/?id=c21cec84886d9c70396e9be0ceb9a8ef300b54be (From OE-Core rev: b002f44ed5a07b42deb8cccdb192e12091cd654f) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
8 lines
476 B
PHP
8 lines
476 B
PHP
# Some distros (ubuntu 16.10, debian-testing) default to gcc configured with
|
|
# --enable-default-pie (see gcc -v). This breaks e.g. prelink-native on a pie
|
|
# default system if binutils-native was built on a system which is not pie default
|
|
# We therefore enable pie unconditionally for native recipes where static libs are
|
|
# used such as libiberty from binutils, for now, until our minimum distro set is
|
|
# all default pie.
|
|
BUILD_CFLAGS_append_pn-binutils-native = " -pie -fpie"
|