search for: complier

Displaying 20 results from an estimated 76 matches for "complier".

Did you mean: compiler
2002 Aug 24
3
link my own C library using Rcmd SHLIB
Hi All, I have already used gcc to creat a library, for example, it is called "test.a", which includes many c objects. How to link my main "a.c" function to this library when I used Rcmd SHLIB to complier my main c program? I tried "Rcmd SHLIB a.c test.a". It does not work this way. Does anyone have idea about this? Thanks, Xiaoping -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.ht...
2007 Jul 29
4
Call R program from C++ code
...rogram I have written. I' wondering if R provide some compiler that can compile R program into executable program. I searched R-help, there are a lot of posts talking about writing C++ code in R program, but few about calling R from C++. I might be wrong that R doesn't have complier. What I'm trying to do is to call R program from C++ code. Any help is highly appreciated! Best regards, Feng [[alternative HTML version deleted]]
2012 Aug 22
2
int operation
Gents, My TI C55xx complier is complaining about (in opus_encoder.c, opus_encode()): st->silk_mode.payloadSize_ms = 1000 * frame_size / st->Fs; where .payloadSize_ms is opus_int, frame_size is an int, and Fs is a long. Should one of these be cast differently? Thx, MikeH -------------- next part ------...
2006 Sep 24
2
s language version and complie languages
...R version use? Venables and Ripley's book (2000) says R is version 3 of S language. Is there any change since 2000 ? I searched R-help archive for using C or C++ with R. Although there are some postings, I am looking for up-to-date answers. Which one ( C and C++) works better with R? What complier is the best suited for R ( gcc or visual c++ or others)? Taka, _________________________________________________________________ The next generation of Search?say hello!
2009 Apr 04
4
[LLVMdev] Suggestion for VM porting to LLVM
...s quite well, better then some well know VMs. My idea now is to try to migrate the VM to LLVM to see if I can gain something in terms of speed and extensibility. I'm totally new to LLVM, but as far as I understood thare might be two ways to add LLVM to my project: - generate IR from my complier; - build a VM that converts at runtime my bytecode to IR and executes it; I largely prefer the second option because it would be great if I can continue to use to old programs without having to recompile them. Which approach do you suggest ? are there any alternatives ? Gabriele
2010 Feb 27
3
Oniguruma and Ultraviolet on Windows 7
...--with-opt-lib --without-opt-lib=${opt-dir}/lib --with-make-prog --without-make-prog --srcdir=. --curdir --ruby=C:/Ruby19/bin/ruby --with-oniglib --without-oniglib C:/Ruby19/lib/ruby/1.9.1/mkmf.rb:364:in `try_do'': The complier failed to generat e an executable file. (RuntimeError) You have to install development tools first. from C:/Ruby19/lib/ruby/1.9.1/mkmf.rb:417:in `try_link0'' from C:/Ruby19/lib/ruby/1.9.1/mkmf.rb:421:in `try_link'' from C:/Ruby19/lib/ruby/1.9.1/mkmf.rb:529:in...
2009 Apr 04
0
[LLVMdev] Suggestion for VM porting to LLVM
On Saturday 04 April 2009 09:20:21 Gabriele Farina wrote: > - generate IR from my complier; > - build a VM that converts at runtime my bytecode to IR and executes it; > > I largely prefer the second option because it would be great if I can > continue to use to old programs without having to recompile them. > > Which approach do you suggest ? are there any alternatives...
2009 Sep 15
1
[LLVMdev] Dear LLVM,
...the target architecture? ------------------ Original ------------------ From: "XU Xinfeng"<xu.xinfeng at gatech.edu>; Date: 2009年9月15日(星期二) 上午7:34 To: "llvmdev"<llvmdev at cs.uiuc.edu>; Subject: [LLVMdev] Dear LLVM, Dear LLVM, Now, I have to design special complier for my own multicore microprocessor with cusomized instruction-set and optimized architecture. After have read a lot of papers about LLVM--a retargettable compiler framework, I still can't catch it clearly how to make LLVM support my target. Would you please give me some necessary instruction...
2003 Jul 15
1
How to use fortrane compiler to install unix R???
Hi: I am a R beginner,and I had a problem about installing R on unix(Dec-Tru64 alpha) my system had been installed fortrane complier,and I also follow manual document to do following procedure. ./configure make make install but ,when I do 'make' there are something wrong,and 'make' procedure will be stopped,and also 'make install'. please help me to solve this problem.thanks. [[alternative HTML version...
2007 Dec 03
1
linking C/C++ external libraries.
...some C++ code using dyn.load but I'm getting unresolved symbols associated with some external libraries (CSparse). I gather this is something to do with linking as the the code compiles fine. However, I've passed -L/home/jarrod/My_Programs/SuiteSparse/CSparse/Lib -lcsparse to the complier (g++), either directly using R CMD SHLIB or as PKG_LIBS in a Makevars file, and I cannot resolve the problem. I'm working with R 2.6.0 on fedora 6 Any help would be appreciated. Thanks, Jarrod
2009 Apr 24
1
Can't install package "glmnet"
...glmnet The downloaded packages are in /tmp/RtmpwsLWSc/downloaded_packages Updating HTML index of packages in '.Library' Warning message: In install.packages("glmnet") : installation of package 'glmnet' had non-zero exit status It seems that it needs fortran 90 complier. What can I do to solve this problem? (I am not the administrator, only a user in the linux system). Thank you very much! Liang [[alternative HTML version deleted]]
2001 Aug 15
2
rsync building OK on HP-UX 11.00 and 11.11?
...ing to > build on HP-UX 11.00 and 11.11 (using HP's ansi C compiler) because of a > test you have for socklen_t; on HP-UX 11.00 and 11.11, socklen_t is not > defined in types.h, but instead is defined in socket.h > Result is that we get socklen_t defined in config.h, and then get a complier > error when it gets REdefined in socket.h I think this is now working OK on the CVS head. Please let me know if there's still a problem. -- Martin
2013 Mar 29
1
[LLVMdev] How to use the llvm::Linker?
...++filt, the function name is : llvm::Linker::LinkModules(llvm::Module*, llvm::Module*, unsigned int, std::basic_string<char, std::char_traits<char>, std::allocator<char> >*) So I think, may I should Modify the cmake, I want to know how to modify the files of cmake, so that i can complier the pass with Linker. Thank. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130329/59891356/attachment.html>
2019 Apr 12
2
Failed to replace stdlibc++ with libc++, linker phase error
...lt takes stdlibc++ to compile and link. And now we'd like to switch to use LLVM clang with libc++. I have built libc++ and libc++abi from source (5.0.1 release) and set up related flags to compile our code base, but it turned out having some issue in the "linker" phase: Flags set for complier: -stdlib=libc++ -std=c++14 Flags set for linker: -stdlib=libc++ Error: /opt/rh/devtoolset-7/root/usr/lib/gcc/x86_64-redhat-linux/7/../../../../bin/ld: product.o: undefined reference to symbol '__cxa_free_exception@@CXXABI_1.3' //lib64/libstdc++.so.6: error adding symbols: DSO missing from...
2010 Jun 02
1
C55xx Linking Error
...m getting several "undefined symbol" linking errors that do not make sense to me. According to the error message, these all appear to be part of mdct.obj. But looking at the code in mdct.c, there is no reference to "alloca". Nor have I defined "USE_ALLOCA" since the TI complier does not support it. Can anyone spot an error on my part, or is this yet another quirk of the CCS4 suite (there have been many). Here's a listing of the console error messages. undefined first referenced symbol in file --------- ---------------- _all...
2009 May 03
2
[LLVMdev] lli on ARM simulator
Hello, I am new to LLVM and complier development, am more comfortable with logic gates. However, I am part of a research project that intends to develop a co-designed virtual machine reconfigurable computing, the virtual machine controls a reconfigurable fabric in addition to a microprocessor. The microprocessor may be an ARM and...
2002 Mar 26
2
compling C code in R for Windows
...and .c files and find the equivalent of "Splus COMPILE". I've ran into lots of problems trying to do this in Windows so far, so please help! My questions are: - Do I need additional software (sometimes using Rcmd complains about not understanding what perl is), such as Perl or C complier? - Which directory do I need to put the files in, so that Rcmd can see them? Or do I copy the Rcmd.exe into the directory where my .c files are? If so, what other files do I need to copy? - Are there any references on how to do it in a simple way, and examples (online or printed)? and - How...
2017 Apr 06
1
failure of make check-all
...Here are lines 97-100 of tests/Makefile.common: .R.Rout: @rm -f $@ $@.fail $@.log @$(ECHO) $(ECHO_N) "running code in '$<' ...$(ECHO_C)" > $@.log @$(R) < $< > $@.fail 2>&1 || (cat $@.log && rm $@.log && exit 1) There is one complier warning message, it prints in pink so as not to miss it! main.c: In function ?dummy_ii?: main.c:1669:12: warning: function returns address of local variable [-Wreturn-local-addr] return (uintptr_t) &ii; ------------- So as to be more complete I did "cd tests; R" and source(&q...
2004 Jul 01
0
.Net & Mono language news: C, C++, C#, Java, Python & Perl
For those interested in experimenting with (compiling / developing) a version of R for the Common Language Runtime (CLR) environment (Microsoft .Net, Novell Ximan Mono & DotGNU) -- a few links to some "free" compliers: C DotGNU (the official GNU project) http://dotgnu.org/ http://www.southern-storm.com.au/pnet_faq.html#q1_7 FAQ "1.7. What is pnetC? Since version 0.4.4 of DotGNU Portable.NET, the cscc compiler has had support for compiling C programs. The companion libc implementation for the C compiler...
2010 Feb 20
3
MFC Code Compile Error
Dear Friend Need in Help I created using Application wizard vc++ 6.0 single document interface .... wineg++ -c -mno-cygwin -I. -I/home/khana/mvs6/VC98/mfc/include -I/home/khana/mvs6/VC98/include -o DemoMfc.o DemoMfc.cpp In file included from /home/khana/mvs6/VC98/include/windef.h:166, from /home/khana/mvs6/VC98/include/windows.h:163, from