kgui
kgui

Reputation: 4165

Running submodule configure script Rcpp

I have the following structure of an Rcpp package:

# SeqLib
#   |-----src 
#          |-----SeqLib(a submodule) 
                    -configure script 

I have a submodule that contains a configure script. How would I specify the execution of it via the Makevars file or any other way.

Update:

Detailed structure:
# SeqLib
#   |-----src 
#          |-----SeqLib(a submodule) 
#                   - configure script 
#                   - SeqLib 
#                       - FermiAssembler.h 
#                   - src 
#                       - FermiAssembler.cpp 

The reason for this is from advice on this question Able To Reference Functions But, Not Classes in a Namespace

Basically, I have a header file in a separate directory than the definition file. It looks like there is a problem with not being able to find the definition of the cpp file by using c++filt.

Upvotes: 0

Views: 103

Answers (1)

kgui
kgui

Reputation: 4165

Thanks to Dirk Eddelbuettel, the following worked:

(cd SeqLib; ./configure)

Upvotes: 1

Related Questions