search for: dr_dll_build

Displaying 15 results from an estimated 15 matches for "dr_dll_build".

2007 Feb 06
1
R from SVN fails to build on win32
...psignal.d from psignal.c making rhome.d from rhome.c making rui.d from rui.c making run.d from run.c making shext.d from shext.c making sys-win32.d from sys-win32.c making system.d from system.c making dos_glob.d from dos_glob.c gcc -O3 -Wall -pedantic -std=gnu99 -I../include -I. -DHAVE_CONFIG_H -DR_DLL_BUILD -c console.c -o console.o gcc -O3 -Wall -pedantic -std=gnu99 -I../include -I. -DHAVE_CONFIG_H -DR_DLL_BUILD -c dataentry.c -o dataentry.o gcc -O3 -Wall -pedantic -std=gnu99 -I../include -I. -DHAVE_CONFIG_H -DR_DLL_BUILD -c dynload.c -o dynload.o gcc -O3 -Wall -pedantic -std=gnu99 -I../include...
2018 Feb 09
1
R Compilation gets stuck on Windows 64
Please note that building R on Windows is documented in "R Installation and Administration", including links to external software. Particularly there is a link to texinfo which is part of Rtools. The documentation is maintained and it is a sufficient source of information for building R on Windows. https://cran.r-project.org/doc/manuals/r-release/R-admin.html
2005 Mar 22
4
trouble building r-devel
...TCL_HOME=C:/R/Tcl, which are the same ones I always make. Any help appreciated! Mark C:\R\R-devel\src\gnuwin32> make << some OK bits of output, to help show where the problem is>> ... making vfonts.d from vfonts.c gcc -O2 -Wall -pedantic -DLEA_MALLOC -I../include -DHAVE_CONFIG_H -DR_DLL_BUILD -c CConverters.c -o CConverters.o gcc -O2 -Wall -pedantic -DLEA_MALLOC -I../include -DHAVE_CONFIG_H -DR_DLL_BUILD -c CommandLineArgs.c -o CommandLineArg s.o gcc -O2 -Wall -pedantic -DLEA_MALLOC -I../include -DHAVE_CONFIG_H -DR_DLL_BUILD -c Rdynload.c -o Rdynload.o gcc -O2 -Wall -pedantic -DLE...
2023 Nov 12
1
Segmentation fault early in compilation of revision 85514
...``` installing zoneinfo making console.d from console.c making dynload.d from dynload.c making embeddedR.d from embeddedR.c making preferences.d from preferences.c making psignal.d from psignal.c making rui.d from rui.c making system.d from system.c gcc -I../include -I. -I../extra -DHAVE_CONFIG_H -DR_DLL_BUILD -O3 -Wall -pedantic -march=native -pipe -mno-rtm -flto=1 -fuse-linker-plugin -c console.c -o console.o gcc -I../include -I. -I../extra -DHAVE_CONFIG_H -DR_DLL_BUILD -O3 -Wall -pedantic -march=native -pipe -mno-rtm -flto=1 -fuse-linker-plugin -c dynload.c -o dynload.o gcc -I../include -I. -I...
2005 Apr 14
5
cross compiling R for Windows under Linux
Hi I tried to cross compile R under Linux but get an error. i586-mingw32-gcc -isystem /home/schouwl/unpack/mingw/include -O2 -Wall -pedantic -I../include -I. -DHAVE_CONFIG_H -DR_DLL_BUILD -c dynload.c -o dynload.o dynload.c: In function `R_loadLibrary': dynload.c:94: warning: implicit declaration of function `_controlfp' dynload.c:94: error: `_MCW_IC' undeclared (first use in this function) dynload.c:94: error: (Each undeclared identifier is reported only once dynload.c...
2005 Oct 07
1
builiding R from sources
...ly! I've followed the instructions in Section 3.1.2-3.1.3 of "R Installation and Administration" manual (but maybe I did something wrong), but I keep receiving the following error: -- initially I get -- make: ./Rpwd.exe: Command not found make[1]: ./Rpwd.exe: Command not found ... DR_DLL_BUILD -c arithmetic.c -o arithmetic.o arithmetic.c: In function 'do.math1': arithmetic.c:886: error: 'expm1' undeclared (first use in this function) arithmetic.c:886: error: (Each undeclared identifier is reported only once arithmetic.c:886: error: for each function it appears in.) make[4...
2007 Dec 14
1
windows rtools missing gfortran.exe?
...f gfortran.exe is missing from (recent?) Rtools.exe or I am doing something wrong. Thanks to hints at Duncan's site, I worked around the error by adding "GCC4_SUFF=-sjlj" in MkRules (below the == end of user-customizable parts == line). gcc -std=gnu99 -I../include -DHAVE_CONFIG_H -DR_DLL_BUILD -O3 -Wall -pedantic -c zeroin.c -o zeroin.o gfortran -O3 -c ch2inv.f -o ch2inv.o make[4]: gfortran: Command not found make[4]: *** [ch2inv.o] Error 127 make[3]: *** [rlibs] Error 2 make[2]: *** [../../bin/R.dll] Error 2 make[1]: *** [rbuild] Error 2 make: *** [all] Error 2 -- -----------------...
2004 Nov 26
1
Cross-compiling R for Windows on linux
I tried to cross-compile the newest release 2.0.1 on a linux machine, but i always got an error at the following stage DHAVE_CONFIG_H -DR_DLL_BUILD -c dynload.c -o dynload.o dynload.c: In function `R_loadLibrary': dynload.c:94: warning: implicit declaration of function `_controlfp' dynload.c:94: error: `_MCW_IC' undeclared (first use in this function) dynload.c:94: error: (Each undeclared identifier is reported only once dynload.c...
2005 Oct 10
1
error compiling R-code
...I left on vacation. I just downloaded both versions of R sources (i.e., 2.2.0 patched and 2.3.0). They both give me the same error, so my suspicion is that it is just me having this problem. Here is what I get: ... gcc -O2 -Wall -pedantic --std=gnu99 -DLEA_MALLOC -I../include -DHAVE_CONFIG_H -DR_DLL_BUILD -c arithmetic.c -o arithmetic.o arithmetic.c: In function `do_math1': arithmetic.c:886: error: `expm1' undeclared (first use in this function) arithmetic.c:886: error: (Each undeclared identifier is reported only once arithmetic.c:886: error: for each function it appears in.) make[4]: ***...
2006 Oct 18
2
Problems building package under Windows (PR#9303)
...build the DLL, it can't find some of the include files. I had to make the following change in Makefile and copy some .h files: --------------------------------------------------------------------------------------------------------------- CFLAGS = $(OPTFLAGS) -I../include -I. -DHAVE_CONFIG_H -DR_DLL_BUILD replace by: CFLAGS = $(OPTFLAGS) -I../include -I../../include -I. -DHAVE_CONFIG_H -DR_DLL_BUILD 2. Filename case sensitivity. --------------------------------------------------------------------------------------------------------------- For some reasons, the perl scripts "build" and &q...
2005 Jan 28
1
error in gmake CrossCompileBuild
...ll, I expect that I am on thin ice trying to build this on freeBSD 4.10, however, after tweaking Makefile-rcb v11Oct04 /* MAKE=gmake; MINGW_CROSS = mingw-cross4 */, I encounter: mingw32-gcc -isystem ~/RCrossBuild/cross- tools/mingw32/include -O2 -Wall -pedantic -I../include -I. - DHAVE_CONFIG_H -DR_DLL_BUILD -c dynload.c -o dynload.o dynload.c: In function `R_loadLibrary': dynload.c:94: warning: implicit declaration of function `_controlfp' dynload.c:94: error: `_MCW_IC' undeclared (first use in this function) dynload.c:94: error: (Each undeclared identifier is reported only once dynloa...
2015 Jan 08
1
New version of Rtools for Windows
...return res; } int vsnprintf(char *buffer, size_t bufferSize, const char *format, va_list args) { return trio_vsnprintf(buffer, bufferSize, format, args); } Continuing the build using 4.9.2 crashed again at the following point: gcc -std=gnu99 -m64 -I../include -I. -I../extra -DHAVE_CONFIG_H -DR_DLL_BUILD -O3 -Wall -pedantic -mtune=core2 -c malloc.c -o malloc.o windres -F pe-x86-64 -I../include -i dllversion.rc -o dllversion.o gcc -std=gnu99 -m64 -shared -s -mwindows -o R.dll R.def console.o dynload.o editor.o embeddedR.o extra.o opt.o pager.o preferences.o psignal.o rhome.o rt_complete.o rui.o...
2015 Jan 08
0
New version of Rtools for Windows
...ar *format, va_list args) >> { >> return trio_vsnprintf(buffer, bufferSize, format, args); >> } >> >> Continuing the build using 4.9.2 crashed again at the following point: >> >> gcc -std=gnu99 -m64 -I../include -I. -I../extra -DHAVE_CONFIG_H >> -DR_DLL_BUILD -O3 -Wall -pedantic -mtune=core2 -c malloc.c -o >> malloc.o >> windres -F pe-x86-64 -I../include -i dllversion.rc -o dllversion.o >> gcc -std=gnu99 -m64 -shared -s -mwindows -o R.dll R.def console.o >> dynload.o editor.o embeddedR.o extra.o opt.o pager.o preferences.o &g...
2015 Jan 08
1
New version of Rtools for Windows
...t;> { >>>? ? ? return trio_vsnprintf(buffer, bufferSize, format, args); >>> } >>> >>> Continuing the build using 4.9.2 crashed again at the following point: >>> >>> gcc -std=gnu99 -m64 -I../include -I. -I../extra -DHAVE_CONFIG_H >>> -DR_DLL_BUILD? -O3 -Wall -pedantic -mtune=core2???-c malloc.c -o >>> malloc.o >>> windres -F pe-x86-64? -I../include -i dllversion.rc -o dllversion.o >>> gcc -std=gnu99 -m64 -shared -s -mwindows -o R.dll R.def console.o >>> dynload.o editor.o embeddedR.o extra.o opt.o pager.o...
2015 Jan 08
0
New version of Rtools for Windows
...t;> { >>> return trio_vsnprintf(buffer, bufferSize, format, args); >>> } >>> >>> Continuing the build using 4.9.2 crashed again at the following point: >>> >>> gcc -std=gnu99 -m64 -I../include -I. -I../extra -DHAVE_CONFIG_H >>> -DR_DLL_BUILD -O3 -Wall -pedantic -mtune=core2 -c malloc.c -o >>> malloc.o >>> windres -F pe-x86-64 -I../include -i dllversion.rc -o dllversion.o >>> gcc -std=gnu99 -m64 -shared -s -mwindows -o R.dll R.def console.o >>> dynload.o editor.o embeddedR.o extra.o opt.o pager.o...