From 1f5a0831292f742ae8298b506191b0756203f42c Mon Sep 17 00:00:00 2001 From: Christian Prochaska Date: Tue, 10 Jul 2018 17:28:39 +0200 Subject: [PATCH] qt5: load nic_drv without dynamic linker on Linux Fixes #2982 --- repos/libports/run/qt5_drivers.inc | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/repos/libports/run/qt5_drivers.inc b/repos/libports/run/qt5_drivers.inc index 29b5834a78..31dcf14b0d 100644 --- a/repos/libports/run/qt5_drivers.inc +++ b/repos/libports/run/qt5_drivers.inc @@ -244,8 +244,14 @@ proc drivers_start_nodes { feature_arg } { } } + # don't use the dynamic linker for loading the lx_hybrid nic_drv on Linux + proc nic_drv_ld_attr {} { + if {[have_spec linux]} { return {ld="no"} } + return "" + } + append_if [use_nic_drv feature] start_nodes { - +