Hi all,

I'm porting a package that I've worked on for OS X to Cygwin/Windows.

This package requires a Makefile. My question is, how can I find out
(or what is), the link command?

Here is the OS X Makefile:


RLIB_LOC=${R_HOME}

F90_FILES=\
class_data_frame.f90 \
class_old_dbest.f90 \
class_cm_data.f90 \
class_cm.f90 \
class_bgw.f90 \
class_cm_mle.f90 \
cme.f90


FORTRAN_FILES=\
dgletc.f \
dglfgb.f\
dglfg.f\
dmdc.f\
mecdf.f


%.o: %.f90
gfortran -c -g $<

%.o: %.f
gfortran -c -g $<

bpkg.so: $(F90_FILES:%.f90=%.o) $(FORTRAN_FILES:%.f=%.o)
gcc -Wall -bundle -flat_namespace -undefined suppress -L/sw/lib
-L/usr/local/lib -o $@ $^ \
-L$(RLIB_LOC)/lib -lR

###EOF####

The -L lib dirs are not correct. On a *nix platform I would do something
like this

sh -x R CMD SHLIB ...

to get at the R internal link information but I can't get that to work on
Cygwin.

Regards,

Joel


--
Joel Bremson
Graduate Student
Institute for Transportation Studies - UC Davis
http://etrans.blogspot.com

        [[alternative HTML version deleted]]

______________________________________________
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

Reply via email to