Hi, I'm trying to compile termite with the new b22 version but when I make I get this when it reaches _thread.scm. Vanilla b22 compiles fine. Any ideas?
../gsc-comp -:=".." -f -c -check _thread.scm /bin/sh: line 1: ../gsc-comp: No such file or directory make[1]: *** [_thread.c] Error 127 make: *** [all-recursive] Error 1
Afficher les réponses par date
Hi,
To build Termite, first compile Gambit-C without it. Then, in the main directory, create a symbolic link:
% ln -s gsc/gsc gsc-comp
or, if you are on Windows with cygwin:
% ln -s gsc/gsc.exe gsc-comp
You can then compile Termite. But before that, make sure you replace the definition of remote-spawn-link in termite.scm by the following:
(define (remote-spawn-link node thunk) (let ((pid (remote-spawn node thunk links: (list (self))))) (outbound-link pid) pid))
Hope this helps!
Dominique
From: "|/|/ Bendick" droid@zoo-crew.org To: "Gambit List" gambit-list@iro.umontreal.ca Subject: [gambit-list] termite build error Date: Thu, 12 Apr 2007 20:39:52 -0400
Hi, I'm trying to compile termite with the new b22 version but when I make I get this when it reaches _thread.scm. Vanilla b22 compiles fine. Any ideas?
../gsc-comp -:=".." -f -c -check _thread.scm /bin/sh: line 1: ../gsc-comp: No such file or directory make[1]: *** [_thread.c] Error 127 make: *** [all-recursive] Error 1
On Apr 12, 2007, at 8:53 PM, schemeway@sympatico.ca schemeway@sympatico.ca wrote:
To build Termite, first compile Gambit-C without it. Then, in the main directory, create a symbolic link:
% ln -s gsc/gsc gsc-comp
or, if you are on Windows with cygwin:
% ln -s gsc/gsc.exe gsc-comp
It may bebetter to "make bootstrap", which just copies gsc/gsc to gsc- comp after completing the stuff of a regular "make".
Brad
Thanks for the help. Compiling now goes smoothly but when I run gsi it immediately exits with code 70 (before even printing the banner) :/
Any more ideas?
On 4/12/07, schemeway@sympatico.ca schemeway@sympatico.ca wrote:
Hi,
To build Termite, first compile Gambit-C without it. Then, in the main directory, create a symbolic link:
% ln -s gsc/gsc gsc-comp
or, if you are on Windows with cygwin:
% ln -s gsc/gsc.exe gsc-comp
You can then compile Termite. But before that, make sure you replace the definition of remote-spawn-link in termite.scm by the following:
(define (remote-spawn-link node thunk) (let ((pid (remote-spawn node thunk links: (list (self))))) (outbound-link pid) pid))
Hope this helps!
Dominique
From: "|/|/ Bendick" droid@zoo-crew.org To: "Gambit List" gambit-list@iro.umontreal.ca Subject: [gambit-list] termite build error Date: Thu, 12 Apr 2007 20:39:52 -0400
Hi, I'm trying to compile termite with the new b22 version but when I make I get this when it reaches _thread.scm. Vanilla b22 compiles fine. Any ideas?
../gsc-comp -:=".." -f -c -check _thread.scm /bin/sh: line 1: ../gsc-comp: No such file or directory make[1]: *** [_thread.c] Error 127 make: *** [all-recursive] Error 1