search for: rconfig

Displaying 20 results from an estimated 46 matches for "rconfig".

Did you mean: config
2010 Sep 29
1
location of Rconfig.h when using architecture-dependent subdirs
Hello, I just tried configuring R to use architecture-dependent subdirs $ r_arch=x86_64 ./configure --prefix=/u/smat/konis/testdir on a Debain Squeeze box $ uname -a Linux smapc007 2.6.32-5-686 #1 SMP Sat Sep 18 02:14:45 UTC 2010 i686 GNU/Linux After building and installing, the Rconfig.h ended up in .../lib/R/include/x86_64 but R.h still includes it as #include <Rconfig.h> I noticed that the CRAN binary for Mac OS X has the following .../lib/R/include/Rconfig.h. What step am I missing that causes this file to be generated? Thanks, Kjell /* This is an automatically ge...
2012 Jul 25
1
Rconfig.h & unsupported architectures
...-I/Library/Frameworks/R.framework/Resources/include/i386 -DNDEBUG -I/usr/local/include -fPIC -g -O2 -c win-path.c -o win-path.o In file included from /Library/Frameworks/R.framework/Resources/include/R.h:34, from win-path.c:1: /Library/Frameworks/R.framework/Resources/include/Rconfig.h:13:2: error: #error "Unsupported architecture." In file included from /Library/Frameworks/R.framework/Resources/include/R_ext/RS.h:27, from /Library/Frameworks/R.framework/Resources/include/R.h:44, from win-path.c:1: /Library/Frameworks/R.framework/Reso...
2002 May 02
0
Rconfig.h file
Hi, I was trying to compile a C++ dll that includes R.h file. One of the errors was that the file Rconfig.h (used in several places as #include) could not be found. I searched all the r-related directories and could not find it. Where is that file, and can I download it for free from your site? What is its function? Many thanks in advance for your help, Natasha Natasha Kozul Pricing Unit Financia...
2010 Feb 10
1
R Startup configuration file
...button on that dialog. Currently it would have to put 'options(repos="http://example.com/cran")' into my .Rprofile file. Of course my .Rprofile file could be full of all sorts of other code, so there's no easy way to do this and guarantee it will work. Could we have a ".Rconfig" file, consisting of key-value pairs in a standard config file form (or XML?), that is read at startup and applies the key-value pairs to options(key=value)? Obviously more detail is needed, such as whether to just have one .Rconfig file in the users' $HOME or in individual folders, where...
2017 Jan 01
3
Definition of uintptr_t in Rinterface.h
On 29/12/2016 15:55, Simon Urbanek wrote: > The problem is elsewhere - Rinterface.h guards the ultima-ratio fallback with HAVE_UINTPTR_T but that config flag is not exported in Rconfig.h. Should be now fixed in R-devel - please check if that works for you. Rconfig.h would be appropriate if Rinterface.h is being included from C code using the same compiler as used for R. But as Rinterface.h is intended for use by alternative front ends there is no guarantee that they use the...
2010 Jun 02
1
Help - C Compiler
Dear Group Members, First of all thanks for all the great work and effort. I am trying to compile a part of the Project R, 'pnorm.c' in visual studio 6.0 c++ language. First i downloaded the standalone R-2.11.0 and tried to compile it. Some files were missing here such as 'Rconfig.h'. Then i downloaded the Binary for Windows, and in the installation folder i found those missing files like 'Rconfig.h'. The problem is that i still need some other files to compile the pnorm.c that are not neither in R-2.11.0 or in installed binary folder. Files like 'R_ext/RS....
2017 Jan 02
1
Definition of uintptr_t in Rinterface.h
...om> wrote: > > > > 2017-01-01 8:28 GMT-05:00 Prof Brian Ripley <ripley at stats.ox.ac.uk>: > On 29/12/2016 15:55, Simon Urbanek wrote: > The problem is elsewhere - Rinterface.h guards the ultima-ratio fallback with HAVE_UINTPTR_T but that config flag is not exported in Rconfig.h. Should be now fixed in R-devel - please check if that works for you. > > Rconfig.h would be appropriate if Rinterface.h is being included from C code using the same compiler as used for R. But as Rinterface.h is intended for use by alternative front ends there is no guarantee that they u...
2016 Dec 27
3
Definition of uintptr_t in Rinterface.h
Hi, I was recently pointed out that a definition in Rinterface.h can be conflicting with a definition in stdint.h: /usr/include/R/Rinterface.h has: typedef unsigned long uintptr_t; /usr/include/stdint.h has: typedef unsigned int uintptr_t; (when 32bit platform complete definition is: #if __WORDSIZE == 64 # ifndef __intptr_t_defined typedef long int intptr_t; # define
2008 Oct 17
1
missing Rversion.h and Rconfig.h when installing RSQLite under FC8
Hello, I am having problems installing RSQLite under FC8. The error message seems to indicate Rversion.h and Rconfig.h are missing. To illustrate the problem, I have copied below the output shown when I first install R (binary distribution) and then try to install RSQLite. Because the problem does not occur when installing RSQLite with R under Windows I suspect the problem is perhaps due to my limited understandi...
2011 Aug 09
2
build 32-bit R on x86_64?
...ng at [these](http://cran.r-project.org/doc/manuals/R-admin.html#Sub_002darchitectures), I thought I could build 32-bit R by executing r_arch=32 ./configure and building R like usual (make). However, after seeing this error message, /usr/bin/install: cannot create regular file `../../include/32/Rconfig.h': No such file or directory I realize I am misunderstanding the instructions. Could someone please clarify how I could go about compiling both 32-bit and 64-bit versions of R on my Linux machine? Thank you! -- Vinh
1999 Jul 20
2
R 0.65 and AIX: if it quacks like a duck...
...in more information. no Note 2 that configure leaves a file called "-fp-no-toc" behind. Oops. 6) make && make check and everything looks ok. --> Compile with gcc: 1) 2) 3) 4) like above Additionally edit *sock.c: 5b) In appl/Rsock.c and appl/sock.c added `#include "Rconfig.h"' (This doesn't hurt the cc compilation.) 6b) CC=gcc ../configure Surprises: this finds libcurses and libz. I don't know where, though. So I manually remove -lreadline -lz -lcurses from the LIBS line in Makeconf. Note that I add my private readline with the help of CPPFLAGS...
2005 Sep 09
2
C macros and Makevars/package building
...and then finally a OBJS=$(SOURCES.SDK:.cpp=.o) $(SOURCES.OURS:cpp:.o) We seem to need the last statement since it seems that .cpp is not automatically a C++ suffix (but is it done the "right" way for portability?). We need the -imacro statement in order to include some macros from Rconfig.h (big endian checks) which are then translated from the WORDS_BIGENDIAN used in R to the IS_BIG_ENDIAN used in the library. Comments on the portability? Kasper
2017 Jan 01
0
Definition of uintptr_t in Rinterface.h
2017-01-01 8:28 GMT-05:00 Prof Brian Ripley <ripley at stats.ox.ac.uk>: > On 29/12/2016 15:55, Simon Urbanek wrote: > >> The problem is elsewhere - Rinterface.h guards the ultima-ratio fallback >> with HAVE_UINTPTR_T but that config flag is not exported in Rconfig.h. >> Should be now fixed in R-devel - please check if that works for you. >> > > Rconfig.h would be appropriate if Rinterface.h is being included from C > code using the same compiler as used for R. But as Rinterface.h is > intended for use by alternative front ends there...
2008 May 13
1
OS X / R.h
Hey, I have a question about including the R framework in a file. I'm running OS X 10.5.2. When I attempt to use: #include <R/R.h> And compile I get the following error: /Library/Frameworks/R.framework/Headers/R.h:40:21: error: Rconfig.h: No such file or directory /Library/Frameworks/R.framework/Headers/R.h:41:57: error: R_ext/ Arith.h: No such file or directory /Library/Frameworks/R.framework/Headers/R.h:42:50: error: R_ext/ Boolean.h: No such file or directory /Library/Frameworks/R.framework/Headers/R.h:43:50: error: R_ext/...
2015 Mar 31
2
VPATH build of R on MacOSX
...ava mkdir ../share/licenses mkdir ../share/make mkdir ../share/sh mkdir ../share/texmf mkdir ../share/texmf/bibtex mkdir ../share/texmf/bibtex/bib mkdir ../share/texmf/bibtex/bst mkdir ../share/texmf/tex mkdir ../share/texmf/tex/latex creating src/scripts/R.fe mkdir ../../bin install: ../../include/Rconfig.h: No such file or directory make[2]: *** [Rconfig.tsa] Error 71 make[1]: *** [R] Error 1 make: *** [R] Error 1
2008 May 05
2
[R-SIG-Mac] Starting tcltk without Tk
...behavior of starting just Tcl was actually a bug. Apparently the intention was to attempt to start Tk regardless of the DISPLAY variable, because some TclTk implementation such as Aqua Tcl/Tk don't require DISPLAY and thus would not be loaded. Due to a bug (HAVE_AQUA was not included in Rconfig.h before R 2.7.0), though, this was not the case. I'll leave it to tcltk users/maintainers to decide the right way forward. Essentially I see two options: 1) status quo: tcltk always attempts to load Tk and fails on an error 2) allow some (possibly cross-platform) way of specifying that it...
2019 Dec 12
4
R 3.6.2 is released
...hanges enable installation on platforms using gcc -fno-common (the expected default for gcc 10.x). C-LEVEL FACILITIES: * installTrChar (which is nowadays is wrapped by installChar) is defined in Rinternals.h. (Neither are part of the API.) PACKAGE INSTALLATION: * Header Rconfig.h contains the value of FC_LEN_T deduced at installation which is used by the prototypes in headers R_ext/BLAS.h and R_ext/Lapack.h but to avoid extensive breakage this is only exposed when USE_FC_LEN_T is defined. If a package's C/C++ calls to BLAS/LAPACK allow for the...
2019 Dec 12
4
R 3.6.2 is released
...hanges enable installation on platforms using gcc -fno-common (the expected default for gcc 10.x). C-LEVEL FACILITIES: * installTrChar (which is nowadays is wrapped by installChar) is defined in Rinternals.h. (Neither are part of the API.) PACKAGE INSTALLATION: * Header Rconfig.h contains the value of FC_LEN_T deduced at installation which is used by the prototypes in headers R_ext/BLAS.h and R_ext/Lapack.h but to avoid extensive breakage this is only exposed when USE_FC_LEN_T is defined. If a package's C/C++ calls to BLAS/LAPACK allow for the...
2019 Dec 12
4
R 3.6.2 is released
...hanges enable installation on platforms using gcc -fno-common (the expected default for gcc 10.x). C-LEVEL FACILITIES: * installTrChar (which is nowadays is wrapped by installChar) is defined in Rinternals.h. (Neither are part of the API.) PACKAGE INSTALLATION: * Header Rconfig.h contains the value of FC_LEN_T deduced at installation which is used by the prototypes in headers R_ext/BLAS.h and R_ext/Lapack.h but to avoid extensive breakage this is only exposed when USE_FC_LEN_T is defined. If a package's C/C++ calls to BLAS/LAPACK allow for the...
2019 Dec 12
2
R 3.6.2 is released
...> -fno-common (the expected default for gcc 10.x). > > C-LEVEL FACILITIES: > > * installTrChar (which is nowadays is wrapped by installChar) is > defined in Rinternals.h. (Neither are part of the API.) > > PACKAGE INSTALLATION: > > * Header Rconfig.h contains the value of FC_LEN_T deduced at > installation which is used by the prototypes in headers > R_ext/BLAS.h and R_ext/Lapack.h but to avoid extensive breakage > this is only exposed when USE_FC_LEN_T is defined. > > If a package's C/C++ calls to...