From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19099 invoked by alias); 20 Mar 2009 14:09:34 -0000 Received: (qmail 19088 invoked by uid 22791); 20 Mar 2009 14:09:32 -0000 X-SWARE-Spam-Status: No, hits=-2.5 required=5.0 tests=AWL,BAYES_00,SPF_PASS X-Spam-Check-By: sourceware.org Received: from smtp-out.google.com (HELO smtp-out.google.com) (216.239.33.17) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 20 Mar 2009 14:09:24 +0000 Received: from wpaz9.hot.corp.google.com (wpaz9.hot.corp.google.com [172.24.198.73]) by smtp-out.google.com with ESMTP id n2KE9KrK028142; Fri, 20 Mar 2009 14:09:20 GMT Received: from smtp.corp.google.com (spacemonkey1.corp.google.com [192.168.120.115]) by wpaz9.hot.corp.google.com with ESMTP id n2KE9IQJ022518 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Fri, 20 Mar 2009 07:09:18 -0700 Received: from localhost.localdomain.google.com (67-218-109-193.cust.layer42.net [67.218.109.193] (may be forged)) (authenticated bits=0) by smtp.corp.google.com (8.13.8/8.13.8) with ESMTP id n2KE9FWU014738 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NOT); Fri, 20 Mar 2009 06:09:17 -0800 To: gowrisankar loganathan Cc: Subject: Re: Gcc for V850 References: <49BE6207.9090401@wippies.com> <49BE6EAC.8090505@wippies.com> <49BFB6BC.5020106@wippies.com> From: Ian Lance Taylor Date: Fri, 20 Mar 2009 14:09:00 -0000 In-Reply-To: (gowrisankar loganathan's message of "Fri\, 20 Mar 2009 09\:06\:41 +0000") Message-ID: User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-System-Of-Record: true X-IsSubscribed: yes Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org X-SW-Source: 2009-03/txt/msg00248.txt.bz2 gowrisankar loganathan writes: > The configuration indiates it is using gnu assembler and loader, the below is the configuration > > $ v850-elf-gcc -v > Using built-in specs. > Target: v850-elf > Configured with: ../../gcc_source/gcc-4.3.0/configure --target=v850-elf -prefix= > /tools --exec-prefix=/tools/Gnu-i686-V850 --with-gnu-as --with-gnu-ld --with-new > lib -v > Thread model: single > gcc version 4.3.0 (GCC) That unfortunately doesn't mean very much. You have to actually compile something and see which assembler is actually run. v850-elf-gcc -v -c foo.c Ian