Skip to content
Prev 52507 / 63424 Next

compile c++ code in an R package without -g

Hi,

As I know, a solution is customizing Makefile target by yourself in 
src/Makevars of your package, and removing the -g option.

As an example, you can see 
https://github.com/SimonYansenZhao/wsrf/blob/09b197ed79b1c55a95d52b14aa5db3437f75f930/src/Makevars

I paste that here.  See "$(CXX1XFLAGS:-g=)" below.


     CXX_STD = "CXX11"
     PKG_LIBS = `"$(R_HOME)/bin/Rscript" -e "Rcpp:::LdFlags()"` -pthread
     wsrf_FLAGS = $(R_XTRA_CPPFLAGS) $(PKG_CPPFLAGS) $(CPPFLAGS) 
$(CLINK_CPPFLAGS) $(R_XTRA_CXXFLAGS) $(PKG_CXXFLAGS) $(CXX1XPICFLAGS) 
$(SHLIB_CXXFLAGS) $(CXX1XFLAGS:-g=) $(CXX1XSTD)

     all: $(SHLIB)

     %.o: %.cpp
         $(SHLIB_CXX1XLD) $(wsrf_FLAGS) -c $< -o $@

However, I am not sure if it is allowed on CRAN, and I think it must 
have a reason for that, though I don't know.

So I didn't do that in my package.


Best regards,
Simon(??)
On 2016?10?16? 21:46, Da Zheng wrote: