Page 1 of 1
ld-new
Posted: Wed Apr 07, 2004 5:25 pm
by firas981
should anybody write how to invoke ld-new (GNU LD for Win)
to output bin file from 3 input bin files ?
thanks
Re:ld-new
Posted: Thu Apr 08, 2004 6:31 am
by Pype.Clicker
the author of the tool's manual, maybe ... or the program itself (ld-new --help should ... help
)
all i can really offer is that -o <output file> <infile 1> <infile 2> <infile 3> is the way i would try it with the normal 'ld' program ...
Re:ld-new
Posted: Thu Apr 08, 2004 6:54 am
by Candy
a bin file is defined as a file that is not readable. What sort of bin files?
If you mean object files to one object file, try
Code: Select all
ld -r -o $OUTFILE $OBJECTS
or
ld -i -o $OUTFILE $OBJECTS
Both are equal, don't know which flag has preference (recursive linking or incremental linking, it's the same thing)