]> code.ossystems Code Review - openembedded-core.git/commitdiff
cairo: Fix build with gcc 4.9
authorKhem Raj <raj.khem@gmail.com>
Fri, 25 Apr 2014 07:14:16 +0000 (00:14 -0700)
committerSaul Wold <sgw@linux.intel.com>
Tue, 6 May 2014 06:08:17 +0000 (23:08 -0700)
Fix upstream bug
https://bugs.freedesktop.org/show_bug.cgi?id=77060

gcc 4.9 now generates slim objects when LTO is used
These slim objects only contain intermediate language
representation for LTO. Use -ffat-lto-objects to create files which
contain additionally the object code. When linking some .so file, the option
'-flto' is missed, so the error happens.
We add '-ffat-lto-objects' flag to make gcc 4.9 behaves the same as gcc 4.8.

(From OE-Core rev: c4e65e14fbdf957aa34e074337c5649a0b0888b7)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-graphics/cairo/cairo.inc

index c0af1e36329854bb4890cc53567bb529068186c4..cd375597f0ce7d271692a580864a2dfd7353e4e5 100644 (file)
@@ -35,3 +35,5 @@ export ac_cv_lib_bfd_bfd_openr="no"
 export ac_cv_lib_lzo2_lzo2a_decompress="no"
 
 BBCLASSEXTEND = "native"
+
+CFLAGS += "-ffat-lto-objects"