similar to: [LLVMdev] LLVM for ARM target

Displaying 20 results from an estimated 400 matches similar to: "[LLVMdev] LLVM for ARM target"

2010 Dec 29
0
[LLVMdev] LLVM for ARM target
On Dec 28, 2010, at 8:06 AM, akramul azim wrote: > hi everyone, > > I am new in LLVM. I am using this command to compile gcc or configure LLVM for the ARM target. > > $ ../llvm-gcc-4.8/ configure --target=arm-linux --program-prefix=arm- > arm- --prefix=$PWD/.. /install --disable-optimized --enable-bindings= none --enable-llvm=$PWD/../ llvm-2.8 --enable-languages=
2010 Dec 29
3
[LLVMdev] LLVM for ARM target
Hi,     I get the following error where the "make"(building) stops.   /MinGW/llvm/arm_objects/./gcc/xgcc -B/MinGW/llvm/arm_objects/./gcc/ -B/MinGW/llv m/arm_objects/../install/arm-linux/bin/ -B/MinGW/llvm/arm_objects/../install/arm -linux/lib/ -isystem /MinGW/llvm/arm_objects/../install/arm-linux/include -isyst em /MinGW/llvm/arm_objects/../install/arm-linux/sys-include  -O2 -O2 -g -O2 
2011 Jan 02
0
[LLVMdev] LLVM for ARM target
On Jan 1, 2011, at 8:29 PM, akramul azim wrote: > Hi, > I am planning to follow the steps to install LLVM for the ARM-target (Processor: Xscale, Architecture: armv5te): > > 1. Install binutils-2.21 (downloaded from gnu.org) > > Steps: > > $ ./configure --target=arm-unknown-linux-gnueabi --program-prefix=arm- --prefix > =/llvm/arm
2011 Jan 02
3
[LLVMdev] LLVM for ARM target
Hi,     I am planning to follow the steps to install LLVM for the ARM-target (Processor: Xscale, Architecture: armv5te):   1. Install binutils-2.21 (downloaded from gnu.org)   Steps:   $ ./configure --target=arm-unknown-linux-gnueabi --program-prefix=arm- --prefix =/llvm/arm --with-sysroot=/llvm/arms/sys-root   $ make   $ make install   2. Install LLVM   Steps   $ ../llvm-src/configure
2011 Jan 02
2
[LLVMdev] LLVM for ARM target
Sorry I used --enable-pic, not --enable-pics. It was a typo. Akramul --- On Sun, 2/1/11, akramul azim <bijoy123_8 at yahoo.com> wrote: From: akramul azim <bijoy123_8 at yahoo.com> Subject: Re: [LLVMdev] LLVM for ARM target To: "Bill Wendling" <wendling at apple.com> Cc: "Anton Korobeynikov" <anton at korobeynikov.info>, llvmdev at cs.uiuc.edu Date:
2011 Jan 02
0
[LLVMdev] LLVM for ARM target
Sorry again, my bad. I actually was using --enable-pics instead of --enable-pic. Now LLVM is being compiled. Hope the last phase llvm-gcc compilation would be a success. Thanks a lot. Akramul --- On Sun, 2/1/11, akramul azim <bijoy123_8 at yahoo.com> wrote: From: akramul azim <bijoy123_8 at yahoo.com> Subject: Re: [LLVMdev] LLVM for ARM target To: "Bill Wendling"
2010 Dec 30
0
[LLVMdev] LLVM for ARM target
Hello >           -c ../../llvm-gcc-4.8/gcc/crtstuff.c -DCRT_BEGIN \ >           -o crtbegin.o > C:/MinGW/llvm/arm_objects/gcc/as: line 2: exec: -o: invalid option You don't have cross ARM binutils installed. -- With best regards, Anton Korobeynikov Faculty of Mathematics and Mechanics, Saint Petersburg State University
2011 Jan 08
2
[LLVMdev] LLVM-GCC build failed
Hi      I am using LLVM and LLVM-GCC from SVN (version number: 122880). And I am using arm-2009q1-176-arm-none-linux-gnueabi-i686-mingw32.tar.bz2 or arm-2007q3-51-arm-none-linux-gnueabi-i686-pc-linux-gnu.tar.bz2. I tried the automated scripts (create-snapshots.sh and build-install-linux.sh) that are in the LLVM repository for building crosstoll for ARM
2010 Dec 22
2
[LLVMdev] LLVM installation in Windows
Did you specify "--program-prefix=llvm-" on your configure line? That's what tells the llvm-gcc build to use the llvm-* names for the executables. -Jim On Dec 21, 2010, at 7:27 PM, akramul azim wrote: > Thanks a lot both of you. Using --enable-bindings=none, I could build and install LLVM 2.8 and gcc-4.2-2.8 source. However, in the bin directory, I get c++.exe, cpp.exe,
2011 Jan 08
0
[LLVMdev] LLVM-GCC build failed
On Jan 8, 2011, at 8:04 AM, akramul azim wrote: > Hi > > I am using LLVM and LLVM-GCC from SVN (version number: 122880). And I am using arm-2009q1-176-arm-none-linux-gnueabi-i686-mingw32.tar.bz2 or arm-2007q3-51-arm-none-linux-gnueabi-i686-pc-linux-gnu.tar.bz2. I tried the automated scripts (create-snapshots.sh and build-install-linux.sh) that are in the LLVM repository for building
2010 Dec 23
0
[LLVMdev] LLVM installation in Windows
Thanks a lot. It worked !!! Akramul --- On Wed, 22/12/10, Jim Grosbach <grosbach at apple.com> wrote: From: Jim Grosbach <grosbach at apple.com> Subject: Re: [LLVMdev] LLVM installation in Windows To: "akramul azim" <bijoy123_8 at yahoo.com> Cc: "Óscar Fuentes" <ofv at wanadoo.es>, "Anton Korobeynikov" <anton at korobeynikov.info>,
2011 Jan 04
2
[LLVMdev] LLVM for ARM target
At the last step of building llvm for arm target, I am unable to build llvm-gcc. I am trying the follwing options:   $ ../llvm-gcc/configure --target=arm-linux --enable-pic --program-prefix=llvm- --prefix=/llvm/install --disable-multilib --disable-optimized --enable-bindings =none --enable-llvm=$PWD/../llvm-2.8 --enable-languages=c,c++ --disable-bootstr ap   Then I get the following error when I
2010 Dec 21
2
[LLVMdev] LLVM installation in Windows
> Possibly the OCaml bindings are broken on Windows/MinGW. Try building > with cmake instead of configure&make. The cmake build ignores the OCaml > bindings. One does not need to use cmake build to disable buildings :) It is possible to configure with --enable-bindings=none. Also, I'd suggest to use at least LLVM release 2.8, not 2.7 one. -- With best regards, Anton
2010 Dec 22
0
[LLVMdev] LLVM installation in Windows
Thanks a lot both of you. Using --enable-bindings=none, I could build and install LLVM 2.8 and gcc-4.2-2.8 source. However, in the bin directory, I get c++.exe, cpp.exe, gcc.exe, g++.exe instead of llvm-c++.exe, llvm-cpp.exe, llvm-gcc.exe, llvm-g++. Are they the same?  Akramul --- On Tue, 21/12/10, Anton Korobeynikov <anton at korobeynikov.info> wrote: From: Anton Korobeynikov <anton
2011 Jan 02
1
[LLVMdev] LLVM for ARM target
In the last step after building and installing binutils 2.21 for ARM and LLVM-src, I am trying to build LLVM-GCC. However, I get the repeated system config checking promt. I used the following configuration:   I created a directory called arm_objects and then I write:   $ ../llvm-gcc-4.2/configure --target=arm-linux --program-prefix=llvm- --prefix=/llv m/arm --enable-pic --disable-optimized
2011 Jan 05
2
[LLVMdev] LLVM for ARM target
Can you please tell me what should I do at this point? How to get the standard C library for ARM around? I also tried to build  http://llvm.org/svn/llvm-project/llvm/trunk/utils/crosstool/ in CYGWIN. However, my LLVM building was failed when I run the script. I am in dilemma what steps i should follow. Please help me. Thanks a lot Akramul --- On Tue, 4/1/11, Anton Korobeynikov <anton at
2011 Mar 08
1
[LLVMdev] Clang Static Analyzer
Hi,     I have installed Clang in Windows XP 32 bit using MinGW. I want to use the Clang Static Analyzer i.e., scan-build. Can anyone please guide me how to make scan-build executable for Windows and use it. Thanks, Akramul -------------- next part -------------- An HTML attachment was scrubbed... URL:
2011 Jan 05
0
[LLVMdev] LLVM for ARM target
> Can you please tell me what should I do at this point? How to get the standard C library for ARM around? The best thing is to grab some description how to build "normal" gcc for your target and make sure all the steps described there will be ok. After this you can substitute normal gcc with llvm-gcc and start the same scenario from scratch. I believe this is the best way how the
2011 Jan 04
0
[LLVMdev] LLVM for ARM target
> Can anyone please tell me the problem? It seems you don't have the standard C library for ARM around. -- With best regards, Anton Korobeynikov Faculty of Mathematics and Mechanics, Saint Petersburg State University
2010 Dec 21
2
[LLVMdev] LLVM installation in Windows
Hi everyone,                    I am new in this field. I am trying to install LLVM in my 32-bit Windows XP. Can anyone please give a to do list for installing LLVM in my machine. When trying to build LLVM, I get the following error:    llvm[3]: Compiling llvm_ocaml.c for Debug build In file included from D:\Program Files\Objective Caml\lib/caml/misc.h:24,                  from D:\Program