From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Hamzeh Nasajpour" Subject: undefined symbol error in qtbase Date: Tue, 06 Aug 2019 16:28:38 +0430 Message-ID: <215dedf4-647c-45a9-ab55-db89b1ba9b7e@www.fastmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:59716) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1huy70-0007TT-Ew for help-guix@gnu.org; Tue, 06 Aug 2019 07:58:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1huy6z-00017b-Dg for help-guix@gnu.org; Tue, 06 Aug 2019 07:58:42 -0400 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:60909) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1huy6z-00015M-2s for help-guix@gnu.org; Tue, 06 Aug 2019 07:58:41 -0400 Received: from compute3.internal (compute3.nyi.internal [10.202.2.43]) by mailout.nyi.internal (Postfix) with ESMTP id 57BAD21FEC for ; Tue, 6 Aug 2019 07:58:39 -0400 (EDT) List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: help-guix@gnu.org Hi, I want to package `trojita` for GuixSD. I created a package definition and it was build and installed successfully. When I run it I get the following error: ``` /gnu/store/890yw9i7lcjnnxhlza8r121352xp1hi-qtbase-5.11.3/lib/qt5/plugins/sqldrivers/libqsqlite.so: undefined symbol: sqlite3_column_table_name16 ``` `trojita` is a mail client application that has a dependency to `qtbase`. I see that in `qtbase` package definition there is `sqlite-with-column-metadata` as a dependency, Apparently all is ok but I don't know the reason of this error. Do you have any idea? Links: * `qtbase` package definition : https://git.savannah.gnu.org/cgit/guix.git/tree/gnu/packages/qt.scm#n578 * `trojita` mail application : https://cgit.kde.org/trojita.git * `sqlite` additional methods/apis : https://www.sqlite.org/c3ref/column_database_name.html * `sqlite` package definition : https://git.savannah.gnu.org/cgit/guix.git/tree/gnu/packages/sqlite.scm#n107 Regards, Hamzeh