R CMD check stops at "checking Rd cross-references" -
i using devtools::check(document=false,args=c('--no-multiarch'))
perform checks package.
when above command performs r --vanilla cmd check "c:\sometmpfolder/mypackage.tar.gz" --timings --no-multiarch
, stops at
* checking rd cross-references ...
i.e., last line in mypackage.rcheck/00check.log
. there no error message - check seems freeze.
i use roxygen2
create documentation. cross references use of form \link{somefunction}
, \link[somepkg]{somefunction}
.
i running r 3.1.2 on win 7 machine. think have seen similar behaviour earlier versions of r , without roxygen2
well.
do guys know why check stops @ cross-references?
it turned out incorrect statement of form
\link[somepkg]{somefunction}
was problem. in case used incorrect command \link[reshape]{melt}
although should \link[reshape2]{melt}
. caused rd
cross-reference check take forever (actually, finished after 1 hour). after correcting \link[reshape2]{melt}
rd
cross-reference check took minute or so.
Comments
Post a Comment