Rev 5591 | Blame | Last modification | View Log | Download | RSS feed
Building from a source-code library under Windows=================================================First collect the tools that you need.We recommend that you use the mingw32 port of gcc-2.95 by Mumit Khan fromftp://ftp.xraylith.wisc.edu/pub/khan/gnu-win32/mingw32. You will alsoneed suitable versions of make, sh, rm, sed, awk, mkdir, echo, cp andcat; we have packaged a set at bin/windows/windows-NT/etc/tools.zipextracted from the cygwin distribution(http://sourceware.cygnus.com/cygwin and several mirrors). To avoidpast problems on some versions of Windows95, we use the cygwin ldcontained in that set, which must be before the mingw32 one in yourpath. (We have no way of knowing if this is still necessary.)It is also possible to use earlier mingw32 compilers or cygwin-b20.1with the --no-cygwin flag, but we suggest you do so only if you have aworking setup from building earlier versions of R. We have alsosuccessfully used the variant of mingw32 that uses the MSVCRT run-timesystem (under gcc-2.95 but not earlier versions), and in the case of themclust library found this more successful that the standard version.perl5, available via http://www.perl.com/CPAN/ports.groff, available at http://www.itribe.net/virtunix/groff-1.10nt.zip.All of these need to be installed and in your path, and theappropriate environment variables set. Edit MkRules to set target andthe appropriate paths as needed. Thencd RHOME\src\gnuwin32and runmake libR.awhich may take several minutes. (We have seen times from 30 secs to 20minutes depending on processor speed, RAM, disk speed andcompiler. Using a network file system is likely to take longer.) Thisonly needs to be done once for each R release.For each package you want to install, unpack it to a directory, saymypkg, in RHOME\src\library, and runcd RHOME\src\gnuwin32make pkg-mypkgThe Makefiles can be customized: in particular the name of the DLL canbe set (see the line integrate-DLLNM=adapt) and the compile flags canbe set (see the examples in MakeDll).Using zipped help files=======================You will need zip installed, of course. Just runmake ziponly-mypkgafter building mypkg. Target `ziphelp-mypkg' will make the zip filesbut not remove the separate files: this can be used for testing.Checking packages=================The equivalent of `R CMD check mypkg' on Unix ismake pkgcheck-mypkgThis runs all the examples in the help files.Debugging=========See the RW-FAQ.Using Visual C++================You may if you prefer use Visual C++ to make the DLLs (unless they useFortran source!). First build the import library R.lib bylib /def:R.exp /out:Rdll.libThen you can compile the objects and build the DLL bycl /MT /Ox /D "WIN32" /c *.clink /dll /out:mypkg.dll *.obj Rdll.lib(at least under VC++ 4.2). If the C sources use R header files youwill need to arrange for these to be searched, perhaps by/I ..\..\..\includeIf you build a debug version of the DLL in the developmentenvironment, you can debug the DLL code there just by setting theexecutable to be debugged to the full path to the R front-end.