Python3: Fix host build on OpenSUSE 7129/head
authorJan Kardell <jan.kardell@telliq.com>
Mon, 1 Oct 2018 17:13:44 +0000 (19:13 +0200)
committerJan Kardell <jan.kardell@telliq.com>
Mon, 8 Oct 2018 09:47:08 +0000 (11:47 +0200)
The linker option -rpath is required to find libs in staging_dir. Now it
is included when building host modules. Without it the import test of
the _ctypes and _uuid modules would fail. The _ctypes module uses
libffi.so.6 from staging, but OpenSUSE LEAP 15 has libffi.so.7.
It will also fail on LEAP 42.x, Fedora28 and 29 and future or old
versions of Ubuntu.

Fix needed in master and 18.06 branches.

Signed-off-by: Jan Kardell <jan.kardell@telliq.com>
lang/python/python3/Makefile

index fcaf6b7ab6aef30e17539e8211e5fc4ca437478d..adb5d2019c9802ca4364834ce8b0fb97c3c789f4 100644 (file)
@@ -264,7 +264,7 @@ define Py3Package/python3/filespec
 endef
 
 HOST_LDFLAGS += \
-       $$$$(pkg-config --static --libs libcrypto libssl)
+       $$$$(pkg-config --static --libs libcrypto libssl) -Wl$(comma)-rpath=$(STAGING_DIR_HOSTPKG)/lib
 
 ifeq ($(HOST_OS),Linux)
 HOST_LDFLAGS += \