Displaying 6 results from an estimated 6 matches for "elhigu".
2009 Sep 16
3
[LLVMdev] Fwd: [llvm-commits] [PATCH] Building llvm-gcc with llvm-2.5 debian packages
...ly with llvm trunk as well and
> show also the compile commands which were used to configure and
> compile the llvm-gcc.
>
Hi,
I tested the trunk and it seems to work as well. Below some information
about testing process. I also attached the latest version of the patch.
- Mikael
elhigu at mr-lenovo:~/stow_sources/llvm-svn$ ./configure
--prefix=/home/elhigu/stow_repo/test_install/
elhigu at mr-lenovo:~/stow_sources/llvm-svn$ make
elhigu at mr-lenovo:~/stow_sources/llvm-svn$ make install
...
elhigu at mr-lenovo:~/test_llvm_gcc_compilation/llvm-gcc-built-source-tree$
llvm-config...
2009 Sep 15
0
[LLVMdev] Fwd: [llvm-commits] [PATCH] Building llvm-gcc with llvm-2.5 debian packages
On 15.9.2009, at 12:11, Duncan Sands wrote:
> Hi Pekka,
>
>> To put it the another way: is there a reason to disallow
>> compiling llvm-gcc (optionally) against an installed LLVM (e.g.
>> from the Debian package)? It seems to work fine with this patch
>> Mikael posted.
>
> I think it would be great if llvm-gcc could be built against
> an installed LLVM.
2009 Sep 15
2
[LLVMdev] Fwd: [llvm-commits] [PATCH] Building llvm-gcc with llvm-2.5 debian packages
Hi Pekka,
> To put it the another way: is there a reason to disallow
> compiling llvm-gcc (optionally) against an installed LLVM (e.g.
> from the Debian package)? It seems to work fine with this patch
> Mikael posted.
I think it would be great if llvm-gcc could be built against
an installed LLVM. However my impression was that Mikael's
original patch would break building against
2009 Sep 03
0
[LLVMdev] Problem with generating Machine function analysis pass
....6. Somehow system does not know how to create analysis pass if
it's required by some other pass.
I got following after adding various debug prints to PassManager.cpp I
got following results for my reduced test program which just loads
module and then tries to make a function pass manager.
elhigu at mr-lenovo:~/temp$ g++ `llvm-config --cxxflags` -g -o test test.cc
`llvm-config --ldflags --libs`
elhigu at mr-lenovo:~/temp$ ./test
------------------- finding usage Target Data Layout
------------------- found usage
------------------- check analysis
--------Required set ----------
--------...
2009 Sep 14
2
[LLVMdev] Fwd: [llvm-commits] [PATCH] Building llvm-gcc with llvm-2.5 debian packages
...ch actually returns include directory of the source
> tree, so basically we are not asking for installed headers, but just
> any place where includes should be looked for.
>
> e.g. on my work computer i got following results for running lvm-
> config in source dirctory
>
> elhigu at mr-lenovo:~/stow_sources/llvm-svn$ Debug/bin/llvm-config --
> includedir
> /home/elhigu/stow_sources/llvm-svn/include
>
> and from install directory.
>
> elhigu at mr-lenovo:~/stow_sources/llvm-svn$ ~/stow_installs/bin/llvm-
> config --includedir
> /home/elhigu/stow_ins...
2007 Aug 03
1
[LLVMdev] Adding intrinsic with variable argument list HOWTO.
...laddr:$dst, iAny:$vararg)>;
def : Pat<(call texternalsym:$dst,iAny:$vararg),
(int_tce_customop texternalsym:$dst, iAny:$vararg)>;
but compilation gives following error:
isVoid:void anonymous.52: (intrinsic_void:void 197:iPTR,
(tglobaladdr:iPTR):$dst, isVoid:void)
/home/elhigu/llvm-install/llvm/Release/bin/tblgen: In anonymous.52: Type
inference contradiction found in node!
Mikael Lepistö