Displaying 20 results from an estimated 2000 matches similar to: "[LLVMdev] Looking for more LLBrowse testers / users"
2011 Feb 21
0
[LLVMdev] Looking for more LLBrowse testers / users
On Sat, Feb 19, 2011 at 12:27 PM, Talin <viridia at gmail.com> wrote:
> LLBrowse - a GUI tool which allows you to inspect the contents of LLVM
> modules - now runs on Linux and OS X, and it works with both LLVM 2.8 and
> current LLVM head. I've updated the docs to include instructions on checking
> out and building the code under several different environments, which you
2011 Feb 22
2
[LLVMdev] still failed to build the llbrowse on Debian5-32b-llvm2.8
I still can't build LLBrowse on my Debian5-i386 machine today,
The following is a full build console output.
I am using LLVM-2.8 release build, with needed wxWidgets and CMake.
Thank you
Chuck
sideshow.eecg>time cmake ../llbrowse
-- The C compiler identification is GNU
-- The CXX compiler identification is GNU
-- Check for working C compiler: /steffan/a/a0/czhao/bin/bin32/gcc
-- Check
2011 Feb 22
0
[LLVMdev] still failed to build the llbrowse on Debian5-32b-llvm2.8
OK try it now - I checked in a few more fixes.
On Tue, Feb 22, 2011 at 8:29 AM, Chuck Zhao <czhao at eecg.toronto.edu> wrote:
> I still can't build LLBrowse on my Debian5-i386 machine today,
> The following is a full build console output.
> I am using LLVM-2.8 release build, with needed wxWidgets and CMake.
>
> Thank you
>
> Chuck
>
> sideshow.eecg>time
2011 Feb 14
3
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
On 2011-02-14 20:39, Talin wrote:
>
>
> On Mon, Feb 14, 2011 at 1:17 AM, Renato Golin <rengolin at systemcall.org
> <mailto:rengolin at systemcall.org>> wrote:
>
> I think this deserves a blog post...
>
> I'd like to wait until I get some feedback - I don't know yet if anyone
> is having trouble building or running the thing...
Hi Talin,
2011 Feb 14
0
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
On 2011-02-14 20:58, Török Edwin wrote:
> On 2011-02-14 20:39, Talin wrote:
>>
>>
>> On Mon, Feb 14, 2011 at 1:17 AM, Renato Golin <rengolin at systemcall.org
>> <mailto:rengolin at systemcall.org>> wrote:
>>
>> I think this deserves a blog post...
>>
>> I'd like to wait until I get some feedback - I don't know yet if
2011 Feb 14
5
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
OK I figured out what the problem was - I assume you are trying to compile
under Snow Leopard? There is a problem with linking against wxWidgets
because the prebuilt binaries for wxWidgets are compiled in 32-bit mode, and
the default compilation mode in Snow Leopard is 64 bits. See this article
for an explanation:
http://wiki.wxwidgets.org/Development:_wxMac#Building_under_10.6_Snow_Leopard
2011 Feb 14
0
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
On Mon, Feb 14, 2011 at 1:17 AM, Renato Golin <rengolin at systemcall.org>wrote:
> I think this deserves a blog post...
>
> I'd like to wait until I get some feedback - I don't know yet if anyone is
having trouble building or running the thing...
> --renato
>
--
-- Talin
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2011 Feb 14
3
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
I think this deserves a blog post...
--renato
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110214/7ce81293/attachment.html>
2011 Feb 14
0
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
Oh, and I updated the MIME types on the docs, so now you can read them
online here:
http://llvm.org/svn/llvm-project/llbrowse/trunk/doc/LLBrowse.html
2011/2/14 Talin <viridia at gmail.com>
> OK I figured out what the problem was - I assume you are trying to compile
> under Snow Leopard? There is a problem with linking against wxWidgets
> because the prebuilt binaries for
2011 Feb 14
1
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
On Mon, Feb 14, 2011 at 10:39 AM, Talin <viridia at gmail.com> wrote
>
>
>> I'd like to wait until I get some feedback - I don't know yet if anyone is
> having trouble building or running the thing...
>
Hi Talin,
This is the build error I get on my ubuntu 64 bit system...
john at ubuntu:~/src/build-llbrowse$ make
[ 5%] Building CXX object
2011 Feb 23
0
[LLVMdev] LLVMdev Digest, Vol 80, Issue 37-Help to unsubscribe
Please unsubscribe me from this list.
Sujatha Gurumurthy
Staffing Consultant/Talent Advisor
UMG - Ultra Mobile Group
sujatha.gurumurthy at intel.com
US ERP Manager
Interested in Employee Referral Program
Visit referral.intel.com/
Intel USA Employee Referral Program Group
100 Best Companies to Work For 2011: Intel - INTC - from FORTUNE
-----Original Message-----
From: llvmdev-bounces at
2011 Feb 13
0
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
LLBrowse has now been checked in to the llvm.org subversion repository:
http://llvm.org/svn/llvm-project/llbrowse/trunk/
There are instructions for building and running in the doc/ directory.
<http://llvm.org/svn/llvm-project/llbrowse/trunk/>First task if someone
wants to take it on - update all of the source files to have the UIUC
license info at the top, and add a LICENSE.txt file :)
2011 Feb 12
8
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
I've written a little GUI application that displays an LLVM module as an
expandable tree, which can be useful for examining the module's contents.
Some features:
- Based on wxWidgets, so it's completely cross-platform.
- CMake build script can locate both LLVM and wxWidgets installations
automatically.
- Loads either .ll or .bc files.
- Supports browsing of LLVM types,
2011 Feb 12
1
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
Hi Talin,
This looks interesting..! Can you email me your tool?
Cheers,
Raghu.
----- Original Message -----
From: "Renato Golin" <rengolin at systemcall.org>
To: "Talin" <viridia at gmail.com>
Cc: "LLVM Developers Mailing List" <llvmdev at cs.uiuc.edu>
Sent: Saturday, February 12, 2011 1:31:10 AM
Subject: Re: [LLVMdev] Introducing LLBrowse: A
2011 Feb 12
0
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
Nice! I'm interested... would also be nice to cross this with llvm diff, eh?
:)
Cheers,
Renato
On 12-Feb-2011 7:28 AM, "Talin" <viridia at gmail.com> wrote:
> I've written a little GUI application that displays an LLVM module as an
> expandable tree, which can be useful for examining the module's contents.
> Some features:
>
> - Based on wxWidgets, so
2011 Feb 12
0
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
Looks cool Talin.
Personally it would be nice if it was checked into llvm.org, but is wxWidgets LGPL like license
an issue for llvm's repository?
Anyway I would be interested in a copy otherwise under a BSD like license.
Thanks in advance
Garrison
On Feb 12, 2011, at 2:22, Talin wrote:
> I've written a little GUI application that displays an LLVM module as an expandable tree,
2011 Feb 14
1
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
One more screen shot: The version I just checked now allows you to see all
of the children of a given compile unit:
[image: llbrowse3.png]
I've already found at least one bug in my compiler's frontend using this
tool :)
Oh, and before I forget, I need three small changes to DebugInfo.h:
- DebugInfoFinder's 'module' parameter should be const.
- isArtificial should
2011 Feb 12
2
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
On Sat, Feb 12, 2011 at 6:40 AM, Garrison Venn <gvenn.cfe.dev at gmail.com>wrote:
> Looks cool Talin.
>
> Personally it would be nice if it was checked into llvm.org, but is
> wxWidgets LGPL like license
> an issue for llvm's repository?
>
There should be no problem with the license. wxWidgets is indeed distributed
under a modified version of the LGPL (with a special
2010 Jun 02
3
[LLVMdev] can't run the Hello Pass: either not registered or registered multiple times, what is the problem?
I am trying to run the HELLO LLVM Pass under WinXP/MinGW, by following
the precise steps available at
http://www.llvm.org/docs/WritingAnLLVMPass.html.
The pass failed to run, giving me the following error:
opt -load Release/lib/Hello.dll -hello < ./hello.bc > /dev/null
opt.exe: Unknown command line argument '-hello'. Try:
'C:\MSYS\opt\llvm-2.7\bin\opt.exe -help'
make:
2010 Jun 02
0
[LLVMdev] can't run the Hello Pass: either not registered or registered multiple times, what is the problem?
Hello
> opt -load Release/lib/Hello.dll -hello < ./hello.bc > /dev/null
> opt.exe: Unknown command line argument '-hello'. Try:
>
> Could somebody give me a hint?
Loadable modules (e.g. passes) are not supported on windows. And will
probably never be.
--
With best regards, Anton Korobeynikov
Faculty of Mathematics and Mechanics, Saint Petersburg State University