Displaying 20 results from an estimated 10000 matches similar to: "[LLVMdev] llvm installation"
2013 Feb 10
2
[LLVMdev] llvm-installation
hello sir,
in llvm installation ./configure command worked properly but while
giving
make -j 4 command in ubuntu
everything got build properly but at last it showed error as
llvm[4]: Linking Debug+Asserts executable clang
collect2: ld terminated with signal 9 [Killed]
make[4]: *** [/home/manoj/Desktop/LLVM/
build/Debug+Asserts/bin/clang] Error 1
make[4]: Leaving directory
2013 Feb 10
0
[LLVMdev] llvm-installation
You should use make -j with a number lower than 4, it looks like you ran
out of memory when linking.
On 10 February 2013 15:41, Manoj C <manoj.chinthala at gmail.com> wrote:
> hello sir,
> in llvm installation ./configure command worked properly but while
> giving
> make -j 4 command in ubuntu
>
> everything got build properly but at last it showed error as
>
>
2013 Feb 10
2
[LLVMdev] llvm installation
hello sir,
i am using llvm compiler for my project.i an doing llvm
installation.i followed all the steps in the llvm website but after running
this command
../llvm/configure --enable-targets=host-only it executed but it didnt
create any make file in build directory ,only config.log file is appeared
after running this command.
after running the later command it is showing like this
2013 Feb 10
0
[LLVMdev] llvm installation
configure:12131: $? = 0
configure:12145: result: yes
configure:12157: checking tool compatibility
configure:12180: error: g++|clang++|icc required but not found
configure can't find a c++ compiler. On Ubuntu, please install g++ (sudo
apt-get install g++).
This error should have been written to your console when you ran configure.
On Sun, Feb 10, 2013 at 8:35 AM, Manoj C
2013 Feb 10
0
[LLVMdev] llvm installation
Hi
If the make file wasn't created it is very likely that the configuration
stage failed.
Take a look at the contents of config.log to see where configure failed.
You could also post ( as an attachment ) the config.log file for others to
look at.
Thanks,
Dan.
On 10 Feb 2013 12:28, "Manoj C" <manoj.chinthala at gmail.com> wrote:
> hello sir,
> i am using
2013 Feb 10
0
[LLVMdev] llvm installation
Sorry currently on my phone so it is hard to read the config.log but at
glance I see errors about not being able to find g++ ( the GNU c++ compiler)
Have you installed g++?
Thanks,
Dan
On 10 Feb 2013 13:46, "Manoj C" <manoj.chinthala at gmail.com> wrote:
> hello sir,
> i am using llvm compiler for my project.i an doing llvm
> installation.i followed all the
2013 Feb 11
0
[LLVMdev] llvm pass
---------- Forwarded message ----------
From: Manoj C <manoj.chinthala at gmail.com>
Date: Mon, Feb 11, 2013 at 11:05 AM
Subject: llvm pass
To: llvmdev at cs.uiuc.edu
hello sir,
i build llvm-clang successfully in my pc but while running a pass i am
geetting this error
praveen at ubuntu:~/Desktop/LLVM/
build/Release$ opt -load /lib/LLVMHello.so --help
Error opening
2013 Feb 11
1
[LLVMdev] llvm-installation
hello sir,
./configure worked properly but while giving
make -j 2 command in ubuntu
everything got build properly but at last it showed error as
llvm[4]: Linking Debug+Asserts executable clang
collect2: ld terminated with signal 9 [Killed]
make[4]: *** [/home/manoj/Desktop/LLVM/
build/Debug+Asserts/bin/clang] Error 1
make[4]: Leaving directory
2013 Feb 11
2
[LLVMdev] Emulating an infinite register file in the backend
Hi Justin and all,
you've mentioned that you used an easy "trick" for defining an
infinite register file in the backend.
Does this involve defining a single dummy register, and then adding
this dummy reg to each register class? Is anything more needed? I
refer to the RegisterInfo.td file, as e.g:
llvm-3.0.src/lib/Target/PTX/PTXRegisterInfo.td
I'm (just starting)
2013 Feb 11
1
[LLVMdev] llvm
hello sir,
./configure worked properly but while giving
make -j 2 command in ubuntu
everything got build properly but at last it showed error as
llvm[4]: Linking Debug+Asserts executable clang
collect2: ld terminated with signal 9 [Killed]
make[4]: *** [/home/manoj/Desktop/LLVM/build/Debug+Asserts/bin/clang] Error
1
make[4]: Leaving directory `/home/manoj/Desktop/LLVM/
2013 Feb 11
2
[LLVMdev] llvm pass
hello sir,
i build llvm-clang successfully in my pc but while running a pass i am
geetting this error
praveen at ubuntu:~/Desktop/LLVM/
build/Release$ opt -load /lib/LLVMHello.so --help
Error opening '/lib/LLVMHello.so': /lib/LLVMHello.so: cannot open shared
object file: No such file or directory
-load request ignored.
please help me to overcome the error.
-------------- next part
2013 Jan 21
2
[LLVMdev] request
sir,
i am in a need of llvm compiler but i do not know how to install
it. can you please help me by providing installation steps.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130121/1a00db9d/attachment.html>
2008 Apr 21
1
Compile libtheora 1.0beta3 with VS2005
Hi all,
I tried to compile the theora source with VS2005. But it asked for the ogg
library. error message is as follow.
****************************************************************************
Error 1 fatal error C1083: Cannot open include file: 'ogg/ogg.h': No
such file or directory c:\Documents and
Settings\Manoj\Desktop\libtheora-1.0beta3\include\theora\codec.h
64
Error
2013 Jan 30
2
[LLVMdev] llvm compiler
hello sir,
i compiled simple c program for printing hello world using clang front
end it generates .s file successfully but while generating bit code it is
showing error as
llvm-as: test.s:5:17: error: expected 'global' or 'constant'
@.str = private unnamed_addr constant [12 x i8] c"hello world\00"
how to fix this error?
the .s file is in assembly language(not
2011 Dec 13
1
[LLVMdev] [PATCH] utils/unittest: Consistency of gtest and gtest_main libs.
$(llvm-config --libs | tr " " "\n" | grep gtest) returns:
-lgtest_main
-lgtest
instead of non-valid:
-lLLVMgtest_main
-lLLVMgtest
It also fixes:
$(ld): cannot find -lLLVMgtest
$(ld): cannot find -lLLVMgtest_main
---
unittests/Makefile.unittest | 2 +-
utils/llvm-build/llvmbuild/componentinfo.py | 4 ++--
utils/llvm-build/llvmbuild/main.py |
2015 Mar 09
2
[LLVMdev] Out of tree targets
Hey all,
Quick query on out of tree target support - at present I can drop a
folder Foo into <llvm>/lib/Target/Foo and use the CMake option
LLVM_EXPERIMENTAL_TARGETS_TO_BUILD to pick up my target. The issue is
that I still need to patch the one LLVMBuild.txt file in
<llvm>/lib/Target with;
|iff --git a/lib/Target/LLVMBuild.txt b/lib/Target/LLVMBuild.txt
index 4112046..6e42cbe
2015 Mar 09
2
[LLVMdev] Out of tree targets
I believe we'd need LLVMBuild.txt even in autoconf build - for bunch
of autogenerated stuff, e.g. list of all asmprinters / asmparsers /
InitializeAllTargetInfos, etc., since targets are not autoregistered
anymore.
On Mon, Mar 9, 2015 at 7:20 PM, Eric Christopher <echristo at gmail.com> wrote:
> Hi Neil,
>
> Weird, I'd think the cmake build should probably do something
2009 May 04
8
CentOS DomU on Opensolaris Dom0 - virt-install fails with error in virDomainCreateLinux()
Hi,
I am trying to install CentOS on an Opensolaris Dom0. virt-install fails
with an error in virDomainCreateLinux().
Is this a known issue? Am I missing some step?
manoj@mowgli:~$ uname -a
SunOS mowgli 5.11 snv_101b i86pc i386 i86xpv Solaris
manoj@mowgli:~$ pfexec virt-install
What is the name of your virtual machine? centos
How much RAM should be allocated (in megabytes)? 512
What would
2013 Jan 21
0
[LLVMdev] Embed LLVM/Clang in our project
On 1/21/2013 10:25 AM, Ashok Nalkund wrote:
> On 1/21/2013 2:01 AM, Óscar Fuentes wrote:
>> Ashok Nalkund <ashoknn at qti.qualcomm.com> writes:
>>
>>> I was using the find_package(LLVM llvm/share/llvm/cmake) and
>>> llvm_map_components_to_libraries(REQ_LLVM_LIBRARIES jit native) to get
>>> the libraries to link against. This works well for the
2013 Oct 31
2
[LLVMdev] Why does cmake use LLVMBuild.txt to specify the LLVM-libs link order?
Hi,
I've been working on a set of patches to statically link polly in the LLVM
tools. There remains an error I can't seem to solve when linking llvm-lto (all
other tools luckily get linked correctly): it insists adding libLLVMipo.a after
libLLVMPolly.a on the link command, resulting in an error of the form:
PassManagerBuilder.cpp:(.text+0x499): undefined reference to