From owner-freebsd-arm@FreeBSD.ORG Fri May 17 12:26:33 2013 Return-Path: Delivered-To: freebsd-arm@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 378BC3D8 for ; Fri, 17 May 2013 12:26:33 +0000 (UTC) (envelope-from tim@kientzle.com) Received: from mail-ie0-x22d.google.com (mail-ie0-x22d.google.com [IPv6:2607:f8b0:4001:c03::22d]) by mx1.freebsd.org (Postfix) with ESMTP id 0A66199D for ; Fri, 17 May 2013 12:26:33 +0000 (UTC) Received: by mail-ie0-f173.google.com with SMTP id k5so9078565iea.4 for ; Fri, 17 May 2013 05:26:32 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:sender:subject:mime-version:content-type:from :in-reply-to:date:cc:content-transfer-encoding:message-id:references :to:x-mailer:x-gm-message-state; bh=wB/6MFybLTfxVmy/bJdIkPxH5nq/+vb7bfv033IqYVw=; b=iiBpISoh71pc1Upkfu0/VuZR4draVLeBBBJUqhMOEYE7P4+lHkXjMe/JLlmDOCQrUO mw/79skRq+zUM1BJhV60iS3G5wRv1lPcvr4Pg57IaKZP6bH3y20h6LklvXSpCK3tKa6N WESNQyPdoKrExQ/DyQfEKqMYp2wPRs8HisEZrodZ0HEB9DoRQIv/1RpnZ7BD9nS1SIfU 7S5ef86erRfRxr84TdLbrJiLhv4OAwgMUa2h8r0wRN7/PoYieHArHWkJSu4FPR4/JtOR rMSmWvwYYGTqZvZOJBZjK6eqDCj5lrrg+MEx9eA6S0WOixYWVyLmmcUUBf8j3R/I+L73 +m9g== X-Received: by 10.50.108.104 with SMTP id hj8mr12550614igb.62.1368793592754; Fri, 17 May 2013 05:26:32 -0700 (PDT) Received: from [172.24.137.243] ([137.122.64.8]) by mx.google.com with ESMTPSA id ua6sm9354029igb.0.2013.05.17.05.26.31 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 17 May 2013 05:26:32 -0700 (PDT) Sender: Tim Kientzle Subject: Checking EABI support (was Re: Git crash on EABI system.) Mime-Version: 1.0 (Apple Message framework v1283) Content-Type: text/plain; charset=windows-1252 From: Tim Kientzle In-Reply-To: <5195F2CA.2090103@thieprojects.ch> Date: Fri, 17 May 2013 08:26:30 -0400 Content-Transfer-Encoding: quoted-printable Message-Id: References: <51949698.80205@thieprojects.ch> <2290084B-D302-4489-BB01-817497901E2B@freebsd.org> <5195F2CA.2090103@thieprojects.ch> To: Werner Thie X-Mailer: Apple Mail (2.1283) X-Gm-Message-State: ALoCoQktmpQaEZpOH/bpZ8w8/WpO+KtCpWvQ54SpMSqLlyPsrToJmtKeCsWiLYrgLZrt8TzL63dl Cc: freebsd-arm X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting FreeBSD to the StrongARM Processor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 May 2013 12:26:33 -0000 On May 17, 2013, at 5:05 AM, Werner Thie wrote: > I tried several ways to preset WITH_ARM_EABI on make.conf but the def = never shows up when compiling Python nor one of the other extension = modules. I assume the def is generally set and the missing symbol is = courtesy of some other error/omission. If you've built an EABI system with an EABI compiler, then you don't = have to set WITH_ARM_EABI inside it. You can test this: $ touch foo.h $ cc -E -dM foo.h =85 #define __ARM_EABI__ 1 =85 I'm certain this is unrelated to your missing symbol issue. Tim