R-Host/lib
Pavel Minaev c921b2a83d Remove unnecessary import libraries and definitions. 2017-06-03 21:54:11 -07:00
..
picojson@cafb21b488 Update websocketpp and picojson submodules to newer versions. 2016-07-27 18:36:24 -07:00
README Fixes 32bit build 2017-03-02 15:51:19 -08:00

README

Generating R lib files
---------------------------------------------------------------------------------

1. Open Visual Studio Native Command line specific to the architecture x86 or x64
2. Go to x86 or x64 directory.
3. Run the following commands:
   lib /DEF:R.def
   lib /DEF:Rgraphapp.def

This should generate R.lib, R.exp, Rgraphapp.lib, Rgraphapp.exp


Generating Def files
---------------------------------------------------------------------------------
Def files are checked in for convenience. If they have to updated then follow
these steps.

1. Open Visual Studio Native Command line
2. Find the DLL's you want to export. 
3. Run this command to extract the exports:
   link /dump /exports R.dll > Rexports.txt
   link /dump /exports Rgraphapp.dll > RGAexports.txt
4. Edit the generated files to follow the DEF file format and save as .DEF file.