This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: arm-elf-gcc and nobits section
- From: Ian Lance Taylor <ian at wasabisystems dot com>
- To: Amol Lad <dal_loma at yahoo dot com>
- Cc: gcc at gcc dot gnu dot org, uclinux-dev at uclinux dot org
- Date: 29 Nov 2003 09:43:30 -0500
- Subject: Re: arm-elf-gcc and nobits section
- References: <20031129112848.30341.qmail@web12405.mail.yahoo.com>
Amol Lad <dal_loma@yahoo.com> writes:
> ARM cross compiler for uClinux seems to be not
> taking "nobits" section type.
This looks like an assembler issue, not a compiler issue. The
assembler is part of the GNU binutils, and bug reports should go to
bug-binutils@gnu.org.
> .zero 100000
I don't know why you only have the problem with arm-elf-gcc, but I
would try something like
. = . + 100000
Ian