mirror of
https://git.yoctoproject.org/poky
synced 2026-03-12 02:09:39 +01:00
This was needed for interoperability between code compiled with gcc 4 and 5; there should be now a different fix for the issue: http://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/?id=c21cec84886d9c70396e9be0ceb9a8ef300b54be (From OE-Core rev: 80791bd2d58c2e56b0dfbd2f0d43db8c90841ee4) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 lines
625 B
PHP
12 lines
625 B
PHP
# icu configure defaults to CXX11 if no -std= option is passed in CXXFLAGS
|
|
# therefore pass one
|
|
BUILD_CXXFLAGS_append_pn-icu-native = " -std=c++98"
|
|
|
|
# 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"
|