This is the mail archive of the gas2@sourceware.cygnus.com mailing list for the gas2 project.


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

gas-940814 ld bugs


gas-940814 configured for i486-linux. If I do

ld -x -Ttext 5ffff000 -Tdata 6008e000 foo.o

the size of the output file is ridiculous. I got

-rwxr-xr-x   1 hjl      isl          8367 Aug 15 01:54 a.out
text    data    bss     dec     hex     filename
4064    4096    0       8160    1fe0    a.out

But I am looking for about 0x8e000 bytes.


H.J.
-------foo.c----
int bar= 100;

void
foo ()
{
  return;
}