You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I see there is a previous issue on this that has been closed. It does not seem identical, so I open a new issue.
I'm maintaining the package BayesMallows, where we have unit tests of C++ code. In src/RcppExports.cpp, we recently noticed that the line RcppExport SEXP run_testthat_tests(SEXP); changed to RcppExport SEXP run_testthat_tests(void *);. This seems to cause an LTO issue on CRAN. Relevant parts are reproduced below:
I've tried deleting src/RcppExports.cpp and running Rcpp::compileAttributes() on both Windows and Mac, and both generate run_testthat_tests(void * ) as above.
Any help with this issue would be much appreciated.
The text was updated successfully, but these errors were encountered:
I see there is a previous issue on this that has been closed. It does not seem identical, so I open a new issue.
I'm maintaining the package BayesMallows, where we have unit tests of C++ code. In
src/RcppExports.cpp
, we recently noticed that the lineRcppExport SEXP run_testthat_tests(SEXP);
changed toRcppExport SEXP run_testthat_tests(void *);
. This seems to cause an LTO issue on CRAN. Relevant parts are reproduced below:I've tried deleting
src/RcppExports.cpp
and runningRcpp::compileAttributes()
on both Windows and Mac, and both generaterun_testthat_tests(void * )
as above.Any help with this issue would be much appreciated.
The text was updated successfully, but these errors were encountered: