From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16280 invoked by alias); 8 Dec 2011 05:36:43 -0000 Received: (qmail 16154 invoked by uid 22791); 8 Dec 2011 05:36:42 -0000 X-SWARE-Spam-Status: No, hits=-0.6 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW X-Spam-Check-By: sourceware.org Received: from mail-ey0-f177.google.com (HELO mail-ey0-f177.google.com) (209.85.215.177) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 08 Dec 2011 05:36:21 +0000 Received: by eaac10 with SMTP id c10so1205262eaa.36 for ; Wed, 07 Dec 2011 21:36:20 -0800 (PST) MIME-Version: 1.0 Received: by 10.213.19.1 with SMTP id y1mr75448eba.12.1323322578548; Wed, 07 Dec 2011 21:36:18 -0800 (PST) Received: by 10.213.105.74 with HTTP; Wed, 7 Dec 2011 21:36:18 -0800 (PST) Date: Thu, 08 Dec 2011 05:36:00 -0000 Message-ID: Subject: eCos port to Cobra 5329 From: Liam Knight To: ecos-devel@ecos.sourceware.org Content-Type: text/plain; charset=ISO-8859-1 Mailing-List: contact ecos-devel-help@ecos.sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: ecos-devel-owner@ecos.sourceware.org X-SW-Source: 2011-12/txt/msg00002.txt.bz2 Hello I have started a BSP for senTec's COBRA5329 starter kit for eCos. I was using the uClinux dragonfire gcc compiler (m68k-uclinux-gcc-4.1.1) but noticed you have a more recent 4.3.2 m68k-elf toolchain which I switched to but it will not run on a 64-bit system by default: $ m68k-elf-gcc -v bash: m68k-elf-gcc: /lib/ld-linux.so.2: bad ELF interpreter: No such file or directory $ Your instructions in http://ecos.sourceware.org/getstart.html say you need to install the libstdc++ v3 compatibility package but make no mention that the tools are built for 32bit linux and so also require the 32-bit version of glibc on 64-bit systems. You may wish to update your instruction on that web page as 64-bit systems are rapidly becoming the norm so many users will fall foul of this. The problem is easily fixed on Fedora: $ yum install ld-linux.so.2 which you should add to the web page for 64-bit installations. LK