home *** CD-ROM | disk | FTP | other *** search
- vbcc 0.7e Installation and Quick Start
- --------------------------------------
-
- Copy the vbcc directory to any place on your hard disk, then include
- the following assignments into your "S:User-Startup":
-
- assign >NIL: vbcc: <path to vbcc directory>
- assign >NIL: C: vbcc:bin add
-
- assign >NIL: vbccm68k: vbcc:amiga68k
- assign >NIL: vincludem68k: vbccm68k:include
- assign >NIL: vincludem68k: <path to your AmigaOS header files> ADD
- ;assign >NIL: ixinclude: <path to ixemul header files, if needed>
- assign >NIL: vlibm68k: vbccm68k:lib
-
- assign >NIL: vbccppc: vbcc:amigappc
- assign >NIL: vincludeppc: vbccppc:include
- assign >NIL: vlibppc: vbccppc:lib
- assign >NIL: vincludeppc: <path to your AmigaOS header files> ADD
-
- assign >NIL: vbccwos: vbcc:amigawos
- assign >NIL: vincludewos: vbccwos:include
- assign >NIL: vlibwos: vbccwos:lib
- assign >NIL: vincludewos: <path to your AmigaOS header files> ADD
-
- assign >NIL: vbccmorph: vbcc:morphos
- assign >NIL: vincludemorph: vbccmorph:include
- assign >NIL: vlibmorph: vbccmorph:lib
- assign >NIL: vincludemorph: <path to your MorphOS header files> ADD
-
-
- After a reboot you should be able to compile your first program,
- for example by typing: "vc -o hello_world hello_world.c".
-
- By default vbcc will use the configuration file vc.config from vbcc:,
- which contains the settings for compiling AmigaOS/68k programs without
- debugging information. If you don't want to strip debugging-symbols
- from the final executable, use vc.confdb instead. A different config
- file is selected by passing the '+' option to the vc frontend:
- vc +vc.confdb -o test test.c
-
- For more informations about all the options and features of vbcc and
- all of its tools, please refer to the documentations, which can be
- found in the vbcc:doc directory.
-
-
- Frank Wille frank@phoenix.owl.de
-