[oe-commits] [openembedded-core] 18/25: mesa: Add define to indicate missing 64bit atomics on armv5

git at git.openembedded.org git at git.openembedded.org
Fri Jun 9 16:12:59 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master
in repository openembedded-core.

commit 6866ad53c5d49781002470195b4aae1ad1afde5c
Author: Khem Raj <raj.khem at gmail.com>
AuthorDate: Tue Jun 6 10:13:46 2017 -0700

    mesa: Add define to indicate missing 64bit atomics on armv5
    
    This is wrongly detected by configure since it only checks for
    __sync_add_and_fetch and not __atomic_fetch_add, it decides
    to let compiler emit references to atomic functions which
    it expects to be provided by libgcc, but thats not the
    case for armv5 arch
    
    [YOCTO #11616]
    
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/recipes-graphics/mesa/mesa.inc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta/recipes-graphics/mesa/mesa.inc b/meta/recipes-graphics/mesa/mesa.inc
index 67039a9..014044f 100644
--- a/meta/recipes-graphics/mesa/mesa.inc
+++ b/meta/recipes-graphics/mesa/mesa.inc
@@ -79,6 +79,8 @@ PACKAGECONFIG[unwind] = "--enable-libunwind,--disable-libunwind,libunwind"
 # llvmpipe is slow if compiled with -fomit-frame-pointer (e.g. -O2)
 FULL_OPTIMIZATION_append = " -fno-omit-frame-pointer"
 
+CFLAGS_append_armv5 = " -DMISSING_64BIT_ATOMICS"
+
 # Multiple virtual/gl providers being built breaks staging
 EXCLUDE_FROM_WORLD = "1"
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list