modes.hss 896 B

123456789101112131415161718
  1. [Main]
  2. Title=Linking Modes of the TIGCC Linker
  3. Subsections=modes_native, modes_nostub, modes_nostub_dll, modes_kernel, modes_fargo, modes_flash_os
  4. [Top]
  5. A <U>linking mode</U> defines how the linker treats the contents of the
  6. program after they have been read from the object files. The TIGCC linker has
  7. several different modes; some of them are related to specific output file
  8. formats, and some of them are present only for historical reasons.
  9. [Bottom]
  10. The recommended mode for normal TIGCC programs is
  11. <A HREF="$$LINK(modes_native)">TIGCC-native mode</A>. It is the simplest
  12. mode; the program is basically an empty sheet of paper, which can be filled
  13. with code of all sorts. The default mode is actually
  14. <A HREF="$$LINK(modes_kernel)">kernel mode</A> unless you set the appropriate
  15. <A HREF="$$LINK(invocation_ld)">command-line option</A>, to make existing
  16. programs work without modifications.