Committing R-SWIG
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9175 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
bf06e16ce4
commit
3a821460fe
51 changed files with 5154 additions and 9 deletions
|
|
@ -59,6 +59,7 @@ eswig_SOURCES = CParse/cscanner.c \
|
|||
Modules/php4.cxx \
|
||||
Modules/pike.cxx \
|
||||
Modules/python.cxx \
|
||||
Modules/r.cxx \
|
||||
Modules/ruby.cxx \
|
||||
Modules/s-exp.cxx \
|
||||
Modules/swigmain.cxx \
|
||||
|
|
|
|||
3035
SWIG/Source/Modules/r.cxx
Normal file
3035
SWIG/Source/Modules/r.cxx
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -45,6 +45,7 @@ extern "C" {
|
|||
Language *swig_clisp(void);
|
||||
Language *swig_cffi(void);
|
||||
Language *swig_uffi(void);
|
||||
Language *swig_r(void);
|
||||
}
|
||||
|
||||
struct swig_module {
|
||||
|
|
@ -82,6 +83,7 @@ static swig_module modules[] = {
|
|||
{"-tcl8", swig_tcl, 0},
|
||||
{"-uffi", swig_uffi, "Common Lisp / UFFI"},
|
||||
{"-xml", swig_xml, "XML"},
|
||||
{"-r", swig_r, "R (aka GNU S)"},
|
||||
{NULL, NULL, NULL}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue