From 6a58e12d19c539deac9e90679a68438497a42fa4 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Thu, 1 Dec 2016 14:56:23 +0000 Subject: sqlite: build position-independent code pseudo links against this and uses PIC, so some toolchain combinations will refuse to link against sqlite unless it is also PIC. Signed-off-by: Ross Burton --- meta/recipes-support/sqlite/sqlite3.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-support/sqlite/sqlite3.inc b/meta/recipes-support/sqlite/sqlite3.inc index 5bff33b851..80424c9cd6 100644 --- a/meta/recipes-support/sqlite/sqlite3.inc +++ b/meta/recipes-support/sqlite/sqlite3.inc @@ -31,6 +31,8 @@ EXTRA_OECONF = " \ --disable-static-shell \ " +CFLAGS_append = " -fPIC" + # pread() is in POSIX.1-2001 so any reasonable system must surely support it BUILD_CFLAGS += "-DUSE_PREAD" TARGET_CFLAGS += "-DUSE_PREAD" -- cgit 1.2.3-korg