From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-ww0-f41.google.com ([74.125.82.41]) by linuxtogo.org with esmtp (Exim 4.69) (envelope-from ) id 1PBOWb-0007sS-9v for openembedded-devel@lists.openembedded.org; Thu, 28 Oct 2010 11:11:58 +0200 Received: by wwe15 with SMTP id 15so951395wwe.0 for ; Thu, 28 Oct 2010 02:11:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:reply-to:to:subject:date :user-agent:mime-version:content-type:content-transfer-encoding :message-id; bh=wkfNJcLlCPNxJOLxomJ6dbohJ0+r02/txfKjrkAuQls=; b=BlchjBz6NZNxkN5L3BjOxG+9CsDMYjO0nEIjZnhh480U3ZaNLw4w8AbqrcH7QOJp9/ QRrrEFQDICVuaND/x+ylhxhl0lygg7R3D2S06hpdqhfB0T7HstWOtbRtAGKb0BdJMzEi cmLg5snqvrtb7MjOSiuHovijRGFneTipPBxDQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:reply-to:to:subject:date:user-agent:mime-version:content-type :content-transfer-encoding:message-id; b=FYDAqun8qobE8cNCweJt4AI+TOK8lnoutDDkYaNx44DsKWUkmdjx27Hjnxt85aIC8n wigZ4Z8TBANvN0iYCqXCJRgK94sgnpI165A03/7K8Ro0VzEuQ9+9JSMn41aEYcOKHLMd 6X98iJiEigtaCdgx9Qdw53AGaf94sL6R6Y9wk= Received: by 10.216.66.146 with SMTP id h18mr144686wed.106.1288257073247; Thu, 28 Oct 2010 02:11:13 -0700 (PDT) Received: from bamboo.localnet (dsl-51-41.dsl.netsource.ie [213.79.51.41]) by mx.google.com with ESMTPS id x12sm524952weq.18.2010.10.28.02.11.11 (version=SSLv3 cipher=RC4-MD5); Thu, 28 Oct 2010 02:11:12 -0700 (PDT) From: captain.deadly@gmail.com To: openembedded-devel@lists.openembedded.org Date: Thu, 28 Oct 2010 10:11:09 +0100 User-Agent: KMail/1.13.5 (Linux/2.6.36-jfw+; KDE/4.5.1; x86_64; ; ) MIME-Version: 1.0 Message-Id: <201010281011.10206.captain.deadly@gmail.com> X-SA-Exim-Connect-IP: 74.125.82.41 X-SA-Exim-Mail-From: captain.deadly@gmail.com X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on discovery X-Spam-Level: X-Spam-Status: No, score=-2.3 required=5.0 tests=AWL,BAYES_00,SPF_PASS autolearn=ham version=3.2.5 X-SA-Exim-Version: 4.2.1 (built Wed, 25 Jun 2008 17:20:07 +0000) X-SA-Exim-Scanned: Yes (on linuxtogo.org) Subject: bitbake emacs failing X-BeenThere: openembedded-devel@lists.openembedded.org X-Mailman-Version: 2.1.11 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, 28 Oct 2010 09:11:59 -0000 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Hello all, have a strange problem on my system whereby when I try to build emacs the Makefiles generated by the configure script have random carriage return characters injected into them which makes a mess of the build. This was the case for both emacs_22.3.bb and emacs_23.1.bb. I then decided that I'd stick in a recipe for version 23.2 and edited the generated makefiles to remove the new lines to get the package built. I eventually hit another problem: | make[1]: *** No rule to make target `/home/john/programming/openmoko/shr2/shr-unstable/tmp/sysroots/armv4t- oe-linux-gnueabi/usr/lib64/crt1.o', needed by `temacs'. Stop. The above error comes from a line in the Makefile generated for the src directory: STARTFILES = pre-crt0.o /home/john/programming/openmoko/shr2/shr- unstable/tmp/sysroots/armv4t-oe-linux-gnueabi/usr/lib64/crt1.o /home/john/programming/openmoko/shr2/shr-unstable/tmp/sysroots/armv4t- oe-linux-gnueabi/usr/lib64/crti.o This line is directing the build to a lib64 directory which does not exist. The required files do exist in the lib directory so I edited the Makefile again to remove the 64. I guess I've two questions: why would configure make a mess of generating Makefiles and is there a problem using a 64 bit machine for openembedded?