Displaying 20 results from an estimated 30000 matches similar to: "[LLVMdev] llvm3.0 compile problem"
2012 Sep 22
2
[LLVMdev] Typedef struct types
Hi All,
I was searching for, extracting information about 'typedefed struct types' from 'module'.
I have 'struct' typedefed in a .h file. I try to use this structure instance inside a function.
My .ll file rightly defines this type in the beginning so that it can be used later. (for example below)
%struct.DEBLOCK_UNIT = type { i8*, i8*, i8*, i8, i32, i32,
2012 Sep 22
0
[LLVMdev] Typedef struct types
Hi Pankaj, you may find include/llvm/TypeFinder.h useful.
Ciao, Duncan.
On 22/09/12 16:26, Pankaj Gode wrote:
> Hi All,
> I was searching for, extracting information about 'typedefed struct types' from
> 'module'.
> I have 'struct' typedefed in a .h file. I try to use this structure instance
> inside a function.
> My .ll file rightly defines this type in
2011 Sep 17
0
[LLVMdev] Build errors on r139985
Hi,
I get build errors when trying to build a fresh r139985.
Anyone got a clue?
carl at carl:~/Downloads/llvm3.0/llvm$ gcc --version
gcc (Ubuntu/Linaro 4.5.2-8ubuntu4) 4.5.2
Copyright (C) 2010 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
carl at
2011 Jul 11
3
[LLVMdev] Cross-compile to ARM using Code Sourcery Lite Toolchain
Hello
I am new to LLVM and would like to cross-compile LLVM 2.9 on x86
(Ubuntu) to ARM using Code Sourcery LIte toolchain for ARM EABI
(2011.03-41).
This is the command I used to configure:
./configure --build=i686-pc-linux-gnu --host=arm-none-linux-gnueabi
--target=arm-none-linux-gnueabi
followed by:
make -C llvm.2.9 ENABLE_OPTIMIZED=0
I encountered the following errors:
configure:error:
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
2012 Jan 26
2
[LLVMdev] llvm3.0 => build failure under Linux MIPS & MIPSEL
Hello,
In order to have llvm-3.0 into Debian Wheezy, I have to fix a last build
failure under MIPS & MIPSEL.
The full mipsel build log is available here:
https://buildd.debian.org/status/fetch.php?pkg=llvm-3.0&arch=mipsel&ver=3.0-5&stamp=1324350511
[1]
The error is the following:
/build/buildd-llvm-3.0_3.0-5-mipsel-jV6EnH/llvm-3.0-3.0/build-llvm/Release/bin/llvm-tblgen -I
2012 Jan 26
0
[LLVMdev] llvm3.0 => build failure under Linux MIPS & MIPSEL
Hello Sylvestre
> In order to have llvm-3.0 into Debian Wheezy, I have to fix a last build
> failure under MIPS & MIPSEL.
What if you provide -O0 to the compiler?
--
With best regards, Anton Korobeynikov
Faculty of Mathematics and Mechanics, Saint Petersburg State University
2011 Nov 05
1
[LLVMdev] LLVM and CLANG Build question
I had llvm 2.9 installed on ununtu. I tried to build clang but got following error. I have llvm 2.9 and clang is latest version ( I don't know, I got from svn). I am wondering is it because of version problem ?
Does clang work with 2.9 llvm ?
llvm[3]: Compiling ClangASTNodesEmitter.cpp for Debug build
In file included from
2011 May 16
0
[LLVMdev] Fail when building llvm2.9 using MinGW64
Chen, see http://llvm.org/docs/GettingStarted.html#pf_12
...Takumi
ps. Excuse me, PE+ (aka pep) means "Executable file format for WIndows x64".
2011/5/16 陈晓宇 <xychen0921 at gmail.com>:
> The stack trace:
>
> Starting program:
> C:\MinGW\msys\1.0\home\xchen\llvm-obj\lib\Target\CellSPU/../..
> /../Debug/bin/tblgen.exe -I
2012 Jun 18
0
[LLVMdev] Problem compiling llvm-gcc (needed for KLEE)
Hi,
I'm having problems compiling
llvm-gcc-4.2-2.9 (from [1]). I need to use this version because I am
trying to use KLEE (see [3]) which needs these versions.
I am compiling on Arch Linux using gcc (GCC) 4.7.0 20120505 (prerelease)
the output of `gcc -v` can be found at http://pastebin.com/8j2m3wzD
I have tried the following
1. Extracted llvm-2.9 (from [2])
2. Applied a patch (adds
2012 Apr 18
0
[LLVMdev] Issue with GetElementPtrInst in Instruction Combining pass
Hi All,
Further exploring the problem I could find that, there is a address offset calculation problem, with the GEP bitcast handling code in instruction combining.
Below is table which shows address offset calculation for the struct elements (described earlier).
Type Variable Actual Size(in bytes) pass fail llvm2.9
Address(pass) Size-pass (in bytes) Address (fail) Size -fail (in bytes) with
2004 Oct 12
0
[LLVMdev] GenRegisterInfo.h.inc
On Tue, 12 Oct 2004, Paolo Invernizzi wrote:
> Hi all,
> I cannot figure out why is named GenRegisterInfo.h.inc and not
> GenRegisterInfo.inc ...
> Is it for a dependency problem?
I'm not sure what you're saying here. In the X86 backend, for example, we
generate both X86GenRegisterInfo.h.inc and X86GenRegisterInfo.inc. The
former is #included into X86RegisterInfo.h and the
2012 Nov 18
1
[LLVMdev] Basic Block Frequency counting in LLVM 2.9
Dear All,
I'm using LLVM2.9 for profiling basic block frequency.
I'm using following commands.
rdpatel55 at ubuntu:~$ llvm-gcc -emit-llvm -O0 -c -o adpcm.bc adpcm.c
rdpatel55 at ubuntu:~$ llvm-gcc -emit-llvm -O0 -c -o rawcaudio.bc rawcaudio.c
rdpatel55 at ubuntu:~$ llvm-link -o main.bc rawcaudio.bc adpcm.bc
rdpatel55 at ubuntu:~$ opt -q -f -insert-edge-profiling -o main.inst main.bc
2012 Nov 21
2
[LLVMdev] llvm-config --cxxflags is not consistent when building by cmake.
Hi,
We found `llvm-config --cxxflags' does not have -fno-exceptions -fno-rtti
when using cmake to build LLVM.
Does anyone know how to fix it?
Best regards,
Luba
---------- Forwarded message ----------
From: Luba Tang <lubatang at gmail.com>
Date: 2012/11/21
Subject: Re: [MCLinker] Re: Major release - MCLinker 2.0.0 - RockBull
To: mclinker at googlegroups.com
Hi,
We make sure the
2017 Sep 30
2
compile webkit
I am trying to compile webkitgtk
I downloaded the webkit source, extracted
CMake Error at Source/cmake/OptionsGTK.cmake:12 (message):
GCC 4.9.0 is required to build WebKitGTK+, use a newer GCC version or
clang
I downloaded 2.14.7 - just like CentOS 7.4 has, how can I be getting a GCC
error ?
My goal is to get the MediaSource package in webkit working. It seems to
not be enabled.
Is there a
2011 May 13
4
[LLVMdev] Fail when building llvm2.9 using MinGW64
I was building llvm2.9 using MinGW64 on windows, msys was 32 bit so I
specified --host option for a cross compiling. Following are my configure
options:
../llvm2.9/configure --prefix=/home/AutoESL/llvm-obj
--host=x86_64-w64-mingw32
--disable-multilib
The error:
make[1]: Entering directory `/home/AutoESL/llvm-obj/lib/VMCore'
make[1]: ***
2011 Jun 07
1
[LLVMdev] a problem of jit debug
the reason I built llvm with vc is that I am familiar with vc. At
first i also thing that build llvm with MingW will solve this problem.
but after I read the source code
void JITDebugRegisterer::RegisterFunction(const Function *F, DebugInfo &I) {
// TODO: Support non-ELF platforms.
if (!TM.getELFWriterInfo())
return;
......
}
I thing MinGW is helpless with debug jit on win.
2012 Mar 14
2
[LLVMdev] llvm-config --cxxflags does not give the result the configuration script wants?
> > Recently I think I found a bug in llvm's CMakeLists.(I use llvm 3.1svn
> and
> > Clang 3.1) I follow the normal way to try to compile an application that
> > utilize both clang and llvm: I ./autogen.sh it, ./configure it and make
> it.
> > But the make fails. At last I found out the failure is because that the
> > Makefile's CXXFLAGS does not contain
2012 Mar 14
0
[LLVMdev] llvm-config --cxxflags does not give the result the configuration script wants?
Jun-qi Deng <dengjunqi06323011 at gmail.com> writes:
>> Is it? In my experience, it isn't. Please show the relevant command
>> generated by your makefile and the associated error message(s).
>>
>
>> RTTI is an on/off option that changes per LLVM library, so setting
>> -fno-rtti for using LLVM makes no sense. VMCore and Support have -frtti
>> while
2011 May 15
0
[LLVMdev] Fail when building llvm2.9 using MinGW64
Chen,
2011/5/13 陈晓宇 <xychen0921 at gmail.com>:
> ../llvm2.9/configure --prefix=/home/AutoESL/llvm-obj
> --host=x86_64-w64-mingw32
> --disable-multilib
Please try with "--build=x86_64-w64-mingw32", not "--host".
If you would still have any troubles, make sure your
x86_64-w64-g++.exe can generate correct