]> code.ossystems Code Review - openembedded-core.git/commit
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)
commit858f01ab9613c2b122718c350da763f8fe981d9f
treea9ce4d6b205d6ddb1eae3b10e6378d5c35085fca
parentd4573cb750bfde488682244d30266dfe675bac06
cairo: Fix build with gcc 4.9

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