search for: extralib

Displaying 20 results from an estimated 23 matches for "extralib".

Did you mean: extralibs
2014 Jul 19
1
patch about mingwbuild 4.9.1
...ich lead build fail.so I add a simple path to src/gnuwin32/Makefile: Index: Makefile =================================================================== --- Makefile(版本 66200) +++ Makefile(工作副本) @@ -148,7 +148,7 @@  ifeq "$(WIN)" "64"  R.dll: $(OBJS) $(OBJS-EXTRA) $(MAINLIBS) $(EXTRALIBS) dllversion.o  @$(ECHO) EXPORTS > R.def -@$(NM) $^ | $(SED) -n  $(SYMPAT) | LC_COLLATE=C $(SORT) | uniq > R0.def +@$(NM) $^ | $(SED) -n  $(SYMPAT) | LC_COLLATE=C $(SORT) | uniq |$(SED) '/.refptr./d' > R0.def  @$(SED) -e's/@.*//' Rdll.hide | LC_COLLATE=C $(SORT) > R1.def...
2004 May 12
0
RE: ROracle package error - Solution
...ion to this one! David James wrote: > The workaround in the README.Oracle9 files is intended for the symbol > sqlda (I think), but the sqlctx symbol apparently is defined in > -lclntsh. > So, could you try the following? R CMD INSTALL --configure-args='--enable-oracle32 --enable-extralibs="-lsqlplus -lclntsh"' ROracle_0.5-4.tar.gz Regards, Joan -----Original Message----- From: Joan Snodgrass [mailto:joans at breastcenter.tmc.edu] Sent: Tuesday, May 11, 2004 10:54 AM To: 'r-help at stat.math.ethz.ch' Subject: ROracle package error I am running R 1.8.1 on a...
2010 Mar 09
2
[LLVMdev] Changed: Build errors for poolalloc using MinGW/gcc 4.4.0
...=============================== --- tools/opt/Makefile (revision 97995) +++ tools/opt/Makefile (working copy) @@ -12,3 +12,8 @@ LINK_COMPONENTS := bitreader bitwriter asmparser instrumentation scalaropts ipo include $(LEVEL)/Makefile.common + +CPP.Flags += -I../../projects/poolalloc/include + +ExtraLibs := ../../projects/poolalloc/$(BuildMode)/lib/libpoolalloc.a \ + ../../projects/poolalloc/$(BuildMode)/lib/libLLVMDataStructure.a On Tue, Mar 9, 2010 at 11:13 AM, John Criswell <criswell at uiuc.edu> wrote: > Dear Patrick and Antron, > > I've modified the Makefiles in the...
2009 Jan 24
2
Including New Library
Hi, I am trying to include new library into wine. But was unable to do it. I tried the following in user32/Makefile.in > EXTRALIBS=`pkg-config --libs libwnck-1.0` > EXTRAINCL=`pkg-config --cflags libwnck-1.0`[\quote] > > > Once i do a make it is showing an error like this: > > > /usr/bin/ld: skipping incompatible /usr/lib/gcc/x86_64-linux-gnu/4.3.2/../../../libwnck-1.so when searching for -lwnck-1 >...
2004 May 24
1
ROracle on RHEL 3 x86_64
...d and run both R-1.8.1 and R-1.9.0 (tried ROracle on both installations). I am using DBI 1.8 and ROracle 0.5-4. I have used both the default Redhat installed gcc 3.2.3 and gcc 3.4. I am able to compile ROracle successfully with the following command: R CMD INSTALL --configure-args='--enable-extralibs="-lsqlplus"' ROracle_0.5-4.tar.gz When I run R, I get a Segmentation fault after the dbConnect call: > library('ROracle') > ora <- Oracle() > con <- dbConnect(ora, "username/password at database") Segmentation fault (core dumped) Has anyone run int...
2005 Jan 21
2
[LLVMdev] making cygwin nightly builds available?
...script, fix makefile (gcc throws error, if get -I without any path), fix several config bugs (rand48, some in libstdc++). 6. Add stubs for functions in the debugger support library (fork, waitpid, etc.). I have implementation for some of that functions, but not for all. 7. Add -lpsapi -limagehlp to ExtraLibs to all tools' makefiles. .... \infty [Some dummy things, I've forgotten] As result: mingw port seems don't work now, but can in the nearest future. I have patches for some problems I've listed, but I need to sync them with the latest cvs snapshot. I'll send them, when I will...
2012 Feb 14
2
R CMD SHLIB in Windows XP - No output at all
...quot; -f "C:/Trading/R/R-2.14.1/share/make/winshlib.mk" SHLIB= OBJECTS= So I had a closer look at these two files, and found some strange things in Makeconf, for example a variable LOCAL_SOFT with a d: path which has nothing to do with my configuration : LOCAL_SOFT = d:/RCompile/CRANpkg/extralibs/local Ok, the thing is, my Makeconf is strange, but when I actually use the """ make -f "C:/Trading/R/R-2.14.1/etc/i386/Makeconf" -f "C:/Trading/R/R-2.14.1/share/make/winshlib.mk" SHLIB= OBJECTS= """ directly in the command prompt, it works mor...
2010 Apr 18
0
[LLVMdev] .so file creation for new passes
Thanks a lot for the reply guys. So, does that mean that I cant write my own passes if I work on Windows side of the LLVM? Is there any other way to use a new pass. How are windows users supposed to work? Thanks again. On Sun, Apr 18, 2010 at 7:16 AM, Anton Korobeynikov <anton at korobeynikov.info > wrote: > > If you compile llvm, the Hello library will be compiled too. It's
2011 Apr 20
3
useDynLib in older versions e.g. (2.10)
Hi, Has something changed regarding the useDynLib in the NAMESPACE file in packages? I've written a package that works in e.g. 2.12/2.13 but simply cannot find the dynamic library under windows. The version on CRAN is older than the one I'm talking about and depends on a newer version of R but I want to make the package available to people with older versions. >
2010 Apr 18
2
[LLVMdev] .so file creation for new passes
> If you compile llvm, the Hello library will be compiled too. It's not > installed but it's in build_directory/Debug/lib/LLVMHello.so (or in > build_directory/Release/lib/LLVMHello.so) Loadable passes are not supported on windows due to lack of OS dynamic linking support (and I doubt they will be supported ever). -- With best regards, Anton Korobeynikov Faculty of Mathematics
2010 Mar 14
0
[LLVMdev] Changed: Build errors for poolalloc using MinGW/gcc 4.4.0
.../opt/Makefile (revision 97995) > +++ tools/opt/Makefile (working copy) > @@ -12,3 +12,8 @@ > LINK_COMPONENTS := bitreader bitwriter asmparser instrumentation scalaropts ipo > > include $(LEVEL)/Makefile.common > + > +CPP.Flags += -I../../projects/poolalloc/include > + > +ExtraLibs := ../../projects/poolalloc/$(BuildMode)/lib/libpoolalloc.a \ > + ../../projects/poolalloc/$(BuildMode)/lib/libLLVMDataStructure.a > > > On Tue, Mar 9, 2010 at 11:13 AM, John Criswell <criswell at uiuc.edu> wrote: > > Dear Patrick and Antron, > > > > I've...
2006 Jul 10
3
compile will not link from elf64-x86-64 to elf32-i386
first off im running on an AMD64 3800+, Ubuntu 6.06, 2.6.15-25-amd64-generic ive been working on getting this thing to work for the past few hours, setup symbolic links like in the howto run wine on amd64 tutorial, plus some. and started compiling, make depend went well, and so was make all until this happened make[2]: Entering directory `/home/anolis/Desktop/wine-0.9.16/dlls/gdi'
2004 Jul 14
3
ROracle - fetch gives empty dataframe
Dear R-users, I was able to make ROracle package to connect to the DB (Oracle91, 64bit, on Solaris). But after executing siple SQL query, "fetch" commaned gives me an empty dataframe. ### RORACLE INSTALATION PROCEDURE ### R CMD INSTALL --configure-args='--enable-extralibs' --enable-oracle32=no ~/tmp/ROracle_0.5-5.tar.gz #since we have 64bit Oracle9i instalation PROBLEM: after executing simple statement, from within R, "fetch" function gives me the empty dataframe: ### CONNECTION, and SQL QUERY EXECUTION > ora <- dbDriver("Oracle"...
2005 Aug 23
1
ROracle installation problem
Hi there, I am trying to install ROracle but I get this error. I have an error in reconcilePropertiesAndPrototype. (My LD_LIBRARY_PATH is set with the oracle lib) Thanks, Mathieu # R CMD INSTALL --configure-args='--enable-extralibs' ../ROracle_0.5-5.tar.gz * Installing *source* package 'ROracle' ... creating cache ./config.cache checking how to run the C preprocessor... cc -E updating cache ./config.cache creating ./config.status creating src/Makevars creating src/Makefile ** libs R CMD COMPILE RS-DBI.c make[1]:...
2010 Mar 09
0
[LLVMdev] Changed: Build errors for poolalloc using MinGW/gcc 4.4.0
Dear Patrick and Antron, I've modified the Makefiles in the poolalloc module so that they do not build shared libraries on MingW or Cygwin. Patrick, if you do an "svn up" you should be able to compile the poolalloc project now. -- John T.
2007 Mar 19
3
Error while compiling in Ubuntu 6.06 64 bit
When compiling in Ubuntu 6.06 64 bit using this guide: http://wiki.winehq.org/WineOn64bit When I do 'sudo make install' I get this error: make[2]: Entering directory `/home/marcus/wine/dlls/gdi' ../../tools/winegcc/winegcc -B../../tools/winebuild -shared ./gdi32.spec dispdib.spec.o gdi.exe.spec.o wing.spec.o bidi16.o dispdib.o env.o gdi16.o metafile16.o wing.o bidi.o bitblt.o
2010 Mar 14
0
[LLVMdev] Changed: Build errors for poolalloc using MinGW/gcc 4.4.0
...tools/opt/Makefile (working copy) >> @@ -12,3 +12,8 @@ >> LINK_COMPONENTS := bitreader bitwriter asmparser instrumentation >> scalaropts ipo >> >> include $(LEVEL)/Makefile.common >> + >> +CPP.Flags += -I../../projects/poolalloc/include >> + >> +ExtraLibs := ../../projects/poolalloc/$(BuildMode)/lib/libpoolalloc.a \ >> + ../../projects/poolalloc/$(BuildMode)/lib/libLLVMDataStructure.a >> >> >> On Tue, Mar 9, 2010 at 11:13 AM, John Criswell <criswell at uiuc.edu> wrote: >> > Dear Patrick and Antron, >> &g...
2010 Mar 09
3
[LLVMdev] Changed: Build errors for poolalloc using MinGW/gcc 4.4.0
Anton Korobeynikov wrote: >> Thanks Bob and John for the response. I am having problems building >> poolalloc with my MinGW and gcc 4.4.0 setup. Running make in the poolalloc >> directory results in a bunch of "undefined reference to ..." link errors >> building Release/lib/LLVMDataStructure.dll. I looked at the command line for >> > Hrm... John, is
2004 Nov 23
0
ROracle: fetch return zero rows or empty dataset (a workaround!)
....xxx NOTE: This is just to rename the file temporarily d) Follow all the original steps to re-install your "ROracle" package. NOTE: For my system "WhiteBox Linux (Respin)" on x86 hardware with Oracle 10g and R.2.0, I used: R CMD INSTALL --configure-args='--enable-extralibs --with-oracle=10' ROracle_0.5-5.tar.gz NOTE: You should read the ROracle/inst/README* files if you have not. e) After ROracle is successfully installed, restore the sqlca.h file: cd /usr/include mv sqlca.h.xxx sqlca.h f) All done! Drop a note here for the others to share if your ROrac...
2004 Aug 06
2
Is the list alive?
And more importantly (for me) - Can I ask question about Shout.pm? <p>Anders Jensen System devel. Cybercity.dk, OSS projektet ---- <erno> hm. I've lost a machine.. literally _lost_. it responds to ping, it works completely, I just can't figure out where in my apartment it is. Sig. provided by www.bash.org --- >8 ---- List archives: http://www.xiph.org/archives/