diff options
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-common.inc')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-common.inc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-common.inc b/meta/recipes-devtools/gcc/gcc-common.inc index d63c07f68a..6f2f224a14 100644 --- a/meta/recipes-devtools/gcc/gcc-common.inc +++ b/meta/recipes-devtools/gcc/gcc-common.inc | |||
@@ -25,6 +25,11 @@ def get_gcc_mips_plt_setting(bb, d): | |||
25 | return "--with-mips-plt" | 25 | return "--with-mips-plt" |
26 | return "" | 26 | return "" |
27 | 27 | ||
28 | def get_gcc_ppc_plt_settings(bb, d): | ||
29 | if d.getVar('TRANSLATED_TARGET_ARCH', True) in [ 'powerpc' ] and not bb.utils.contains('DISTRO_FEATURES', 'bssplt', True, False, d): | ||
30 | return "--enable-secureplt" | ||
31 | return "" | ||
32 | |||
28 | def get_long_double_setting(bb, d): | 33 | def get_long_double_setting(bb, d): |
29 | if d.getVar('TRANSLATED_TARGET_ARCH', True) in [ 'powerpc', 'powerpc64' ] and d.getVar('TCLIBC', True) in [ 'uclibc', 'glibc' ]: | 34 | if d.getVar('TRANSLATED_TARGET_ARCH', True) in [ 'powerpc', 'powerpc64' ] and d.getVar('TCLIBC', True) in [ 'uclibc', 'glibc' ]: |
30 | return "--with-long-double-128" | 35 | return "--with-long-double-128" |