Changes between Version 3 and Version 4 of RpmHowToDevelopers


Ignore:
Timestamp:
Sep 8, 2011, 10:49:05 AM (13 years ago)
Author:
Yuri Dario
Comment:

Added gcc installation.

Legend:

Unmodified
Added
Removed
Modified
  • RpmHowToDevelopers

    v3 v4  
    22[[PageOutline]]
    33Information's for developers: will explain the basic development cycle, from getting the source code, get it running under OS/2, create a diff file suitable for packaging.
     4
     5== Setup compiler ==
     6Once your local environment is working ok, to install the current gcc compilers, please install the following packages:
     7
     8{{{
     9yum install libc-devel
     10yum install gcc
     11}}}
     12
     13You should also install watcom linker and resource compiler
     14
     15{{{
     16yum install gcc-wlink
     17yum install gcc-wrc
     18}}}
     19
     20Your CONFIG.SYS will be updated to allow gcc parser to use the new tools.
    421
    522== Setup configure script ==