
117
Chapter 2 Applications Programming
Microtec Research Inc. developed
ld29
; Information Processing Corp. developed
ld29i
; and the GNU tool chain offers
gld
. Sometimes these tools are repackaged by
vendors and made available under different names. They all operate on AMD COFF
formatted files. However, they each have different command line options and link
command–file formats. A further limitation when mixing the use of these tools is that
ld29
operates with a different library format compared to the others. It uses an MRI
format which is maintained by the
lib29
tool. The others use a UNIX System V for-
mat supported by the well known
ar
librarian tool.
It is best to
drive
the linker from the compiler command line, rather than invok-
ing the linker directly. The compiler driver program,
gcc
or
hc29
for example, can
build the necessary link command file and include the necessary libraries. This is the
ideal way to link programs, even if assembly language modules are to be named on
the compiler command line. Note that the default link command files frequently use
aligns text (ALIGN .text=8192) and data sections to 8k (8192) byte boundaries. This
is because the OS–boot operating system (see Chapter 7) normally operates with ad-
dress translation turned on. The maximum (for the Am29000 processor) page size of
8k bytes is used to reduce run–time Memory Management Unit support overheads.
Different 29K evaluation boards can have different memory maps. AMD nor-
mally supplies the High C 29K linker in a configuration which produces a final code
image linked for a popular evaluation board –– many boards share the same memory
map. Additionally, AMD supplies linker command files for currently available
boards, such as the EZ030 and SA29200 boards. The linker command files are lo-
cated in the
installation
/lib directory; each command file ends with the file extension
.cmd
. For example, the mentioned boards have command files: ez030.cmd and
sa200.cmd, respectively. The linker command files can be specified when the com-
piler is invoked. For example, the command “hc29 –o file –cmdez030.cmd file.c”
will cause the final image to be linked using the ez030.cmd command file. Using the
supplied linker command files is a convenient way to ensure a program is correctly
linked for the available memory resources.
The GNU compiler also allows options to be passed to the linker via the
“–Xlinker” flag. For example, the command line “gcc –Xlinker –c –Xlinker
ez030.cmd –o file file.c” will compile and link
file.c
. The linker will be passed the
option “–c ez030.cmd”. The GNU linker documentation claims the linker can
operate on MRI formatted command files. In practice, at least for the 29K, this is not
the case. The GNU linker expects MRI–MC68000 formatted command files, which
are a little different from MRI–29K formatted command files. Known differences are
the use of the “*” character rather than “#” before comments, and the key word
PUBLIC must be upper case. Those using the GNU tool chain generally prefer to use
the GNU linker command file syntax rather than attempt to use the AMD supplied
command files.