Displaying 20 results from an estimated 600 matches similar to: "[LLVMdev] llvm-tv bug?"
2010 Sep 09
2
[LLVMdev] install llvm-tv on ubuntu
Does anybody install llvm-tv on ubuntu9.04? please share how to do it. Thanks very much!
My problem is as followed:
I follow the instruction of README in source of llvm-tv.
First, I installe wxWidgets and graphviz, and then download the source of llvm from http://llvm.org/svn/llvm-project/llvm/trunk and download poolalloc from http://llvm.org/svn/llvm-project/poolalloc/trunk. Second, I compile
2012 Jun 06
2
[LLVMdev] llvm-tv
I fixed most of the errors.
There is a weird error I am seeing and seems to be some incompatibility in
expanding macros between FileSystem.h in LLVM and intl.h in wxWidgets. Any
idea how to fix this?
In file included from
/home/arhishee/work/llvm-tv/llvm-tv/tools/llvm-tv/GraphDrawer.cpp:4:
In file included from
/home/arhishee/work/llvm-tv/llvm30/include/llvm/Support/FileUtilities.h:18:
In file
2012 Jun 06
0
[LLVMdev] llvm-tv
I fixed all the other build errors. This is the only one pending.
On Tue, Jun 5, 2012 at 8:33 PM, AbhishekR <abhishekr1982 at gmail.com> wrote:
> I fixed most of the errors.
>
> There is a weird error I am seeing and seems to be some incompatibility in
> expanding macros between FileSystem.h in LLVM and intl.h in wxWidgets. Any
> idea how to fix this?
>
> In file
2012 Jun 06
0
[LLVMdev] llvm-tv
On 6/5/12 7:45 PM, AbhishekR wrote:
> Thanks John. I verified that and poolalloc builds with LLVM 3.0. I
> used clang for compiling wxWidgets, LLVM 3.0 and poolalloc.
>
> But llvm-tv build still gives build error. I take it that llvm-tv is
> still incompatible with these versions of poolalloc and LLVM 3.0. I
> think the code is manageable - couple of files in lib,include and
2012 Jun 06
3
[LLVMdev] llvm-tv
Thanks John. I verified that and poolalloc builds with LLVM 3.0. I used
clang for compiling wxWidgets, LLVM 3.0 and poolalloc.
But llvm-tv build still gives build error. I take it that llvm-tv is still
incompatible with these versions of poolalloc and LLVM 3.0. I think the
code is manageable - couple of files in lib,include and some 30 odd small
files in tools directory. I'll have a look at
2005 Jul 24
2
Fwd: fix Choice.cpp unicode string
This is needed so that samples/etc/choice.rb shows the strings in the
choice box.
One of the few places that missed UTF8 convertion.
--- swig/classes/Choice.i 31 Jan 2005 04:18:52 -0000 1.2
+++ swig/classes/Choice.i 24 Jul 2005 19:18:55 -0000
@@ -14,7 +14,7 @@
for(int i=0; i < $1; ++i)
{
VALUE thisItem = rb_ary_entry($input, i);
- $2[i] = (wxChar
2005 Jun 20
1
Linux Installation Problem
I''ve installed wxWidgets on Fedora Core 3 and I''m now trying to install
wxRuby. extconf.rb ran correctly, but when I run make, I get the
following error:
wx.cpp:29: error: new declaration `int wxEntryStart(int&, char**)''
/usr/local/include/wx-2.6/wx/init.h:29: error: ambiguates old
declaration `boolwxEntryStart(int&, wxChar**)''
make: *** [wx.o] Error
2004 Aug 16
3
RE: wxRuby
STEVE: Yes, wxRuby is being used on OS X. The wxRuby-user''s ML is the best
place to go for help. I''ll cross post this and any responses if you don''t
want to subscribe.
WXRUBY-USERS: Steve is the guy who is working on the One-Click Ruby
Installer for OS X. Can anyone spot what his problem is here?
Thanks,
Curt
Stephen Steiner wrote:
>
> I''ve tried
2007 Mar 31
0
[934] branches/wxruby2/wxwidgets_282: Rename OnAssert to OnAssertFailure, reflecting wx 2.8 API
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding:
2005 Oct 09
0
[Fwd: Re: [Swig] Re: Object return problem]
Forwarded from the SWIG mailing list, so we have a copy in our archives.
Kevin
-------- Original Message --------
Subject: Re: [Swig] Re: Object return problem
Date: Sun, 09 Oct 2005 18:31:40 -0400
From: Kevin Smith <wxruby@qualitycode.com>
To: Charlie Savage <cfis@interserv.com>
CC: Swig@cs.uchicago.edu
References: <4347277E.1030700@mindspring.com>
2007 Aug 29
2
[LLVMdev] constructing 'for' statement from LLVM bitcode
Seung,
On 8/25/07, Chris Lattner <sabre at nondot.org> wrote:
> Ok. Note that LLVM can represent irreducible loops. You can handle
> this through code duplication.
> -Chris
If you are willing to invest more effort into a more complicated analysis,
in many cases you can even avoid code duplication. See this paper for
details:
@inproceedings{erosa94taming,
author = {Ana M.
2007 Aug 30
0
[LLVMdev] constructing 'for' statement from LLVM bitcode
On 8/29/07, Domagoj Babic <babic.domagoj at gmail.com> wrote:
> Seung,
>
> On 8/25/07, Chris Lattner <sabre at nondot.org> wrote:
> > Ok. Note that LLVM can represent irreducible loops. You can handle
> > this through code duplication.
> > -Chris
>
>
> If you are willing to invest more effort into a more complicated analysis,
> in many cases you
2006 Dec 10
3
[LLVMdev] Building llvm-gcc4 on amd64
Hi all,
I spent several hours today trying to compile llvm-gcc4 from svn and llvm from
cvs on amd64 linux. In the case anyone else decides to try the same, this
could ease your pain:
1) check out llvm, llvm-gcc
2) create llvm-obj llvm-gcc-obj
export LLVM_INSTAL=<install_dir>
cd llvm-obj
export LLVM_OBJ=`pwd`
../llvm/configure --prefix=$LLVM_INSTALL --enable-debug-runtime
4) At one point,
2005 Aug 04
9
wxruby2 retooling
I finally gave up on swig 1.3.22, since it seems to be causing too many
problems. Ubuntu breezy will have 1.3.24, so I''m retargeting wxruby2 to
swig 1.3.24+. At the moment, I have 1.3.25 on my system, since that''s
the current release.
I''m finding all kinds of problems with the post-processors we have that
clean up the .cpp files that swig creates. The
2007 Mar 19
0
[898] branches/wxruby2/wxwidgets_282/swig/classes/App.i: Fix init of stock objects for Wx2.8 - was causing infinite loop +crash on OS X
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding:
2006 Dec 10
2
[LLVMdev] How to compile apps to bc files with the new llvm-gcc4?
Hi,
I'm trying to compile some apps with the new llvm-gcc4 on amd64 linux
to .bc files, rather than to the native code. The same process I used to
build those apps before with llvm-gcc3 doesn't work:
1)
export CC=llvm-gcc CXX=llvm-g++ CFLAGS="-g -fno-inline" CXXFLAGS="-g
-fno-inline"
2) cd <whatever-app>; ./configure
3) make CFLAGS+=-emit-llvm
2006 Sep 29
2
[LLVMdev] FunctionPass requiring SCCs
On Sep 29, 2006, at 2:05 PM, Domagoj Babic wrote:
>
> Check out scc_* iterators. Also note that the call graph
> is not aware of the indirect calls, so you will need to write your
> own CG implementation if you need to handle function pointers
> soundly.
>
Chris, is this true? If so, it seems like a bad property for the
CallGraphSCCPass framework.
--Vikram
2006 Nov 29
0
[LLVMdev] LLVM Conference 2007 ?
Hi all,
On 11/28/06, Reid Spencer <rspencer at reidspencer.com> wrote:
> * Venue: West Coast, USA. Probably either San Francisco Bay Area or
> Seattle
> * Time Frame: Post 2.0 release, summer 2007
> * Topics: Anything related to use or development of LLVM
I'd vote for Seattle. The costs of organization should be lower than in
the Bay Area.
> * An indication of how
2006 Dec 10
0
[LLVMdev] How to compile apps to bc files with the new llvm-gcc4?
Unless I'm missing something, the problem lies directly with the fact that
you are trying to do a link-stage operation with the GCC frontend. GCC, by
default, probably runs "ld" or another system linker, which grabs the
executable from binutils. This linker hasn't been modified (yet) to include
support for .bc files, but you're compiler is emitting byte code to the *.o
files.
2007 Jun 28
0
[1092] trunk/wxruby2/swig/classes/App.i: Pass correctly typed Events into filter_event, if defined (bug 10797);
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: