Displaying 9 results from an estimated 9 matches for "mdll".
Did you mean:
dll
1999 Jul 26
0
ESRI Shapefile reader (help with dlls)
...something wrong when building the dll? here are the steps I used
gcc -mno-cygwin -O2 -c Sshpopen.c
echo LIBRARY Sshpopen > Sshpopen.def
echo EXPORTS >> Sshpopen.def
nm Sshpopen.o | \
sed -n "/^........ [BCDRT] _/s/^........ [BCDRT] _/ /p" \
>> Sshpopen.def
gcc -mno-cygwin -mdll -Wl,--base-file,Sshpopen.b \
-o Sshpopen.dll Sshpopen.o
dlltool -k -D Sshpopen.dll -b Sshpopen.b -e Sshpopen.e -d Sshpopen.def
gcc -mno-cygwin -mdll -Wl,--base-file,Sshpopen.b \
-o Sshpopen.dll Sshpopen.e Sshpopen.o
dlltool -k -D Sshpopen.dll -b Sshpopen.b -e Sshpopen.e -d Sshpopen.def
gcc -mno-cyg...
2000 Sep 19
2
porting splancs library to R
I am trying to port the splancs library for S++ version 4.0 to R. I have modified the original FORTRAN to use dllwrap/dlltool (e.g. removed common blocks). I have been able to generate dll's (splancs.dll) using dllwrap/dlltool and Ming32 g77 with a -mdll switch. As of yet I have not been able to generate a dll that can be loaded by R.
Does anyone out there have any suggestions. An example of a successful MAKEFILE or dllwrap/dlltool batch file would be greatly appreciated.
Thanks in advance..
Joseph Hughes
jdhughes99 at mindspring.com
--------...
1998 Sep 18
1
R-beta: undefined reference to `realpr_' ?
...aq etc, but someone may have mentioned it recently). Appreciate any
help.
------- Building multiv.dll from multiv.a --------
echo LIBRARY multiv > multiv.def
echo EXPORTS >> multiv.def
nm multiv.a | sed -n "/^........ [DT] _/s/^........ [BCDRT] _/ /p" >>
multiv.def
gcc -mdll -Wl,--base-file,multiv.b -s -o multiv.dll multiv.a -
L../../../
gnuwin32 -lR -lf2c
dlltool -k --as as --dllname multiv.dll --base-file multiv.b --
output-exp mul
tiv.e --def multiv.def
gcc -mdll -Wl,--base-file,multiv.b -s -o multiv.dll multiv.e
multiv.a -L
../../../gnuwin32 -lR -...
2000 May 24
1
Problem w/cygwin1.1 (maybe)
...fully under cygnus b20.1 with Mummit Kahn''s
port of gcc 2.95.2. I have upgraded to the new net release of cygwin (version
1.1, including the recent cygwin package upgrade to 1.1.1). Now when the dll
for my package is being created, I get the string of errors like:
[...]
gcc -mno-cygwin -mdll -Wl,--base-file,odesolve.b -s -o odesolve.dll odesolve.e
odesolve.a -L/R/rw1001/src/gnuwin32 -lg2c -lR
/usr/lib/gcc-lib/i686-pc-cygwin/2.95.2/libg2c.a(sfe.o)(.text+0x4e): undefined
reference to `__errno''
/usr/lib/gcc-lib/i686-pc-cygwin/2.95.2/libg2c.a(sfe.o)(.text+0xb9): undefined
refe...
1998 Jun 06
1
R-beta: makefile command line for recreating dynload demo dll
Hi,
I have gnuwin32 (b18) and the rw0613b.zip version of R.
With regards to (re)making the dynload dll demo given (zero.dll) could
anyone tell me what the command line for the makefile should be.
ie,
make -f Makefile.in ...?
Thanks for any help
--
Douglas
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read
2000 Apr 03
0
Building acepack for Rw1000 under Win98
...ack.a
ar cr acepack.a *.o
ranlib acepack.a
------- Building acepack.dll from acepack.a --------
echo LIBRARY acepack > acepack.def
echo EXPORTS >> acepack.def
nm acepack.a > Defs
sed -n "/^........ [BCDRT] _/s/^........ [BCDRT] _/ /p" Defs >> acepack.def
gcc -mno-cygwin -mdll -Wl,--base-file,acepack.b -s -o acepack.dll
acepack.a -
L/R/rw1000/src/gnuwin32 -L/cygwin-b20/lib -lg2c -lR
/R/TOOLS/ld: cannot open dllcrt1.o: No such file or directory
collect2: ld returned 1 exit status
MAKE.EXE[2]: *** [acepack.dll] Error 1
MAKE.EXE[1]: *** [src/acepack.dll] Error 2
MAKE.EXE...
2000 Apr 26
2
Cross compiling a package for Windows on Linux
...ectory `/usr/src/r-devel/src/library/nls/src'
------- Building nls.dll from nls.a --------
echo LIBRARY nls > nls.def
echo EXPORTS >> nls.def
i386-mingw32-nm nls.a > Defs
sed -n "/^........ [BCDRT] _/s/^........ [BCDRT] _/ /p" Defs >> nls.def
i386-mingw32-gcc -mdll -Wl,--base-file,nls.b -s -o nls.dll nls.a -L/usr/src/r-devel/src/gnuwin32 -lR
i386-mingw32-dlltool -k --as i386-mingw32-as --dllname nls.dll --base-file nls.b --output-exp nls.e --def nls.def
i386-mingw32-gcc -mdll -Wl,--base-file,nls.b -s -o nls.dll nls.e nls.a -L/usr/src/r-devel/sr...
2001 Mar 26
2
Need some help for building R!
Hello Dear R Developers and Users:
I'm trying to compile R with all the tools of the CRAN page.
I compile the R-1.2.2 version without problem.
But when I try to compile the development version 1.3.0 it
doesn't work when I write the command:
make BUILD=MINGW32
First it shows me something like this (I think without problems):
As I make when I compile succesfuly the R-1.2.2 version:
2001 Mar 26
2
Need some help for building R!
Hello Dear R Developers and Users:
I'm trying to compile R with all the tools of the CRAN page.
I compile the R-1.2.2 version without problem.
But when I try to compile the development version 1.3.0 it
doesn't work when I write the command:
make BUILD=MINGW32
First it shows me something like this (I think without problems):
As I make when I compile succesfuly the R-1.2.2 version: