Displaying 16 results from an estimated 16 matches for "dowobeha".
2008 Apr 12
0
[LLVMdev] Setting up new project
On Sat, Apr 12, 2008 at 1:26 PM, Lane Schwartz <dowobeha at gmail.com> wrote:
> John,
>
> Thanks for the advice. The script you sent gives me the same problem.
> I am now able to work around the issue by making the following change
> to the AutoRegen.sh script that comes with the sample project:
>
> 16,17c16,17
> < l...
2008 Apr 12
2
[LLVMdev] Setting up new project
On Fri, Apr 11, 2008 at 3:24 PM, John Criswell <criswell at cs.uiuc.edu> wrote:
> Lane Schwartz wrote:
>
> > [snip]
> >
> > OK then. I didn't realize that having a newer version would be a problem.
> >
> > I compiled and installed autoconf 2.59. I still get the same problem:
> >
> > $ autoconf --version
> > autoconf (GNU Autoconf)
2008 Apr 11
0
[LLVMdev] Setting up new project
On Fri, Apr 11, 2008 at 9:39 AM, Lane Schwartz <dowobeha at gmail.com> wrote:
> Hi,
>
> I am attempting to set up a new frontend project based on the sample
> project (I'm following the instructions at
> http://llvm.org/docs/Projects.html). In doing so, I hit a problem with
> AutoRegen.sh which I worked around, and hit a prob...
2008 Apr 09
2
[LLVMdev] Compiling Stacker compiler
On Tue, Apr 8, 2008 at 8:00 PM, Gordon Henriksen
<gordonhenriksen at mac.com> wrote:
> On 2008-04-08, at 20:21, Lane Schwartz wrote:
>
> > I checked out the Stacker directory from svn, and put it in my llvm-
> > src/projects directory. Unfortunately, when I run make, I get the
> > errors below. I wondered whether the stacker code might simply be
> > out of
2008 Apr 09
0
[LLVMdev] Compiling Stacker compiler
On Tue, Apr 8, 2008 at 8:25 PM, Lane Schwartz <dowobeha at gmail.com> wrote:
> OK. Thanks for the info. Is there a working sample project that I could look at?
>
> I'm interested in tinkering around with my own custom frontend for a
> toy language, and I was hoping for something I could use as a template
> in getting a project...
2008 Apr 11
4
[LLVMdev] Setting up new project
Hi,
I am attempting to set up a new frontend project based on the sample
project (I'm following the instructions at
http://llvm.org/docs/Projects.html). In doing so, I hit a problem with
AutoRegen.sh which I worked around, and hit a problem with configure
that I don't know how to work around.
Below is what happens when I attempt to autoconf and configure the
sample project that ships
2008 Apr 12
3
[LLVMdev] Setting up new project
...f your LLVM source tree and object tree, respectively. I faintly recall seeing this error and seem to recall using these options to work around it.
-- John T.
________________________________________
From: llvmdev-bounces at cs.uiuc.edu [llvmdev-bounces at cs.uiuc.edu] On Behalf Of Lane Schwartz [dowobeha at gmail.com]
Sent: Saturday, April 12, 2008 1:29 PM
To: LLVM Developers Mailing List
Subject: Re: [LLVMdev] Setting up new project
On Sat, Apr 12, 2008 at 1:26 PM, Lane Schwartz <dowobeha at gmail.com> wrote:
> John,
>
> Thanks for the advice. The script you sent gives me the sam...
2008 Apr 15
2
[LLVMdev] Bugs in Kaleidoscope tutorial code, and a bus error
I'm working through the Kaleidoscope tutorial through section 2.4, and
I've encountered some problems: several minor bugs, and finally a bus
error that has me stumped:
-------
In the code listed in LLVM Tutorial section 2.2 Implementing a Parser and AST.
Line 19 has a comma at the end of line that shouldn't be there
Line 120 is missing a closing angle bracket.
Line 120 should be
2008 Apr 15
1
[LLVMdev] Linking to LLVM libs from new project
Hi all,
I have a new sample project set up in my llvm/projects directory, and
I'd eventually like my frontend to generate an LLVM IR tree. To do so,
I believe I need to link to the appropriate LLVM libraries. That's
where I'm stuck.
I can't seem to find any specific documentation that describes how to
set up a new project to link to LLVM libraries.
To get started, I added a
2008 Apr 13
0
[LLVMdev] Setting up new project
On Sat, Apr 12, 2008 at 3:52 PM, Criswell, John T <criswell at ad.uiuc.edu> wrote:
> Try using the --with-llvmsrc and --with-llvmobj options to explicitly set the locations of your LLVM source tree and object tree, respectively. I faintly recall seeing this error and seem to recall using these options to work around it.
OK. Here are the complete steps required to successfully build the
2008 Apr 29
2
[LLVMdev] getting started with IR needing GC
On Mon, Apr 28, 2008 at 2:13 PM, Gordon Henriksen
<gordonhenriksen at mac.com> wrote:
> > If so, then a Collector plugin would need to have info about every
> > supported backend lays out the runtime stack?
>
> Yes. This information is actually available in a target-independent
> fashion with LLVM, so the Collector interface is target-independent. A
> backend
2008 Apr 11
3
[LLVMdev] Setting up new project
On Fri, Apr 11, 2008 at 12:35 PM, Tanya M. Lattner <tonic at nondot.org> wrote:
>
> > Below is what happens when I attempt to autoconf and configure the
> > sample project that ships with LLVM. This is on Mac OS X 10.5 with
> > autoconf 2.6.0. For reference, /opt/src-llvm is where my llvm sources
> > are, and where I built those sources. My project is in
>
2008 Apr 28
2
[LLVMdev] getting started with IR needing GC
On Sun, Apr 27, 2008 at 9:34 PM, Gordon Henriksen
<gordonhenriksen at mac.com> wrote:
> As for the compiler plugin interface, I suggest you ignore it
> initially and use the provided shadow-stack option for the time being.
> The shadow stack generates significantly suboptimal code, but will let
> you avoid writing some platform-specific code. Instead, simply copy
> the
2008 Apr 29
2
[LLVMdev] getting started with IR needing GC
On Mon, Apr 28, 2008 at 8:31 PM, Gordon Henriksen
<gordonhenriksen at mac.com> wrote:
> On 2008-04-28, at 21:19, Lane Schwartz wrote:
>
> > On Mon, Apr 28, 2008 at 2:13 PM, Gordon Henriksen <gordonhenriksen at mac.com
> > > wrote:
> >
> >>> If so, then a Collector plugin would need to have info about every
> >>> supported backend
2008 Apr 28
3
[LLVMdev] getting started with IR needing GC
On Mon, Apr 21, 2008 at 8:13 PM, Gordon Henriksen
<gordonhenriksen at mac.com> wrote:
>
> Hi Terence,
>
>
> I think you're getting hung up on the details of the shadow stack collector.
> The shadow stack is a GC that is possible within this framework, but of
> course could be implemented without any special support. Its presence is
> more misleading than anything
2008 Apr 09
2
[LLVMdev] Compiling Stacker compiler
Hi, I'm new to LLVM, and I'm trying to get things set up. So far I've
successfully gotten the C and C++ frontends to run, using the
pre-compiled Mac OS X PPC binaries. I've also successfully compiled
the main LLVM package (minus the gcc frontend).
I'm now trying to get the Stacker sample project to compile.
I checked out the Stacker directory from svn, and put it in my