22a78f0d96
Added initial support for the z8k * z8ksim.em, z8ksim.sc-sh, z8ksim.sh: new files * configure.in, Makefile.in: modified to reflect above * ldlang.c (lang_check): when linking conflicting architectures, make the output file reflect at least one of the bad inputs.
27 lines
225 B
Plaintext
Executable File
27 lines
225 B
Plaintext
Executable File
cat <<EOF
|
|
OUTPUT_FORMAT("${OUTPUT_FORMAT}")
|
|
OUTPUT_ARCH(${ARCH})
|
|
|
|
|
|
SECTIONS
|
|
{
|
|
.text :
|
|
{
|
|
*(.text)
|
|
*(.strings)
|
|
_etext = .;
|
|
*(.data)
|
|
_edata = .;
|
|
*(.bss)
|
|
*(COMMON)
|
|
_end = .;
|
|
|
|
}
|
|
|
|
}
|
|
EOF
|
|
|
|
|
|
|
|
|