similar to: [LLVMdev] Native Static Compilers Compatible with LLVM

Displaying 20 results from an estimated 7000 matches similar to: "[LLVMdev] Native Static Compilers Compatible with LLVM"

2009 Apr 09
0
[LLVMdev] Native Static Compilers Compatible with LLVM
On Wed, Apr 8, 2009 at 5:50 PM, Bot Tiger <bottiger1 at gmail.com> wrote: > Is there anything else besides GNU or any other targets in the future? > > My goal is to be able to not have all the binaries coming out to be GPL.. You do know that the GNU tools don't cause their output to be GPL'ed, right? http://www.gnu.org/licenses/gpl-faq.html#CanIUseGPLToolsForNF and
2009 Apr 09
1
[LLVMdev] Native Static Compilers Compatible with LLVM
Hello Jeffery, Thank you for the information, but I was already aware of this. I still have many concerns about GCC from the links you sent yourself: >"A file is an "Independent Module" if it either requires the Runtime Library for execution after a Compilation >Process, or makes use of an interface provided by the Runtime Library, but is not otherwise based on the >
2009 Apr 08
2
[LLVMdev] Native Static Compilers Compatible with LLVM
Hello, I have looked around the LLVM documentation, and tried to experiment with static compilation. So far It appears as though the assembly file is only compatible with GCC. When I use llvm-ld it also appears to use GCC. Is there any other assembler or compiler that can statically compile LLVM output? Thank you. -------------- next part -------------- An HTML attachment was scrubbed... URL:
2009 Apr 09
1
[LLVMdev] Native Static Compilers Compatible with LLVM
> o.O How is that going to help your problem? (Note: LLVM can generate C code.) > -bw It will help because I can generate C code that isn't tied to GCC (which LLVM does not do from my tests so far).
2009 Apr 08
0
[LLVMdev] Native Static Compilers Compatible with LLVM
If you're generating a .s file for X86, you can specify the flavor of assembly language on the command line like this: llvm-gcc ... -mllvm -x86-asm-syntax=[att|intel] Here's the relevant lines in the llc -help: ... -x86-asm-syntax - Choose style of code to emit from X86 backend: =att - Emit AT&T-style assembly =intel
2009 Apr 08
2
[LLVMdev] Native Static Compilers Compatible with LLVM
I've tried compiling with tinycc, and assembling with yasm, and fasm even with intel syntax. I'm just wondering what available compilers and assemblers there are without trying every one of them. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090408/b779a781/attachment.html>
2009 Apr 08
0
[LLVMdev] Native Static Compilers Compatible with LLVM
> I've tried compiling with tinycc, and assembling with yasm, and fasm even > with intel syntax. I'm just wondering what available compilers and > assemblers there are without trying every one of them. gas -- With best regards, Anton Korobeynikov Faculty of Mathematics and Mechanics, Saint Petersburg State University
2006 Apr 18
1
Embedding, core dumps, etc.
Well, nothing has changed in the issues that I brought up earlier, except that I can confirm core dumps in non-threaded lisps as well (CLISP), using svn version 37840 (this morning, Seattle time) for R-2-3-patches. I've not tried Thomas' suggested fixes, as I'm hesistant to go down the road of fixing R in such a way that would require constant patching. (so for those counting,
2009 Apr 07
2
[LLVMdev] Compiling questions
Hello. Is there a way to output native assembly from llvm-ld to FASM? Also when I tried to compile C code generated by llc with TCC, it complained about not having the alloca.h header. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090406/c3243719/attachment.html>
2006 Mar 17
6
removing NA from a data frame
Hi, It appears that deal does not support missing values (NA), so I need to remove them (NAs) from my data frame. how do I do this? (I am very new to R, so a detailed step-by-step explanation with code samples would be nice). Some columns (variables) have quite a few NAs, so I would rather drop the whole column than sacrifice all the rows (observations) which have NA in that column. How do I
2012 May 29
2
Use variable inside Function for updating the matrix
Hi, Here i have a data frame like this, frame name is "dat" *NAME AGE ELIGIBLE* A 20 B 14 C 35 D 10 E 50 In this, i want to change the column '*ELIGIBLE*' status to '*YES*' If, AGE between 18 to 35 Which means that, i should get a put like
2004 Jun 11
4
Regression query
Hi I have a set of data with both quantitative and categorical predictors. After scaling of response variable, i looked for multicollinearity (VIF values) among the predictors and removed the predictors who were hinding some of the other significant predictors. I'm curious to know whether the predictors (who are not significant) while doing simple 'lm' will be involved in
2004 Jun 11
1
Regression query : steps for model building
Hi I have a set of data with both quantitative and categorical predictors. After scaling of response variable, i looked for multicollinearity (VIF values) among the predictors and removed the predictors who were hinding some of the other significant predictors. I'm curious to know whether the predictors (who are not significant) while doing simple 'lm' will be involved in
2009 Oct 06
2
trying to understand OSS, GPL, BSD & other licensing model for software distribution.
Hi all, We are busy developing some software (some is web based, others not) and I am having a bit of hard time understanding (or rather, choosing) a license model to work with, We will offer some free software (PHP based scripts, and even Windows based applications) and for this I'm sure the GPL, or even LGPL (for the network side?) will work fine. But, we also need to suppose these
2008 Jan 02
2
Java applets plugins for Mozilla Firefox
I'm trying to view some websites which require Java applets to be installed in the web browser - how do I install these please as I haven't found a simple/obvious way to do it with yum? Thanks, Andy
2005 Oct 21
2
Commercial license?
Hi there Is there a commercial license for using Rsync or the Rsync algorithm within a commercial product? I appreciate that Rsync as it stands is GNU and therefore it cannot be used in this way, but I thought that I would ask the list. I understand that it is open source, but we have an application that would benefit from something like Rsync and therefore thought we would ask the question. If
2014 Nov 27
2
Feature request: mixing `...` (three dots) with other formal arguments in S4 methods
Dear List, I'm currently investigating if the argument dispatch mechanism based on `...` could somehow be "generalized" to scenarios that involve `r` recipients located across `c` calling stack layers *and* combined with the S4 method mechanism (for those interested see
2007 Sep 24
2
[LLVMdev] RFC: Tail call optimization X86
On 24 Sep 2007, at 09:18, Evan Cheng wrote: > +; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 -stats -info- > output-file - | grep asm-printer | grep 9 > +; change preceeding line form ... | grep 8 to ..| grep 9 since > +; with new fastcc has std call semantics causing a stack adjustment > +; after the function call > > Not sure if I understand this. Can you illustrate
2003 Sep 16
2
Interfacing C++ , MysQL and R
Hello! After a presentation of some statistical analysis of process datas, (where the few R possibilities I was able to show made quite a big impression), I was asked if it was possible to program a statistical application which could be used directly by the end user. Such an application would include a userfriendly interface (developped in C++), a db , a core statistical program, standard
2006 Sep 07
2
ISSN for wiki
Hi, It would be nice if we can get ISSN for wiki.centos.org. Any plans? I know assigning ISSN for blogs is being held now. If we have ISSN it might help to get more people to contribute. Just the hint. David