资 源 简 介
A m68k ATARI MiNT Cross Compiling Environment with ELF-based Objectfiles.
The advantage of the ELF format is the support of named sections.
This helps to shrink code particularly in C++. C++ generates implizit some code stuff. E.G. VMT"s (virtual method table), template implementation and so on. All this code can generated in different object-files. But this code is always the same.
Normally this code is "static" and is included in all object-files that references to this code.
If weak-symbols is supported, then this code is weaked and all references points to the same code-adress. But the code is still included in all object-files that references to this code.
If named-sections is supported, then this code is stored in a own section ".gnu.linkonce.*". This section will be linked only one time.
m68k-atari-mint-elf extensions
option -cmini