On 5/9/12 5:07 PM, Dirk Eddelbuettel wrote:

On 9 May 2012 at 19:40, Steve Lianoglou wrote:
| Hi,
|
| On Wed, May 9, 2012 at 7:31 PM, Nick Matzke<mat...@berkeley.edu>  wrote:
| [snip]
|>  So, next issue.  My default "RcppSkeleton" package now installs fine and
|>  library(RcppSkeleton) works fine.
|>
|>  However, when I run the one function in the package, rcpp_hello_world(), I
|>  get this problem:
|>
|>
|>>  rcpp_hello_world()
|>
|>  Error in .Call("rcpp_hello_world", PACKAGE = "hello_world_Rcpp") :
|>    C symbol name "rcpp_hello_world" not in DLL for package "hello_world_Rcpp"
|
| Your package is called "RcppSkeleton", isn't it? If so, that should be
| reflected in your PACKAGE argument in .Call, eg:
|
| .Call("rcpp_hello_world", PACKAGE="RcppSkeleton")

+1

And that is what should have gotten filled in as rcpp_hello_world.R in
inst/skeleton/ (which gets copied) has:

rcpp_hello_world<- function(){
        .Call( "rcpp_hello_world", PACKAGE = "@PKG@" )
}

and all that works here:


R>  Rcpp.package.skeleton("rcppSkeletonTest", path="/tmp")
Creating directories ...
Creating DESCRIPTION ...
Creating NAMESPACE ...
Creating Read-and-delete-me ...
Saving functions and data ...
Making help files ...
Done.
Further steps are described in '/tmp/rcppSkeletonTest/Read-and-delete-me'.

Adding Rcpp settings
  >>  added Depends: Rcpp
  >>  added LinkingTo: Rcpp
  >>  added useDynLib directive to NAMESPACE
  >>  added Makevars file with Rcpp settings
  >>  added Makevars.win file with Rcpp settings
  >>  added example header file using Rcpp classes
  >>  added example src file using Rcpp classes
  >>  added example R file calling the C++ example
  >>  added Rd file for rcpp_hello_world
R>  library(rcppSkeletonTest)      ## after R CMD INSTALL ... outside of R
R>  rcpp_hello_world()
[[1]]
[1] "foo" "bar"

[[2]]
[1] 0 1

R>  rcppSkeletonTest::rcpp_hello_world()
[[1]]
[1] "foo" "bar"

[[2]]
[1] 0 1

R>

Ok?

Dirk

Yep, I get the same behavior now, my R function was reflecting a previous definition from a previous install attempt with the hello_world name I think, it went away after reinstalling, re-library-ing after detach() and remove.packages() on previous attempts.

Thanks!
Nick


--
====================================================
Nicholas J. Matzke
Ph.D. Candidate, Graduate Student Researcher

Huelsenbeck Lab
Center for Theoretical Evolutionary Genomics
4151 VLSB (Valley Life Sciences Building)
Department of Integrative Biology
University of California, Berkeley

Graduate Student Instructor, IB200B
Principles of Phylogenetics: Ecology and Evolution
http://ib.berkeley.edu/courses/ib200b/
http://phylo.wikidot.com/


Lab websites:
http://ib.berkeley.edu/people/lab_detail.php?lab=54
http://fisher.berkeley.edu/cteg/hlab.html
Dept. personal page: http://ib.berkeley.edu/people/students/person_detail.php?person=370 Lab personal page: http://fisher.berkeley.edu/cteg/members/matzke.html
Lab phone: 510-643-6299
Dept. fax: 510-643-6264

Cell phone: 510-301-0179
Email: mat...@berkeley.edu

Mailing address:
Department of Integrative Biology
1005 Valley Life Sciences Building #3140
Berkeley, CA 94720-3140

-----------------------------------------------------
"[W]hen people thought the earth was flat, they were wrong. When people thought the earth was spherical, they were wrong. But if you think that thinking the earth is spherical is just as wrong as thinking the earth is flat, then your view is wronger than both of them put together."

Isaac Asimov (1989). "The Relativity of Wrong." The Skeptical Inquirer, 14(1), 35-44. Fall 1989.
http://chem.tufts.edu/AnswersInScience/RelativityofWrong.htm
====================================================
_______________________________________________
Rcpp-devel mailing list
Rcpp-devel@lists.r-forge.r-project.org
https://lists.r-forge.r-project.org/cgi-bin/mailman/listinfo/rcpp-devel

Reply via email to