Displaying 4 results from an estimated 4 matches for "cfsources".
Did you mean:
c_sources
2001 Dec 12
1
RE: [R] Rcmd SHLIB problem
...4.0, unstable, NT4).
>
> Not sure if it is a bug in R, in perl or in (what I presume) make.
> To debug it, I took the relevant line from SHLIB (inserting the
> variables):
>
> make -f d:/uwe-ns/R140-071201/src/gnuwin32/MakeDll
> RHOME=d:/uwe-ns/R140-071201 DEBUG=T DLLNAME=pan CFSOURCES='pan.f'
> CXXSOURCES='' RCOBJ=
> make: *** No rule to make target `'pan.o', needed by `pan.a'. Stop.
>
>
> Now leaving out quotes at some places:
>
> d:\uwe>make -f d:/uwe-ns/R140-071201/src/gnuwin32/MakeDll
> RHOME=d:/uwe-ns/R140-071201 DE...
2001 Dec 11
2
Rcmd SHLIB problem
Dear R-help,
I'm having problem creating a dll using Rcmd SHLIB with R-1.3.1 on WinNT4:
C:\TEMP>Rcmd SHLIB tryf.o
make[1]: `libR.a' is up to date.
make: *** No rule to make target `'tryf.o', needed by `tryf.a'. Stop.
C:\TEMP>Rcmd SHLIB tryf.f
make[1]: `libR.a' is up to date.
make: *** No rule to make target `'tryf.o', needed by `tryf.a'. Stop.
I
2001 Dec 11
2
Rcmd SHLIB problem
Dear R-help,
I'm having problem creating a dll using Rcmd SHLIB with R-1.3.1 on WinNT4:
C:\TEMP>Rcmd SHLIB tryf.o
make[1]: `libR.a' is up to date.
make: *** No rule to make target `'tryf.o', needed by `tryf.a'. Stop.
C:\TEMP>Rcmd SHLIB tryf.f
make[1]: `libR.a' is up to date.
make: *** No rule to make target `'tryf.o', needed by `tryf.a'. Stop.
I
2006 Oct 09
1
Problem building a DLL from Fortran 90 source under Windows (with solution)
...son is the empty list of dependencies in the pattern rule for
DLLs contained in the file MkRules:
%.dll:
@$(ECHO) EXPORTS > $*.def
@$(NM) $^ | $(SED) -n 's/^........ [BCDRT] _/ /p' >> $*.def
The dependencies list is constructed in the MakeDll file that contains
the following:
CFSOURCES=$(wildcard -f *.c *.f *.f90 *.f95)
CSOURCES=$(wildcard -f *.c)
CXXSOURCES=$(wildcard -f *.cc *.cpp *.C)
FSOURCES=$(wildcard -f *.f)
FCSOURCES=$(wildcard -f *.f90 *.f95)
OBJSA=$(foreach i,$(CSOURCES) $(FSOURCES) $(CXXSOURCES),$(basename $i).o)
Observe that the neither CFSOURCES nor FCSOURCES in inc...