From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9274 invoked by alias); 20 Sep 2013 15:20:30 -0000 Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org Received: (qmail 9261 invoked by uid 89); 20 Sep 2013 15:20:29 -0000 Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 20 Sep 2013 15:20:29 +0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-4.9 required=5.0 tests=AWL,BAYES_00,KHOP_THREADED,RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r8KFKNAS014435 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 20 Sep 2013 11:20:25 -0400 Received: from anchor.twiddle.net (vpn-49-58.rdu2.redhat.com [10.10.49.58]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id r8KFKLuS020142; Fri, 20 Sep 2013 11:20:22 -0400 Message-ID: <523C67B4.5000606@redhat.com> Date: Fri, 20 Sep 2013 15:20:00 -0000 From: Richard Henderson User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130805 Thunderbird/17.0.8 MIME-Version: 1.0 To: =?ISO-8859-1?Q?V=EDctor_Mart=EDnez?= CC: gcc@gcc.gnu.org Subject: Re: libitm.a and sjlj.o object References: <523195E2.3030003@crux-arm.nu> In-Reply-To: <523195E2.3030003@crux-arm.nu> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-IsSubscribed: yes X-SW-Source: 2013-09/txt/msg00184.txt.bz2 On 09/12/2013 03:22 AM, Víctor Martínez wrote: > Why is sjlj.o the only one built for armv4 while the rest of objects are armv5t? > Is this behaviour expected? Or is there something wrong trying to configure gcc > with these options? There are co-processor instructions in there that can't be encoded with thumb1, as present on armv5t. It is as expected. r~