From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pa0-f49.google.com (mail-pa0-f49.google.com [209.85.220.49]) by mail.openembedded.org (Postfix) with ESMTP id 981C860DD7 for ; Thu, 16 Oct 2014 09:37:27 +0000 (UTC) Received: by mail-pa0-f49.google.com with SMTP id hz1so3087659pad.22 for ; Thu, 16 Oct 2014 02:37:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=B3PDB9w4fC0CJhwX/AflEY3Sc1muZfbaTxZEFBNGoFI=; b=fXC9P1NOBLZzUmSGQ0HkYi4CItjk1sToR2+1M3UXvQXmzKkHKdAnFdMgfPU/K2SpL3 1ObdL7fowNbhGIpIsA39mI7zLH0JZSwiGiQVbLGUEaGNORj1GyDxFZBBuCp3m9OerCW3 fy1stWifv8Or7Jo0EnKwewnRILBTTxS2qPidts9Kg2rdFpLeaDmDcsphkuzUnDNfx2Gq mLzkqXlTOq5bIhVhQbJfYMWgNxWoOFd/L910yaOQXywXTmj5cD4wxEUwhB6hwk6uqpsQ rMe8emKXShv8pA8e5YzmVk9HP7k97nouqjX3nOXci4JSpZg0g3/x6iOJnBYQuuGAbupQ 0ksg== X-Received: by 10.68.171.100 with SMTP id at4mr10161963pbc.127.1413452249039; Thu, 16 Oct 2014 02:37:29 -0700 (PDT) Received: from [192.168.0.2] (60-242-179-244.static.tpgi.com.au. [60.242.179.244]) by mx.google.com with ESMTPSA id my4sm19234153pdb.85.2014.10.16.02.37.26 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 16 Oct 2014 02:37:28 -0700 (PDT) Message-ID: <543F91D1.9070707@gmail.com> Date: Thu, 16 Oct 2014 20:37:21 +1100 From: Jonathan Liu User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.2.0 MIME-Version: 1.0 To: Peter , "Fink, Peter" , openembedded-devel@lists.openembedded.org References: <543E6CDB.6070802@freenet.de> In-Reply-To: <543E6CDB.6070802@freenet.de> Subject: Re: [meta-qt5] How to build Qt5 with 'designer' module? X-BeenThere: openembedded-devel@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list Reply-To: openembedded-devel@lists.openembedded.org List-Id: Using the OpenEmbedded metadata to build Distributions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Oct 2014 09:37:36 -0000 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Hi Peter, On 15/10/2014 11:47 PM, Peter wrote: > Hi Jonathan, > > thanks for the reply. > > On 13 Oktober 2014 04:30, Jonathan Liu wrote: > >> Hi Peter, >> >> On 9 October 2014 18:13, Fink, Peter wrote: >>> I’m trying to build a Qt application with the toolchain generated by >>> openembedded (meta-toolchain-qt5). >>> >>> The application needs the designer-module, which I thought was >>> included in the qttools package, but now I get the following error: >>> >>> “Project Error: Unknown module(s) in QT: designer.” >>> >>> What do I have to include to get the designer module? >>> >>> Another thing I run into was the missing syncqt.pl script in the >>> toolchain as I need qftp. A link syncqt -> syncqt.pl was present. >>> Is it missing by accident or for a reason? >>> >>> I was using Qt. 5.3.1 02861e677ab.... >> You can try backporting the following patches: >> http://patchwork.openembedded.org/patch/81599/ >> http://patchwork.openembedded.org/patch/81603/ > > I tried your patches. syncqt.pl is included now, but my application > still did not compile. > I had to remove qttools-plugins, because it gave me a "cannot install > qttools-plugins" error while generating the toolchain - maybe this was > the reason why the libs were not included? > Now I tested hacking it into qtbase.inc and it seems to include the > qtdesigner libs: > > @@ -131,6 +132,7 @@ QT_CONFIG_FLAGS += " \ > -no-pch \ > -no-rpath \ > -pkg-config \ > + -make tools \ > ${EXTRA_OECONF} \ > " > > Regards, > Peter > Make sure you have "tools" in PACKAGECONFIG for qtbase if you are overriding PACKAGECONFIG as this will add "-make tools" to QT_CONFIG_FLAGS. What do you have PACKAGECONFIG set to for the qtbase recipe? Regards, Jonathan