Displaying 20 results from an estimated 10000 matches similar to: "[LLVMdev] Cross building clang/LLVM for Linux/ARM on a Mac"
2016 Feb 17
2
Error cross building LLVM for MinGW
Hi,
I recently switched over to using cmake to build my clang/LLVM based
ELLCC cross development project (http://ellcc.org). I also recently
updated to LLVM svn version 258915 from 258477.
I use ELLCC to cross compile all the tools for various Linux targets and
for Windows. Yesterday, after updating the LLVM sources, I got the
following error when cross building for MinGW:
[ 3%] Built
2013 Dec 22
2
[LLVMdev] How do I disable --version-script when cross compiling clang/LLVM on a Mac?
On 12/21/2013 05:21 PM, Alp Toker wrote:
>
> On 21/12/2013 22:51, Richard Pennington wrote:
>> Hi,
>>
>> I asked this question a few days ago and didn't get any responses. I
>> thought I'd try again with a little more detail.
>>
>> I am trying to cross compile my clang/LLVM based ELLCC cross
>> development tools project (http://ellcc.org)
2015 Jan 12
2
[LLVMdev] RFC: Another go at a cross compiler config file.
Hi,
Did this make it into review / commit? It's probably too late for 3.6 if it didn't, but I'd love to see it in 3.7. It would also be nice if this support could be something a bit more general in LLVM, rather than specifically in clang, so that other llvm tools (e.g. llvm-objdump) could take advantage of a similar format for target description files if they need something more
2014 Sep 30
2
[LLVMdev] Can libc++ build for arm cross compiler?
Hi cschen,
Here are the test scripts which I written when I was developing ARM
exception handling support:
https://github.com/loganchien/libcxx-scripts
The script should work on Debian wheezy (cross-compiling from amd64 to
armhf.)
In general, here are the necessary steps:
1. Get a working arm-linux-gnueabihf gcc/g++ toolchain (for the headers and
libraries)
2. Setup the include search path
2014 Sep 06
5
[LLVMdev] RFC: Another go at a cross compiler config file.
A while back (2012) there were a few messages related to using YAML
config files to set up how clang would build stuff, especially for cross
compilers. My ELLCC project is entirely cross compilation focused, so
today I decided to play around with the config file idea. Right now it
only handles replacing a "-target foo" option with the options defined
in the file foo in the
2013 Dec 21
2
[LLVMdev] How do I disable --version-script when cross compiling clang/LLVM on a Mac?
Hi,
I asked this question a few days ago and didn't get any responses. I
thought I'd try again with a little more detail.
I am trying to cross compile my clang/LLVM based ELLCC cross development
tools project (http://ellcc.org) on a Mac. I am targeting ARM/Linux.
The build fails while building FileCheck (or tbl-gen or any of the other
build tools built during the
2011 Jan 17
3
[LLVMdev] clang/LLVM cross testing environment
Hi,
I've been working on combining LLVM, clang, the NetBSD standard C
library, compiler-rt, QEMU, GDB, and GNU binutils as a cross compilation
environment. My goal is to target small embedded systems, but I think
that what I'm working on may be of interest to other LLVM/clang
developers as I have been able to use the environment to fix several
code generation issues in LLVM.
As of
2011 Jul 12
0
[LLVMdev] Cross-compile to ARM using Code Sourcery Lite Toolchain
Hello,
(cc:llvmdev Keeping on the list to get more eyes on the problem and for archival purposes).
Configure will be re-run, yes. LLVM includes some tools which need to be built for the host, even when cross compiling (e.g., tblgen). In a cross-build, these are built in the BuiltTools directory and that's where you're seeing configure being re-run.
>From the below snippet it appears
2009 Aug 09
1
[LLVMdev] An interesting comparison.
[~/ellcc/test/source] main% cat printf.c
#include <stdio.h>
int main(int argc, char** argv)
{
printf("printf with the string \"%s\"\n", "my string");
}
[~/ellcc/test/source] main% ~/ellcc/ellcc/x86-elf-ecc printf.c
[~/ellcc/test/source] main% ./a.out
printf with the string "my string"
[~/ellcc/test/source] main% size a.out
text data bss
2015 Dec 19
4
Bootstrapping clang/LLVM with ELLCC
(Fixed the cfe email address)
On 12/18/2015 09:34 PM, Tim Northover wrote:
> On 18 December 2015 at 19:15, Richard Pennington via llvm-dev
> <llvm-dev at lists.llvm.org> wrote:
>> It turns out that it can with some simple patches.
> This sounds really cool. I think we should seriously consider putting
> these patches into LLVM mainline.
>
>> Information on
2014 Mar 17
2
[LLVMdev] cross-compiling current trunk fails
Hi,
cross-compiling LLVM on the ppc64 architecture fails with:
make[1]: *** No rule to make target
`../build/llvm-r204075/BuildTools/Debug+Asserts/bin/llvm-tblgen', needed
by `../build/llvm-r204075/lib/IR/Debug+Asserts/Intrinsics.gen.tmp'. Stop.
make[1]: *** Waiting for unfinished jobs....
this fails for me for
r204075 (today) and
r203443.
Configuration details:
$LLVMPATH/configure
2013 Oct 18
1
[LLVMdev] Using clang/LLVM to build Linux C++ programs with no gnu licensed libraries.
Today the clang/LLVM based ELLCC compiler (http://ellcc.org) was able to
compile an (almost) non-trivial C++ program for a bunch of LLVM
supported targets with no gnu licensed libraries.
http://ellcc.org/blog/?p=231
Next step: try to compile ELLCC with itself. :-)
-Rich
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2016 Oct 28
1
[cfe-dev] Using lld in ELLCC for different targets
Well, at least it works on some programs across all arches. That was some
great testing you've done for us. :-)
Thanks!
Renato
On 28 Oct 2016 23:51, "Richard Pennington" <rich at pennware.com> wrote:
> On 10/28/2016 05:27 PM, Renato Golin wrote:
>
>> On 28 October 2016 at 23:02, Rui Ueyama via llvm-dev
>> <llvm-dev at lists.llvm.org> wrote:
>>
2016 Feb 18
2
Error cross building LLVM for MinGW
On 02/17/2016 07:23 PM, Tony Kelman via llvm-dev wrote:
> Richard Pennington via llvm-dev <llvm-dev <at> lists.llvm.org> writes:
>
>> I use ELLCC to cross compile all the tools for various Linux targets and
>> for Windows. Yesterday, after updating the LLVM sources, I got the
>> following error when cross building for MinGW:
> I haven't seen this exact
2008 Jun 11
1
[LLVMdev] LLVM on OpenBSD
On Wed, Jun 11, 2008 at 11:49 AM, Gordon Henriksen
<gordonhenriksen at mac.com> wrote:
> Could you please update to r52213 or later in svn and check whether
> this error is resolved with your gcc?
Latest trunk fixes that error. Next problem :)
llvm[3]: Building ARM.td register information header with tblgen
llvm[3]: Building ARM.td register names with tblgen
llvm[3]: Building ARM.td
2008 Jun 11
0
[LLVMdev] Compiling llvm libraries to run on iPhone
On 11 Jun., 01:50, Robert Grapes <robert_gra... at hotmail.com> wrote:
> Hi,
>
> I was wondering whether anyone has managed to compile the LLVM libraries to run on iPhone?
>
> After compiling and installing the iPhone toolchain on MacBook running Leopard (10.5.2). I run configure
> In the llvm2.3 directory:
>
> ./configure –host=arm-apple-darwin
2014 Sep 29
2
[LLVMdev] LLVM Weekly - #39, Sep 29th 2014
LLVM Weekly - #39, Sep 29th 2014
================================
If you prefer, you can read a HTML version of this email at
<http://llvmweekly.org/issue/39>.
Welcome to the thirty-ninth issue of LLVM Weekly, a weekly newsletter
(published every Monday) covering developments in LLVM, Clang, and related
projects. LLVM Weekly is brought to you by [Alex
Bradbury](http://asbradbury.org).
2008 Jun 10
4
[LLVMdev] Compiling llvm libraries to run on iPhone
Hi,
I was wondering whether anyone has managed to compile the LLVM libraries to run on iPhone?
After compiling and installing the iPhone toolchain on MacBook running Leopard (10.5.2). I run configure
In the llvm2.3 directory:
./configure –host=arm-apple-darwin –target=arm-apple-darwin –enable-optimized –enable-targets=arm
I run make, including an override for TBLGEN (because I obviously
2013 Nov 27
0
[LLVMdev] Targeting ARM Cortex-a9 from x86_64 with clang
On 11/27/2013 07:57 AM, Rob Stewart wrote:
> On 26 November 2013 16:44, Renato Golin <renato.golin at linaro.org> wrote:
>> On 26 November 2013 15:36, Rob Stewart <robstewart57 at gmail.com> wrote:
>>> $ clang -v -target armv7a-linux-eabi -mcpu=cortex-a9 -mfloat-abi=soft
>>> -mfpu=neon helloworld.c
>> Hi Rod,
> I'm honoured. (But Rob is also OK)
2005 May 11
0
[LLVMdev] LLVM 1.5 Release Plan
Hello all,
John Criswell wrote on Wednesday, 11 May 2005:
> If other developers (especially those for platforms which we don't have
> here at UIUC) could test the release branch, we would be most
> appreciative. I will send out another email detailing when the release
> branch is finished and how to get it out of CVS.
I've just tried building CVS/HEAD of llvm using gcc 4.0.0