home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Exec 5 / CD_Magazyn_EXEC_nr_5.iso / Programy / Programowanie / vbcc07e.lzx / vbcc / README < prev    next >
Encoding:
Text File  |  2001-02-12  |  1.8 KB  |  48 lines

  1. vbcc 0.7e Installation and Quick Start
  2. --------------------------------------
  3.  
  4. Copy the vbcc directory to any place on your hard disk, then include
  5. the following assignments into your "S:User-Startup":
  6.  
  7. assign >NIL: vbcc: <path to vbcc directory>
  8. assign >NIL: C: vbcc:bin add
  9.  
  10. assign >NIL: vbccm68k: vbcc:amiga68k
  11. assign >NIL: vincludem68k: vbccm68k:include
  12. assign >NIL: vincludem68k: <path to your AmigaOS header files> ADD
  13. ;assign >NIL: ixinclude: <path to ixemul header files, if needed>
  14. assign >NIL: vlibm68k: vbccm68k:lib
  15.  
  16. assign >NIL: vbccppc: vbcc:amigappc
  17. assign >NIL: vincludeppc: vbccppc:include
  18. assign >NIL: vlibppc: vbccppc:lib
  19. assign >NIL: vincludeppc: <path to your AmigaOS header files> ADD
  20.  
  21. assign >NIL: vbccwos: vbcc:amigawos
  22. assign >NIL: vincludewos: vbccwos:include
  23. assign >NIL: vlibwos: vbccwos:lib
  24. assign >NIL: vincludewos: <path to your AmigaOS header files> ADD
  25.  
  26. assign >NIL: vbccmorph: vbcc:morphos
  27. assign >NIL: vincludemorph: vbccmorph:include
  28. assign >NIL: vlibmorph: vbccmorph:lib
  29. assign >NIL: vincludemorph: <path to your MorphOS header files> ADD
  30.  
  31.  
  32. After a reboot you should be able to compile your first program,
  33. for example by typing: "vc -o hello_world hello_world.c".
  34.  
  35. By default vbcc will use the configuration file vc.config from vbcc:,
  36. which contains the settings for compiling AmigaOS/68k programs without
  37. debugging information. If you don't want to strip debugging-symbols
  38. from the final executable, use vc.confdb instead. A different config
  39. file is selected by passing the '+' option to the vc frontend:
  40.   vc +vc.confdb -o test test.c
  41.  
  42. For more informations about all the options and features of vbcc and
  43. all of its tools, please refer to the documentations, which can be
  44. found in the vbcc:doc directory.
  45.  
  46.  
  47. Frank Wille                                        frank@phoenix.owl.de
  48.