Gmail Calendar Documents Reader Web more »
Recently Visited Groups | Help | Sign in
Google Groups Home
Cannot build latest checkout (after "The time syntax now accepts an arbitrary number of forms")
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  6 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Martin DeMello  
View profile  
 More options Sep 21, 12:20 pm
From: Martin DeMello <martindeme...@gmail.com>
Date: Mon, 21 Sep 2009 09:20:45 -0700 (PDT)
Local: Mon, Sep 21 2009 12:20 pm
Subject: Cannot build latest checkout (after "The time syntax now accepts an arbitrary number of forms")
Platform:
* arch linux
* latest gambit from git (372fa1cf729a30c6ea6d42a396a10e429a686e19)

 make jazz dies with:

 ; compiling jazz/dialect/walker/core...
 *** ERROR IN | dialect.o1|, "lib/jazz/src/jazz/dialect/
dialect.scm"@355.1 -- Inconsistant core-class/class slots for Time-
Special: (expressions) / (expression)

commit 3256c75294bee30c7c5dd1e766a9b6cad3f0a447 compiles cleanly.

martin


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Guillaume Cartier  
View profile  
 More options Sep 21, 2:16 pm
From: Guillaume Cartier <gcart...@jazzscheme.org>
Date: Mon, 21 Sep 2009 14:16:01 -0400
Local: Mon, Sep 21 2009 2:16 pm
Subject: Re: Cannot build latest checkout (after "The time syntax now accepts an arbitrary number of forms")

Fixed.

On Mon, Sep 21, 2009 at 12:20 PM, Martin DeMello <martindeme...@gmail.com>wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Guillaume Cartier  
View profile  
 More options Sep 22, 6:25 am
From: Guillaume Cartier <gcart...@jazzscheme.org>
Date: Tue, 22 Sep 2009 03:25:41 -0700 (PDT)
Local: Tues, Sep 22 2009 6:25 am
Subject: Re: Cannot build latest checkout (after "The time syntax now accepts an arbitrary number of forms")
Really fixed now! Sorry about that.

On Sep 21, 2:16 pm, Guillaume Cartier <gcart...@jazzscheme.org> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Martin DeMello  
View profile  
 More options Sep 22, 6:54 am
From: Martin DeMello <martindeme...@gmail.com>
Date: Tue, 22 Sep 2009 16:24:00 +0530
Subject: Re: Cannot build latest checkout (after "The time syntax now accepts an arbitrary number of forms")
works, thanks :) do i have to make clean and remake jazz and jedi
every time i update from git?

martin

On Tue, Sep 22, 2009 at 3:55 PM, Guillaume Cartier


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Guillaume Cartier  
View profile  
 More options Sep 22, 8:25 am
From: Guillaume Cartier <gcart...@jazzscheme.org>
Date: Tue, 22 Sep 2009 08:25:59 -0400
Local: Tues, Sep 22 2009 8:25 am
Subject: Re: Cannot build latest checkout (after "The time syntax now accepts an arbitrary number of forms")

Not at all! A simple make jedi will do.
Here a quick rundown on what's involved after doing a git pull :

Because Jazz was designed to minimize compilation dependencies, very few
changes in a module force recompilation of other modules (some of those
changes are modifying a macro, moving an exported symbol to another module,
...). The build system takes advantage of this and recompiles only changed
files. This is why a simple make jedi will do.

When some changes done to Jazz should force a full rebuild, like some
changes to low-level kernel macro changing the generated code incompatibly,
there is a file kernel/versions that the build system consults and that
contains entries like :

(version: 201016)
(version: 201015 gambit-version: 405001 gambit-stamp: 20090827151242)
(version: 201014 rebuild: all)
(version: 201011 rebuild: kernel)

For example, with the entries above, if your last pull pulled version
2.01.010, then the (version: 201014 rebuild: all) entry above tells the
build system it must recompile everything. All this meaning really that you
never have to worry about it as the developers of Jazz have a way to
automate rebuilding any parts of Jazz.

Also, Jazz was designed so every module can be loaded interpreted or
compiled (except modules containing FFI code). So in theory, you need not
even do a make jedi before launching Jedi (it should only improve
performance). But that is not really the case anymore as we implemented
dependency checking code to automatically determine when a module's imports
are not valid anymore because some imported symbol was moved or deleted. For
that check we had a choice to do it runtime but incur a non-trivial cost or
integrate the check to the build system which is what we did. So now it is
possible that if some modules have invalid imports, just launching Jedi
after a pull might not work and a make jedi will fix this.

Lastly, you should always consult the NEWS file after doing a pull. This is
where we describe any breaking changes not covered by the build system and
the corrective actions to take. Here's an example :

Release 2.0.21
==============

Because a slot was added to the Lisp-Entry class, you will need to manually
delete your catalogs before launching Jedi.

In summary, just do make jedi and have fun. :-)

Hope this helps,

Guillaume

On Tue, Sep 22, 2009 at 6:54 AM, Martin DeMello <martindeme...@gmail.com>wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Martin DeMello  
View profile  
 More options Sep 23, 6:49 am
From: Martin DeMello <martindeme...@gmail.com>
Date: Wed, 23 Sep 2009 16:19:57 +0530
Local: Wed, Sep 23 2009 6:49 am
Subject: Re: Cannot build latest checkout (after "The time syntax now accepts an arbitrary number of forms")
Thanks, that was a great overview of the module functionality

martin

On Tue, Sep 22, 2009 at 5:55 PM, Guillaume Cartier


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google