search for: windr

Displaying 20 results from an estimated 104 matches for "windr".

Did you mean: wind
2002 Jun 28
1
windres problem
Hello, I am trying to build an R package for Windows from an R package for Linux. There seems to be a "windres" problem somewhere. Here's what I get. C:\Temp>Rcmd build --binary VGAM > mm make[2]: windres: Command not found make[2]: *** [VGAM_res.o] Error 127 make[1]: *** [src/VGAM.dll] Error 2 make: *** [pkg-VGAM] Error 2 In more details, it goes like the following. C:\Temp>Rcmd...
2005 May 19
2
[LLVMdev] Building LLVM cfrontend
...lltool checking for i686-pc-cygwin-ld... (cached) c:/mingw/bin/../lib/gcc-lib/mingw32/3 .2.3/../../../../mingw32/bin/ld.exe checking for i686-pc-cygwin-nm... no checking for nm... (cached) nm checking for i686-pc-cygwin-ranlib... no checking for ranlib... (cached) ranlib checking for i686-pc-cygwin-windres... no checking for windres... (cached) windres checking for i686-pc-cygwin-objcopy... no checking for objcopy... (cached) objcopy checking for i686-pc-cygwin-objdump... no checking for objdump... (cached) objdump checking for i686-pc-cygwin-ar... no checking for ar... (cached) ar checking for i68...
2005 May 19
0
[LLVMdev] Building LLVM cfrontend
...gwin-ld... (cached) c:/mingw/bin/../lib/gcc-lib/mingw32/3 > .2.3/../../../../mingw32/bin/ld.exe > checking for i686-pc-cygwin-nm... no > checking for nm... (cached) nm > checking for i686-pc-cygwin-ranlib... no > checking for ranlib... (cached) ranlib > checking for i686-pc-cygwin-windres... no > checking for windres... (cached) windres > checking for i686-pc-cygwin-objcopy... no > checking for objcopy... (cached) objcopy > checking for i686-pc-cygwin-objdump... no > checking for objdump... (cached) objdump > checking for i686-pc-cygwin-ar... no > checking for...
2008 Mar 31
1
Compile dll in Windows XP
...h. I am trying to compile a toy function that can be called in R but when I type "RCMD SHLIB foo.c" I receive the following message in my Command prompt: making foo.d from foo.c make: [foo.d] Error 255 (ignored) cat: foo.d: No such file or directory make: [makeMakedeps] Error 1 (ignored) windres --preprocessor = "gcc-sjlj -E -xc -DRC_INVOKED" -I C:/Progra~1/R/R-26~1.2/ include -i foo_res.rc -o foo_res.o c:\MinGW\bin\windres.exe: unknown format type 'C:/PROGRA~1/R/R-26~1.2/include' c:\MinGW\bin\windres.exe: supported formats: rc res coff make: ***[foo_res.o] Error 1 Cou...
2008 Apr 29
1
non-digits in svnversion output mess up windows build if USE_SVNVERSION=yes (PR#11339)
...Administration manual, I altered src\gnuwin32\MkRules so it had the the locally correct paths to HTML Help Workshop and Inno Setup 5. I also set USE_SVNVERSION=yes, as suggested in MkRules itself. Then, while in the directory src/gnuwin32 I ran 'make all recommended' and got an error from windres very early in the build: E:\R\R-svn\r-devel\src\gnuwin32>make all recommended make --no-print-directory -C front-ends Rpwd make -C ../../include -f Makefile.win version make Rpwd.exe gcc -std=gnu99 -I../../include -O3 -Wall -pedantic -c rpwd.c -o rpwd.o windres --preprocessor=&...
2008 Apr 19
1
nondigits in R_FILEVERSION mess up Windows build
...Administration manual, I altered src\gnuwin32\MkRules so it had the the locally correct paths to HTML Help Workshop and Inno Setup 5. I also set USE_SVNVERSION=yes, as suggested in MkRules itself. Then, while in the directory src/gnuwin32 I ran 'make all recommended' and got an error from windres very early in the build: E:\R\R-svn\r-devel\src\gnuwin32>make all recommended make --no-print-directory -C front-ends Rpwd make -C ../../include -f Makefile.win version make Rpwd.exe gcc -std=gnu99 -I../../include -O3 -Wall -pedantic -c rpwd.c -o rpwd.o windres --preprocessor=&...
2009 Jun 04
2
Problem compiling Wine with Freetype on Ubuntu Hardy 64
I have a problem compiling Wine with Freetype. Not sure what to do: dpkg -i wine*.deb Code: checking for freetype-config... freetype-config checking for -lfreetype... not found configure: error: FreeType development files not found. Fonts will not be built. Dialog text may be invisible or unaligned. Use the --without-freetype option if you really want this. make: *** [config.status] Error 1
2007 Dec 20
2
SHLIB steps on a Makefile
...th the compilation process. My Makefile works fine in Linux but I am having trouble creating Makefile.win for MinGW. I first looked at the commands that Rcmd SHLIB appeared to be running and copied those onto the Makefile. But one step seems to be missing, the creation of the _res.rc file needed by windres g++-sjlj -I$(RHOME)/include -I../inst/include/ -O2 -Wall -c pkg.cpp -o pkg.o windres --preprocessor="gcc-sjlj -E -xc -DRC_INVOKED" -I$(RHOME)/include -I../inst/include -i pkg_res.rc -o pkg_res.o g++-sjlj -shared -s -o pkg.dll pkg.def pkg.o FL pkg_res.o -L$(RHOME)/bin -lR This might...
1998 Jun 09
1
R-beta: R-beta makefile
>This mean that the specs file of Cygnus gcc is different from the >mingw32 one. OK thanks (I added main() {} as per FAQ and I got the dynload to build a dll ok) I am also interested in building the R sources as per your descriptions. To simplify things, I have removed b18 cygwin and have now installed egcs-mingw32 with your djtools as recommended. Everything seems to work OK; tools that
2016 Feb 10
4
Guidance on cross compiling LLVM with mingw-w64 and cmake
...ate this with cmake so we don't get stuck on 3.8 indefinitely. Here's what I've got so far: cmake .. -DCMAKE_C_COMPILER=/usr/bin/i686-w64-mingw32-gcc \ -DCMAKE_CXX_COMPILER=/usr/bin/i686-w64-mingw32-g++ \ -DCMAKE_SYSTEM_NAME=Windows \ -DCMAKE_RC_COMPILER=/usr/bin/i686-w64-mingw32-windres # (some older versions of cmake have issues if you don't # specify an absolute path to windres) When this gets to "Configuring NATIVE targets" it calls cmake again trying to use the same mingw compilers, but without CMAKE_SYSTEM_NAME set so it doesn't succeed in configuring. Du...
2011 Jan 02
1
[LLVMdev] LLVM for ARM target
...6-pc-cygwin/4.3.4/../ ../../../i686-pc-cygwin/bin/ld.exe checking for i686-pc-cygwin-lipo... no checking for lipo... no checking for i686-pc-cygwin-nm... (cached) nm checking for i686-pc-cygwin-ranlib... (cached) ranlib checking for i686-pc-cygwin-strip... (cached) strip checking for i686-pc-cygwin-windres... (cached) windres checking for i686-pc-cygwin-objcopy... (cached) objcopy checking for i686-pc-cygwin-objdump... (cached) objdump checking for arm-linux-cc... no checking for arm-linux-gcc... no checking for arm-linux-c++... no checking for arm-linux-g++... no checking for arm-linux-cxx... no c...
2008 Apr 29
0
non-digits in svnversion output mess up windows build if (PR#11341)
On Tue, 29 Apr 2008, Duncan Murdoch wrote: > This is not a bug, it's a feature. > > It stops me from distributing versions with unintentional uncommitted > changes. It does have that effect, but the error messages are pretty obscure: c:\Rtools\MinGW\bin\windres.exe: rcico.rc:9: syntax error and Error on line 12 in e:\R\R-svn\r-devel\src\gnuwin32\installer\R.iss: Value of [Setup] section directive "VersionInfoVersion" is invalid. Both problems are Windows-specific and the desire to not distribute versions with unintentional uncommi...
2001 May 31
1
Building shared libraries under Windows
...ows. I used rcmd shlib both with a source file and with an object file, but I got error messages in both cases. I get the same error messages both using a Dos shell and Cygwin. If I use the source file, I type: rcmd shlib prova.c and what I get is: make[1]: `libR.a' is up to date. windres --include-dir C:/R/RW1021/src/include -i prova_res.rc -o prova_res.o windres: no resources make: *** [prova_res.o] Error 1 If I use the object file, I type: rcmd shlib prova and what I get is: make[1]: `libR.a' is up to date. make: *** No rule to make target `prova.o'...
2007 Feb 06
1
R from SVN fails to build on win32
...E_CONFIG_H -DR_DLL_BUILD -c system.c -o system.o gcc -O3 -Wall -pedantic -std=gnu99 -I../include -I. -DHAVE_CONFIG_H -DR_DLL_BUILD -c dos_glob.c -o dos_glob.o gcc -c -o e_pow.o e_pow.S gcc -O3 -Wall -pedantic -std=gnu99 -I../include -I. -DHAVE_CONFIG_H -DR_DLL_BUILD -c malloc.c -o malloc.o windres -I ../include -i dllversion.rc -o dllversion.o c:\MinGW\bin\windres.exe: unknown format type `../include' c:\MinGW\bin\windres.exe: supported formats: rc res coff make[3]: *** [dllversion.o] Error 1 make[2]: *** [../../bin/R.dll] Error 2 make[1]: *** [rbuild] Error 2 make: *** [all] Error 2...
2008 Apr 29
0
non-digits in svnversion output mess up windows build if (PR#11340)
...l, I altered src\gnuwin32\MkRules so it had the the locally > correct paths to HTML Help Workshop and Inno Setup 5. I also set > USE_SVNVERSION=yes, as suggested in MkRules itself. Then, while in > the directory src/gnuwin32 I ran 'make all recommended' and got an > error from windres very early in the build: > > E:\R\R-svn\r-devel\src\gnuwin32>make all recommended > make --no-print-directory -C front-ends Rpwd > make -C ../../include -f Makefile.win version > make Rpwd.exe > gcc -std=gnu99 -I../../include -O3 -Wall -pedantic -c rpwd.c -o rpw...
2011 Jan 02
0
[LLVMdev] LLVM for ARM target
Sorry again, my bad. I actually was using --enable-pics instead of --enable-pic. Now LLVM is being compiled. Hope the last phase llvm-gcc compilation would be a success. Thanks a lot. Akramul --- On Sun, 2/1/11, akramul azim <bijoy123_8 at yahoo.com> wrote: From: akramul azim <bijoy123_8 at yahoo.com> Subject: Re: [LLVMdev] LLVM for ARM target To: "Bill Wendling"
2008 Jan 14
0
[LLVMdev] Trying to compile frontend 4.0 fails on cygwin
...ltool configure:3795: checking for dlltool configure:3834: checking for i686-pc-cygwin-ld configure:3906: checking for i686-pc-cygwin-nm configure:3939: checking for nm configure:3978: checking for i686-pc-cygwin-ranlib configure:4011: checking for ranlib configure:4050: checking for i686-pc-cygwin-windres configure:4083: checking for windres configure:4122: checking for i686-pc-cygwin-objcopy configure:4155: checking for objcopy configure:4194: checking for i686-pc-cygwin-objdump configure:4227: checking for objdump configure:4273: checking for i686-pc-cygwin-ar configure:4306: checking for ar con...
2012 May 31
3
[LLVMdev] LLVM/Clang SVN: 2 Questions
...ch I am missing to build this tool? I searched through the Cmake options, but I could not find any. 2.) Can I actually compile Windows resource files (*.rc) with Clang? What would I need to if my project requires a Windows resource file and I want to compile it using Clang? Linking against a MinGW/windres compiled resource? Any help is greatly appreciated. -- View this message in context: http://old.nabble.com/LLVM-Clang-SVN%3A-2-Questions-tp33936868p33936868.html Sent from the LLVM - Dev mailing list archive at Nabble.com.
2011 Jan 02
2
[LLVMdev] LLVM for ARM target
Sorry I used --enable-pic, not --enable-pics. It was a typo. Akramul --- On Sun, 2/1/11, akramul azim <bijoy123_8 at yahoo.com> wrote: From: akramul azim <bijoy123_8 at yahoo.com> Subject: Re: [LLVMdev] LLVM for ARM target To: "Bill Wendling" <wendling at apple.com> Cc: "Anton Korobeynikov" <anton at korobeynikov.info>, llvmdev at cs.uiuc.edu Date:
2006 Sep 28
1
Build error/zlib question
...give some help. Some snippets from the build process: R-2.3.1 making DLL ... gcc -Ic:/R-2.3.1/src/extra/zlib -DHAVE_ZLIB -Ic:/R-2.3.1/include -Wall -O2 -c read_cdffile.c -o read_cdffile.o read_cdffile.c: In function `readQC': read_cdffile.c:565: warning: unused variable `param_unit' windres --include-dir c:/R-2.3.1/include -i makecdfenv_res.rc -o makecdfenv_res.o gcc -shared -s -o makecdfenv.dll makecdfenv.def read_cdffile.o makecdfenv_res.o -Lc:/R-2.3.1/bin -lR ... DLL made R-2.4.0 beta making DLL ... gcc -Ic:/rw2040dev/src/extra/zlib -DHAVE_ZLIB -Ic:/rw2040dev/includ...