Displaying 20 results from an estimated 24 matches for "pedump".
2006 Aug 01
2
open DLL in R
I have downloaded a DLL file. I want to look at the contents in the DLL file. How can I do it in R?
Thanks,
QL
---------------------------------
[[alternative HTML version deleted]]
2007 Jun 12
1
Using dll with Visual Studio Compiler
Hi,
I have created a dll in Fortran and used the Visual Studio 2005 Compiler. I've read that certain problems can arise based on the compiler used and that these problems can sometimes cause R not to be able to access everything appropriately, but I've not found how to fix any of these problems. Specifically, after using dyn.load, I know the dll has been loaded because it is listed in
2003 Sep 17
3
Building and loading a DLL on Windows NT
I am trying to build a simple dll with Rcmd SHLIB to link into R. The
results of the build are below. From my limited knowledge of building DLLs,
it looks like it worked (I didn't get any errors).
F:\R\dlls> Rcmd SHLIB add.C
making add.d from add.C
g++ -IC:/PROGRA~1/R/src/include -Wall -O2 -c add.C -o add.o
ar cr add.a *.o
ranlib add.a
g++ --shared -s -o add.dll add.def add.a
2002 Jan 30
2
Error calling Fortran code
Dear R users,
I have to use a R function which call a Fortran code:
result <- .Fortran("Name", arguments)
I have the following error message:
R> Error in .Fortran("Name", arguments ....
R> C/Fortran function name not in load table
Any ideas?
I am working on PC with R 1.4.0 (loading from R Binaries, Windows, Base,
SetupR.exe installation with all the
2009 Jan 23
2
can't load rJava in R 2.8.1 on Windows XP
Dear community,
unfortunately I did not manage load the rJava package receiving the following
error-message:
> library("rJava")
Error in inDL(x, as.logical(local), as.logical(now), ...) :
kann shared library 'C:/Programme/R/2.8.1/library/rJava/libs/rJava.dll' nicht
laden:
LoadLibrary failure: Das angegebene Modul wurde nicht gefunden.
Error : .onLoad in
2009 Jan 23
2
can't load rJava in R 2.8.1 on Windows XP
Dear community,
unfortunately I did not manage load the rJava package receiving the following
error-message:
> library("rJava")
Error in inDL(x, as.logical(local), as.logical(now), ...) :
kann shared library 'C:/Programme/R/2.8.1/library/rJava/libs/rJava.dll' nicht
laden:
LoadLibrary failure: Das angegebene Modul wurde nicht gefunden.
Error : .onLoad in
2005 Oct 13
2
R, Wine, and multi-threadedness.
Hi,
I managed to install Win32 R 2.2.0 with the CRAN Innosetup
installer under Wine on x86 linux a few days ago. However, on trying
to run it, MSVCP60.DLL is missing. So here is a sort of a bug
report, and a couple of questions:
(1) I think the R binary in the CRAN Innosetup installer was built with
mingw. The R-windows FAQ did mention that this DLL is required *for
Chinese/Japanese/Korean*
2002 Jan 21
1
.Fortran or .C???
Hello,
I have made a dll with mingw32 fortran compiler. I load my dll with the dyn.load function, but when I call one of my Fortran procedures with the .Fortran instruction, an error message appears saying that my function is not in the load table. However, if I call my Fortran routines with ".C" it works fine. I would like to know what is happening here. Is it usual to call Fortran
2007 Dec 11
1
error trying to load biOps under 2.6.1 running XP
I'm running R 2.6.1 on a WXP machine. When I do the following I get an
error message.
> library(biOps)
Error in dyn.load(file, ...) :
unable to load shared library
'C:/PROGRA~1/R/R-26~1.1/library/biOps/libs/biOps.dll':
LoadLibrary failure: The specified module could not be found.
Error: package/namespace load failed for 'biOps'
Please help, or comments about what
2007 Sep 22
1
How can I list unregistered routines from loaded DLLs?
Hi,
I want to load DLLs that have been compiled in C or C++ (using
dyn.load), and then get a list of all routines contained in that DLL.
getRegisteredRoutines doesn't work, because the routines have not been
registered. It's a catch-22 because I can't (so far as I can see)
register the routines without knowing their names, and I can't (so far
as I can see) get a list of their
2002 Apr 23
1
Can't load native dll
When I try to load winelib dll I get an error message:
"err:module:MODULE_LoadLibraryExA Loading of native
DLL <dllname> failed (error 193), check this file."
The error message is printed for call:
DllHandle = LoadLibrary(DllName);
This happens even when I try to load standard Wine
dlls, like dlls/msisys.ocx.so
Did I miss something obvious?
Thanks,
Andriy Palamarchuk
2005 Oct 26
1
Borland C++ and [R] dyn.load() for windows
Hi,
I compiled a C program file on Borland C++ 5.5 compiler to get one dll output
(as instructed in the file readme.package).
The C program file is just the example on page 31 of "writing R extensions":
void convolve(double *a, int *na, double *b, int *nb, double *ab)
{
int i, j, nab = *na + *nb - 1;
for(i = 0; i < nab; i++)
ab[i] = 0.0;
for(i = 0; i < *na; i++)
for(j = 0; j
2000 Nov 13
1
DLL for calling Fortran subroutines
Hi everybody,
I'm trying to use fortran subroutines in a R function. I've generated a
DLL file using my fortran subroutines, and I've got a DLL which includes
an export table with the names of my subroutines.
Then, I use the R command library(test), where test is a directory
located in the R library tree and which contains a R directory (with my
R functions) and a libs directory (with
2005 Apr 19
2
RODBC odbcCloseAll odbcClose Windows XP
Hello...
After installing the precompiled version of R 2.1.0 (congratulations
to the R Development Core Team) for Windows XP (Service Pack 2), I'm
having problems with the "odbcCloseAll" and "odbcClose" functions
within the "RODBC" package. I get pretty much the same error message
for both functions:
odbcCloseAll() produces:
Error in
2001 Mar 20
1
tcltk on Windows 98
I've written an application that uses the tcltk package, and have
distributed it to a few people to use here in the Agency on Windows 98
machines. It has worked just fine on all but one of those machines. On
that one (system information quoted below), we persist in getting the error
message:
> require (tcltk)
Loading required package: tcltk
Error in dyn.load(x, as.logical(local),
2009 Oct 14
3
RPostgreSQL: unable to load shared library
Hello list,
I'm using R 2.9.2 on a WinXP system, and I installed the RPostgreSQL
library using the package installer. When trying to load it, I get the
following error:
> library('RPostgreSQL')
Error in inDL(x, as.logical(local), as.logical(now), ...) :
unable to load shared library
'C:/PROGRA~1/R/R/library/RPostgreSQL/libs/RPostgreSQL.dll':
LoadLibrary failure: The
2000 Dec 18
1
Rwinst.exe problems
I've heard from several users who report no difficulties using the
Rwinst.exe installer for the released version of 1.2.0. I've blown away
all traces of 1.2.0 on my system and have re-downloaded all 10 zip files
and the installer on both my NT and Win2K boxes. The memory-overwrite
error persists on both systems, suggesting that there is some
incompatibility between the 1.2.0
2001 May 22
0
Call for volunteers
...ug.cgi?id=243
There's a bug in the drawing of the border of the common control
tabs. Fixing each of the four instances of the code is easy. It would
be interesting to find a way to factorize some of this code.
Medium (I expect these would take longer or be a bit harder)
* Provide a pedump utility
#91: http://wine.codeweavers.com/bugzilla/show_bug.cgi?id=91
I know there's sample code that does that already floating around so
it should be relatively simple.
* wrc fails on preprocessed files
#115: http://wine.codeweavers.com/bugzilla/show_bug.cgi?id=115
I believe i...
2000 Mar 08
1
installing package in Windows
Could you help me in getting a package to compile from source in Windows?
I'm running Windows NT 4.0 on a pentium 450 with 128 Mb of Ram. I've got R
1.0.0.
I am developing a package for R which includes a bit of C code. I have things
working in Unix just fine, and now I want to port it to Windows NT.
I've been following the instructions in the R complements to Venables and
2002 Oct 18
2
Help with DLLs
I'm using R version 1.5.1, and Microsoft Developer Studio 97 (yes, I know
it's old, but it's expensive to upgrade) on Windows 98. I created the DLL
file with the compiler. The name of the file containing the subroutine is
leaf.f and the subroutine is named leaf.f. In my R program (which defines
a function called leaf), I have
x <- .Fortran("leaf",...)
where the ...