@@ -33,6 +33,7 @@ Rcpp.quoteNonStandard <- function(path) {
3333RcppLdPath <- function () {
3434 # .Deprecated(msg=paste("This function is now deprecated as it has not",
3535 # "been needed since 2013."))
36+ message(" 'RcppLdPath' has not been needed since 2013 (!!) and may get removed in 2027. Please update your 'Makevars'." )
3637 " "
3738}
3839
@@ -47,6 +48,7 @@ RcppLdPath <- function() {
4748RcppLdFlags <- function () {
4849 # .Deprecated(msg=paste("This function is now deprecated as it has not",
4950 # "been needed since 2013."))
51+ message(" 'RcppLdFlags' has not been needed since 2013 (!!) and may get removed in 2027. Please update your 'Makevars'." )
5052 " "
5153}
5254
@@ -67,11 +69,13 @@ RcppCxxFlags <- function(cxx0x=FALSE) {
6769CxxFlags <- function (cxx0x = FALSE ) {
6870 # .Deprecated(msg=paste("This function is now deprecated as R uses minimally",
6971 # "viable compilers om all platforme."))
72+ message(" 'CxxFlags' has not been needed since 2013 (!!) and may get removed in 2027. Please update your 'Makevars'." )
7073 cat(RcppCxxFlags(cxx0x = cxx0x )) # #nocov
7174}
7275
7376# # LdFlags defaults to static linking on the non-Linux platforms Windows and OS X
7477LdFlags <- function () {
78+ message(" 'LdFlags' has not been needed since 2013 (!!) and may get removed in 2027. Please update your 'Makevars'." )
7579 cat(RcppLdFlags())
7680}
7781
@@ -83,11 +87,13 @@ RcppCapabilities <- capabilities <- function() .Call( rcpp_capabilities )
8387RcppCxx0xFlags <- function () {
8488 # .Deprecated(msg=paste("This function is now deprecated as R uses minimally",
8589 # "viable compilers om all platforme."))
90+ message(" 'RcppCxx0xFlags' has not been needed since 2013 (!!) and may get removed in 2027. Please update your 'Makevars'." )
8691 script <- Rcpp.system.file( " discovery" , " cxx0x.R" ) # #nocov start
8792 flag <- capture.output( source( script ) )
8893 flag
8994}
9095
9196Cxx0xFlags <- function () {
97+ message(" 'Cxx0xFlags' has not been needed since 2013 (!!) and may get removed in 2027. Please update your 'Makevars'." )
9298 cat(RcppCxx0xFlags()) # #nocov end
9399}
0 commit comments