Displaying 5 results from an estimated 5 matches for "_written_".
2003 Oct 26
2
[LLVMdev] redhat 9, compiling llvm-1.0.tar.gz
Hello Chris,
Sunday, October 26, 2003, 8:06:03 PM, you wrote:
CL> Makes sure that you have the C front-end installed correctly, and that
CL> the configure script found it (you have to provide the path to the C
CL> frontend to the configure script).
hm... why cross-dependency?.. I thought llvm itself doesn't use
cfront-end.
P.S. Chris, I guess you know, but to be sure: your
2015 Sep 08
2
Testing "normal" cross-compilers versus GPU backends
...>
> —
> Mehdi
Hmmm "default_triple" is certainly not an expectation or feature of any
target; rather, it is an expectation of certain tools when used in certain
ways (mainly: llc or llvm-mc without an explicit triple) and therefore it
is an expectation of how certain tests are _written_. This has little to
do with the _features_ verified by those tests.
In particular, configuring a GPU-only LLVM with a default triple for that
GPU will still fail all the same tests that Mehdi tripped over. Inventing
"default_triple" lets us trick the test suite into skipping the tests...
2003 Oct 26
0
[LLVMdev] redhat 9, compiling llvm-1.0.tar.gz
..... I thought llvm itself doesn't use
> cfront-end.
LLVM itself doesn't. The files that live in the llvm/runtime directory
are runtime libraries for the C/C++ front-end. If you're not using those
front-ends, then you don't need to build them.
In a cruel twist of fate, they are _WRITTEN_ in C/C++, hence the
dependency on the front-end. If you have no interest in these front-ends,
you can just change this line in the top-level Makefile:
DIRS = lib/Support utils lib tools runtime
to:
DIRS = lib/Support utils lib tools
Or, you can just use Bryan's "tools-only" targe...
2003 Oct 28
1
[LLVMdev] redhat 9, compiling llvm-1.0.tar.gz
...r INSTALL files.
(BTW, concerning compilation of cfrontend both `make bootstrap' and `make' fail while linkage phase, I guess I should have set some options to `configure' and/or some environment variables)
Sorry if I've missed some docs.
> In a cruel twist of fate, they are _WRITTEN_ in C/C++, hence the
> dependency on the front-end. If you have no interest in these front-ends,
> you can just change this line in the top-level Makefile ...
as before, I am intrested mostly in JIT and abilities to use it to other languages then C/C++ :)
> > P.S. Chris, I guess you...
2015 Sep 08
3
Testing "normal" cross-compilers versus GPU backends
On 09/04/2015 10:25 AM, Robinson, Paul via llvm-dev wrote:
>
>> -----Original Message-----
>> From: James Y Knight [mailto:jyknight at google.com]
>> Sent: Friday, September 04, 2015 10:12 AM
>> To: Mehdi Amini; Mehdi Amini via llvm-dev
>> Cc: Robinson, Paul
>> Subject: Re: [llvm-dev] Testing "normal" cross-compilers versus GPU
>> backends