From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f177.google.com (mail-wi0-f177.google.com [209.85.212.177]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 52647E01542 for ; Wed, 4 Sep 2013 11:26:09 -0700 (PDT) Received: by mail-wi0-f177.google.com with SMTP id cb5so801484wib.16 for ; Wed, 04 Sep 2013 11:26:08 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :cc:subject:references:in-reply-to:content-type :content-transfer-encoding; bh=QPDs5ADHlW2Gze/JwITY8LzC4GvrpuHrvBe2dMO1ML8=; b=GlKcl4/nDm7yb7UGhAfEjq+0WtNGsV5lU9j4EywRu2+Wp/N1LjUoDDuiPGkTYkeY0z tsUDgeeNcODXw1QaU8yU+AC2rtK35ikWxZ8ABdYIYFqjXR5ArpHqilYPMiLYFRDCtJpw yhngigUgawrmR2VHLwTSPl1juzwBctSGxgsr+XDyJjEOoNOZ5Q0fKVasCwlClhLwTjjk AQTU6TXDVYtr4yUCYyb5eZUooEABghunzs/O8TGzjDm2pL9vb/nUxJZhNCCq461c3Eeq z4+7OiHVBk9sLZ81lrpiJPgLuOZBao4xKzkOcEGpvYet1vn+OXN4LZ6DiHV1au6GyZVZ X26Q== X-Gm-Message-State: ALoCoQkd522yj8xA2Ats8fOweDeg1DnVOMk6wKBimrMstoAYXv1mW6ZEkIzeFQ6M+p/7X0t/SOxp X-Received: by 10.180.206.9 with SMTP id lk9mr3203302wic.26.1378319168108; Wed, 04 Sep 2013 11:26:08 -0700 (PDT) Received: from [192.168.0.50] (aig34-1-88-167-231-94.fbx.proxad.net. [88.167.231.94]) by mx.google.com with ESMTPSA id z2sm6004353wiv.11.1969.12.31.16.00.00 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 04 Sep 2013 11:26:05 -0700 (PDT) Message-ID: <52277B3A.8030405@vtkloud.com> Date: Wed, 04 Sep 2013 20:26:02 +0200 From: JC User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130803 Thunderbird/17.0.8 MIME-Version: 1.0 To: Otavio Salvador References: <5226535C.3010102@vtkloud.com> <522761A5.7070200@vtkloud.com> In-Reply-To: Cc: "meta-freescale@yoctoproject.org" Subject: Re: toolchain issue with with-libtool-sysroot unrecognized X-BeenThere: meta-freescale@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Usage and development list for the meta-fsl-* layers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Sep 2013 18:26:10 -0000 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hi Otavio On 04/09/2013 19:03, Otavio Salvador wrote: > > When I run the configure step, I get a warning : > configure: WARNING: unrecognized options: --with-libtool-sysroot > > This shouldn't be so bad, but unfortunately, because of this warning, I > get > the following issue: when I try to run the generated binary, I get : > > /lib/ld-linux.so.3: No such file or directory > > > > I use autotools based projects in toolchain daily at our projects and > customer projects and it works fine. Without further research in logs > and code access it is hard to do a better bet. You are right. It's impossible to tell more, so here are more details: Makefile.am: SUBDIRS = bin_PROGRAMS = hello configure.ac: AC_INIT([hello], 0.1.0, trevor.woerner@linaro.org, hello) AC_CONFIG_SRCDIR(hello.c) AC_CONFIG_AUX_DIR(.) AM_INIT_AUTOMAKE([foreign no-dist-gzip dist-bzip2 1.9]) SUBDIRS="" AC_PROG_CC AC_PROG_INSTALL AC_PROG_LN_S AC_OUTPUT(Makefile) hello.c: #include main() { printf("Hello World!\n"); } I don't know what kind of logs I should post to help investigate the issue? Regards Jay