Remove _wrap from .R files
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10105 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
dc4983afb0
commit
cd9c301b48
10 changed files with 15 additions and 10 deletions
|
|
@ -116,6 +116,10 @@ int* const globalRet2() {return &GlobalInt;}
|
|||
%{
|
||||
static int wxEVT_COMMAND_BUTTON_CLICKEDv;
|
||||
static int **wxEVT_COMMAND_BUTTON_CLICKEDp;
|
||||
#if defined(SWIGR)
|
||||
#undef lang1 /* conflicts with symbol in R internals */
|
||||
#endif
|
||||
|
||||
char lang1[16] = "Hello";
|
||||
char *langs[] ={ lang1 };
|
||||
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
LANGUAGE = r
|
||||
SCRIPTSUFFIX = _runme.R
|
||||
WRAPSUFFIX = _wrap.R
|
||||
WRAPSUFFIX = .R
|
||||
RUNR = R CMD BATCH --no-save --no-restore
|
||||
srcdir = @srcdir@
|
||||
top_srcdir = @top_srcdir@
|
||||
|
|
@ -59,4 +59,5 @@ clean:
|
|||
$(MAKE) -f $(top_builddir)/$(EXAMPLES)/Makefile r_clean
|
||||
|
||||
%.clean:
|
||||
@rm -f $*_wrap.R $*_wrap.so $*_wrap.cpp $*_wrap.c $*_runme.Rout
|
||||
@rm -f $*.R $*_wrap.so $*_wrap.cpp $*_wrap.c $*_runme.Rout $*.Rout
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
source("unittest.R")
|
||||
dyn.load(paste("copy_struct_wrap", .Platform$dynlib.ext, sep=""))
|
||||
source("copy_struct_wrap.R")
|
||||
source("copy_struct.R")
|
||||
cacheMetaData(1)
|
||||
|
||||
a <- getA()
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# by SWIG.
|
||||
|
||||
dyn.load(paste("double_delete_wrap", .Platform$dynlib.ext, sep=""))
|
||||
source("double_delete_wrap.R")
|
||||
source("double_delete.R")
|
||||
cacheMetaData(1)
|
||||
|
||||
# ----- Object creation -----
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
source("unittest.R")
|
||||
dyn.load(paste("funcptr_wrap", .Platform$dynlib.ext, sep=""))
|
||||
source("funcptr_wrap.R")
|
||||
source("funcptr.R")
|
||||
cacheMetaData(1)
|
||||
unittest(do_op(1, 3, add), 4)
|
||||
unittest(do_op(2, 3, mul), 6)
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
source("unittest.R")
|
||||
dyn.load(paste("ignore_parameter_wrap", .Platform$dynlib.ext, sep=""))
|
||||
source("ignore_parameter_wrap.R")
|
||||
source("ignore_parameter.R")
|
||||
cacheMetaData(1)
|
||||
|
||||
unittest(jaguar(1, 1.0), "hello")
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
source("unittest.R")
|
||||
dyn.load(paste("legacy_wrap", .Platform$dynlib.ext, sep=""))
|
||||
source("legacy_wrap.R")
|
||||
source("legacy.R")
|
||||
cacheMetaData(1)
|
||||
|
||||
obj <- getObject(1,3)
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
source("unittest.R")
|
||||
dyn.load(paste("simple_array_wrap", .Platform$dynlib.ext, sep=""))
|
||||
source("simple_array_wrap.R")
|
||||
source("simple_array.R")
|
||||
cacheMetaData(1)
|
||||
initArray()
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
source("unittest.R")
|
||||
dyn.load(paste("unions_wrap", .Platform$dynlib.ext, sep=""))
|
||||
source("unions_wrap.R")
|
||||
source("unions.R")
|
||||
cacheMetaData(1)
|
||||
|
||||
ss <- SmallStruct()
|
||||
|
|
|
|||
|
|
@ -854,7 +854,7 @@ int R::DumpCode(Node *n, String *module) {
|
|||
|
||||
|
||||
/* The name of the file in which we will generate the S code. */
|
||||
Printf(output_filename, "%s%s_wrap.R", SWIG_output_directory(), module);
|
||||
Printf(output_filename, "%s%s.R", SWIG_output_directory(), module);
|
||||
|
||||
#ifdef R_SWIG_VERBOSE
|
||||
Printf(stderr, "Writing S code to %s\n", output_filename);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue