Rev 2 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
To create a version of R that can be compiled under windows (starting in Unix)follow the following instructions:o make distclean in the R directory.o run configure.win.o copy to the Windows machine the R/src directories:- include- appl- graphics- lib- main- math- regex- windowso copy the R directories:- demos- html- libraryThen create a project in your favorite compiler/ide (mine's watcom these days)o this pretty much just consists of adding the C code to a projecto the file engine.c in regex should NOT be includedo you need to add the R/src/include;R/src/windows and R/src/regexdirectories to the list of places to search for .h fileso under Watcom you need to turn on case-sensitive linking (Windowslinking switches).o you need to add wincons.rc and wincons.rws to the projectand under Watcom you need to add /R/src/include to the includesfor the resource linkerSimply making the project at this point does the trick for me (most of thetime).