From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:50938) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UEhq1-00069s-Kg for qemu-devel@nongnu.org; Sun, 10 Mar 2013 11:07:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UEhpy-0001zK-VZ for qemu-devel@nongnu.org; Sun, 10 Mar 2013 11:07:01 -0400 Received: from mail-lb0-f170.google.com ([209.85.217.170]:65182) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UEhpy-0001z9-OX for qemu-devel@nongnu.org; Sun, 10 Mar 2013 11:06:58 -0400 Received: by mail-lb0-f170.google.com with SMTP id ge1so2517580lbb.15 for ; Sun, 10 Mar 2013 08:06:57 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: References: From: Peter Maydell Date: Sun, 10 Mar 2013 15:04:54 +0000 Message-ID: Content-Type: text/plain; charset=UTF-8 Subject: Re: [Qemu-devel] Cross-compiling QEMU for ARM List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Leonid Bloch Cc: qemu-devel@nongnu.org On 10 March 2013 14:36, Leonid Bloch wrote: > I am using Buildroot as my toolchain, and the farthest I got was: > $ ./configure --cpu=armv7hl --static --cc=arm-linux-cc > $ make > ...And then I get a lot of errors about libintl and libiconv. Oh, and I forgot -- don't try to build system emulators with --static: it's only really meant for the linux-user targets. Do specify --target-list=[whichever emulators you actually wanted], especially when you're trying to get your build environment sorted out: this will massively reduce the build time so you can find out whether you still have issues to deal with more quickly. [--enable-debug is also good for speeding up the build but you'll want to drop that for actual use.] -- PMM