diff options
author | Roy.Li <rongqing.li@windriver.com> | 2013-06-14 15:15:22 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-06-17 16:44:36 +0100 |
commit | 07f4030909dcc14c4ce4d6d3690a192c0b4040a9 (patch) | |
tree | 4cb016793bdc7e7211ccc4af5a39aba22ec7cdfa /meta/recipes-graphics | |
parent | 4defab3588a5a5e6e3fcdb8007eade18120094f6 (diff) | |
download | openembedded-core-07f4030909dcc14c4ce4d6d3690a192c0b4040a9.tar.gz openembedded-core-07f4030909dcc14c4ce4d6d3690a192c0b4040a9.tar.bz2 openembedded-core-07f4030909dcc14c4ce4d6d3690a192c0b4040a9.zip |
directfb:filter out -fno-omit-frame-pointer option on x86 arch
directfb need -fomit-frame-pointer option of gcc to build some inline
asm code about mmx. But once -fno-omit-frame-pointer was added
into TARGET_CFLAGS. That will cause directfb build error on x86 arch.
Signed-off-by: Roy.Li <rongqing.li@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-graphics')
-rw-r--r-- | meta/recipes-graphics/directfb/directfb.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-graphics/directfb/directfb.inc b/meta/recipes-graphics/directfb/directfb.inc index aecc834b1b..cff8a7f312 100644 --- a/meta/recipes-graphics/directfb/directfb.inc +++ b/meta/recipes-graphics/directfb/directfb.inc @@ -34,6 +34,10 @@ EXTRA_OECONF = "\ --disable-mesa \ " +#Once -fno-omit-frame-pointer option of gcc is added into TARGET_CLFAGS as default +#this will cause directfb build failure on x86 arch, so filter out it. +TARGET_CFLAGS_x86 := "${@oe_filter_out('-fno-omit-frame-pointer', '${TARGET_CFLAGS}', d)}" + #PACKAGES_DYNAMIC += "^directfb-inputdrivers-.*" # #python populate_packages_prepend () { |