This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Asm problems with gcc and libc compilation


On Apr  5, 2001, Andrew Lees <andrewl@acay.com.au> wrote:

> I have tried both gcc-2.95 and gcc-2.7.2.  In both cases I get
> errors when compiling the libc5 library, specifically compiling some
> cases of syscall* for the *shared* library build only.

ebx is a fixed register when compiling with -fPIC, so it can't be used
in asm statements.  Recent versions of GCC started to detect this
incorrect usage, that might silently generate incorrect code in
earlier releases.

-- 
Alexandre Oliva   Enjoy Guarana', see http://www.ic.unicamp.br/~oliva/
Red Hat GCC Developer                  aoliva@{cygnus.com, redhat.com}
CS PhD student at IC-Unicamp        oliva@{lsd.ic.unicamp.br, gnu.org}
Free Software Evangelist    *Please* write to mailing lists, not to me


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]