search for: cfuntab

Displaying 7 results from an estimated 7 matches for "cfuntab".

2001 Sep 25
2
hpux10.20 build for R-1.3.1
...-I/usr/include/Motif1.1 -I/usr/include/X11R4 -c CConverters.c -o CConverters.o gcc -I. -I../../src/include -I../../src/include -I/usr/local/include -DHAVE_CONFIG_H -I/usr/include/Motif1.1 -I/usr/include/X11R4 -c Rdynload.c -o Rdynload.o Rdynload.c: In function `R_FindSymbol': Rdynload.c:781: `CFunTab' undeclared (first use in this function) Rdynload.c:781: (Each undeclared identifier is reported only once Rdynload.c:781: for each function it appears in.) make[3]: *** [Rdynload.o] Error 1 make[3]: Leaving directory `/annex/.absd00t/absd00t/tools/R-1.3.1/src/main' make[2]: *** [R] Error 2...
2002 Jun 13
2
R make on macosx
...11 installed and with ATLAS. Running ./configure appears to end normally, but running make yields: gcc -no-cpp-precomp -I. -I../../src/include -I../../src/include -I/usr/local/include -DHAVE_CONFIG_H -g -O2 -c Rdynload.c -o Rdynload.o Rdynload.c: In function `R_FindSymbol': Rdynload.c:942: `CFunTab' undeclared (first use in this function) Rdynload.c:942: (Each undeclared identifier is reported only once Rdynload.c:942: for each function it appears in.) make[3]: *** [Rdynload.o] Error 1 make[2]: *** [R] Error 2 make[1]: *** [R] Error 1 make: *** [R] Error 1 [cba943:local/R/R-1.5.0] roger%...
2003 Apr 28
1
Compiling R-1.7.0 on Mac OS X
...building fails on the file main/Rdynload.c with the following error message. gcc -I../../src/extra/pcre -no-cpp-precomp -I. -I../../src/include -I../../src/include -I/sw/include -DHAVE_CONFIG_H -g -O2 -c Rdynload.c -o Rdynload.o Rdynload.c: In function `R_FindSymbol': Rdynload.c:1036: `CFunTab' undeclared (first use in this function) Rdynload.c:1036: (Each undeclared identifier is reported only once Rdynload.c:1036: for each function it appears in.) Looking back through the list, I saw this problem was discussed last year (http://maths.newcastle.edu.au/~rking/R/help/02a/4840.html)...
2001 Sep 02
0
Install problems R 1.3.1 on HP-UX (PR#1084)
...fort77 +DA1.1 +DS1.1 X11 support: yes Gnome support: no Tcl/Tk support: yes R profiling support: yes R as a shared library: no The first make halts on src/main/Rdynload.c, the compiler can't find the variable CFunTab. I solved this by adding the following lines after #include "R_ext/Rdynpriv.h" : #include "../unix/FFDecl.h" static CFunTabEntry CFunTab[] = { #include "../unix/FFTab.h" {NULL, NULL} }; Now, make runs a bit further, until it stops with the f...
2001 Nov 13
0
help with compiling R under hpux 10.20
...-O2 -c CConverters.c -o > >> CConverters.o > >> gcc -I. -I../../src/include -I../../src/include > >> -I/usr/local/include -DHAVE_CONFIG_H -g -O2 -c Rdynload.c -o Rdynload.o > >> Rdynload.c: In function `R_FindSymbol': > >> Rdynload.c:781: `CFunTab' undeclared (first use in this function) > >> Rdynload.c:781: (Each undeclared identifier is reported only once > >> Rdynload.c:781: for each function it appears in.) > >> *** Error exit code I heard from Luke Tierney that this is a known problem. I tried to compile...
2010 May 25
0
R without dynamic libraries: anyone working on this?
Hi all, I'm building R for a context where I can't load dynamic libraries. I've configured the build appropriately but from what I can tell it's not currently supported: there are compile errors here and there and the mechanism for looking up base symbols (CFunTab in Rdynload.c??) seems to have been ripped out. I'm going to add enough code so that R_FindSymbol will at least return correct pointers for the base library (error: C symbol name "R_isMethodsDispatchOn" not in DLL for package "base"), but I was wondering whether if anyone...
2003 Apr 29
1
configure succeeds without dlfcn.h, but fails to compile (OS X) (PR#2875)
.../include -I/sw/include -DHAVE_CONFIG_H -g -O2 -c CConverters.c -o CConverters.o gcc -I../../src/extra/pcre -no-cpp-precomp -I. -I../../src/include -I../../src/include -I/sw/include -DHAVE_CONFIG_H -g -O2 -c Rdynload.c -o Rdynload.o Rdynload.c: In function `R_FindSymbol': Rdynload.c:1036: `CFunTab' undeclared (first use in this function) Rdynload.c:1036: (Each undeclared identifier is reported only once Rdynload.c:1036: for each function it appears in.) make[3]: *** [Rdynload.o] Error 1 make[2]: *** [R] Error 2 make[1]: *** [R] Error 1 make: *** [R] Error 1 Fix for the user: The fink...