Skip to content
Prev 1144 / 63424 Next

f2c

Paul Gilbert <pgilbert@bank-banque-canada.ca> writes:
One thing you can do is to check the R.binary file with "nm -g" to find
out what symbols are defined in it.  On my machine R.binary includes
pow_dd and pow_di but not pow_ii.

$ nm -g R.binary
...
08108c30 T pnt
         U popen
080ef370 T pow_dd
080ef460 T pow_di
08106c80 T ppois
...

This means that you will have to include a reference to the f2c library
when you are making the dse.so object.  I'm not sure of the sequence
invoked by "R INSTALL dse" but it may be that you can override the
library specification in the makefile by exporting an appropriate
value for the environment variable SHLIBLDFLAGS.