This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: How to remove the option -Qy to as
- From: Jim Wilson <wilson at specifix dot com>
- To: Andrea Marongiu <marongiu_andrea at yahoo dot it>
- Cc: gcc-help at gcc dot gnu dot org, gcc at gcc dot gnu dot org
- Date: Thu, 30 Aug 2007 17:46:45 -0700
- Subject: Re: How to remove the option -Qy to as
- References: <45723.98851.qm@web26307.mail.ukl.yahoo.com>
Andrea Marongiu wrote:
It seems to be using the correct as (arm-elf-as) which anyhow doesn't support the -Qy option.
No, it is using the wrong assembler. There are two compilers here, the
native x86 linux one, and the cross compiler. You have the native x86
linux compiler using the arm-elf-as assembler, which won't work.
The solution is to remove $toolchain-prefix/arm-elf/bin from your path.
It is unnecessary and undesirable. Do put $toolchain-prefix/bin on
your path though.
Jim