Changes between Version 4 and Version 5 of RpmHowToDevelopers


Ignore:
Timestamp:
Jan 11, 2013, 6:27:47 PM (11 years ago)
Author:
Andib
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • RpmHowToDevelopers

    v4 v5  
    1111}}}
    1212
    13 You should also install watcom linker and resource compiler
     13You should also install watcom linker and resource compiler. Note - Paul's build environment uses /moztools/ilink.exe per default.
    1414
    1515{{{
     
    1919
    2020Your CONFIG.SYS will be updated to allow gcc parser to use the new tools.
     21
     22The following environment settings are needed to use the rpm version of the watcom linker wl.exe and ressource compiler wrc.exe. I've to make these setting in config.sys
     23
     24{{{
     25set emxomfld_RC=wrc.exe
     26set emxomfld_RC_TYPE=WRC
     27set EMXOMFOPT=-q
     28set emxomfld_type=WLINK
     29set emxomfld_linker=wl.exe
     30}}}
     31
     32In addition at least the WATCOM environment variable must point to your installed watcom tree. Otherwise the linker dose not find wlsystem.lnk. Something like
     33
     34{{{
     35SET WATCOM=P:\watcom
     36}}}
     37
     38The OpenWatcom installer makes all required settings for you in the config.sys if you gave permission.
     39
     40== Make utility ==
     41Although I've installed all development related rpm packets I missed the gnu make utility. You can download gmake3.81 from ??fill in a proper address?? or use the version from Paul's environment.
    2142
    2243== Setup configure script ==