Discussion:
Git pull fails to compile on linux
a***@public.gmane.org
2013-07-08 09:21:03 UTC
Permalink
System: Linux kernel 3.2.0-0.bpo.4-amd64 (gcc version 4.4.5 (Debian
4.4.5-8) )

Message from jam:

------------------------------------------------------------------------------------------

make jazz.git
; compiling jazz/git/interface...
Walk problems encountered
In jazz.git.interface
At git-fetch
Unresolved symbol: git-remote-connect
Unresolved symbol: GIT_DIRECTION_FETCH
Unresolved symbol: git-remote-download
Unresolved symbol: git-remote-disconnect
Unresolved symbol: git-remote-update-tips
Unresolved symbol: git-remote-free
At git-pull
Unresolved symbol: git-reference-lookup
Unresolved symbol: git-branch-lookup
Unresolved symbol: GIT_BRANCH_LOCAL
Unresolved symbol: git-graph-fast-forward?
Unresolved symbol: git-reference->id
Unresolved symbol: git-reference->id
Unresolved symbol: git-object-lookup
Unresolved symbol: git-reference->id
Unresolved symbol: GIT_OBJ_COMMIT
Unresolved symbol: git-reset
Unresolved symbol: GIT_RESET_HARD
At git-workdir-clean?
Unresolved symbol: git-status-for-each-stoppable

%
------------------------------------------------------------------------------------------
--
You received this message because you are subscribed to the Google Groups "Jazz Scheme" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jazzscheme+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/***@public.gmane.org
To post to this group, send email to jazzscheme-/JYPxA39Uh5TLH3MbocFF+G/***@public.gmane.org
Visit this group at http://groups.google.com/group/jazzscheme.
For more options, visit https://groups.google.com/groups/opt_out.
Guillaume Cartier
2013-07-08 12:43:14 UTC
Permalink
Problem should be fixed (I don't have access to a Linux machine to test
fix). Thanks!
Post by a***@public.gmane.org
System: Linux kernel 3.2.0-0.bpo.4-amd64 (gcc version 4.4.5 (Debian
4.4.5-8) )
------------------------------------------------------------------------------------------
make jazz.git
; compiling jazz/git/interface...
Walk problems encountered
In jazz.git.interface
At git-fetch
Unresolved symbol: git-remote-connect
Unresolved symbol: GIT_DIRECTION_FETCH
Unresolved symbol: git-remote-download
Unresolved symbol: git-remote-disconnect
Unresolved symbol: git-remote-update-tips
Unresolved symbol: git-remote-free
At git-pull
Unresolved symbol: git-reference-lookup
Unresolved symbol: git-branch-lookup
Unresolved symbol: GIT_BRANCH_LOCAL
Unresolved symbol: git-graph-fast-forward?
Unresolved symbol: git-reference->id
Unresolved symbol: git-reference->id
Unresolved symbol: git-object-lookup
Unresolved symbol: git-reference->id
Unresolved symbol: GIT_OBJ_COMMIT
Unresolved symbol: git-reset
Unresolved symbol: GIT_RESET_HARD
At git-workdir-clean?
Unresolved symbol: git-status-for-each-stoppable
%
------------------------------------------------------------------------------------------
--
You received this message because you are subscribed to the Google Groups
"Jazz Scheme" group.
To unsubscribe from this group and stop receiving emails from it, send an
Visit this group at http://groups.google.com/group/jazzscheme.
For more options, visit https://groups.google.com/groups/opt_out.
--
You received this message because you are subscribed to the Google Groups "Jazz Scheme" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jazzscheme+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/***@public.gmane.org
To post to this group, send email to jazzscheme-/JYPxA39Uh5TLH3MbocFF+G/***@public.gmane.org
Visit this group at http://groups.google.com/group/jazzscheme.
For more options, visit https://groups.google.com/groups/opt_out.
a***@public.gmane.org
2013-07-08 13:58:25 UTC
Permalink
Nice try, but just pulled changes via git, recompiled and get the same
error message ...
Any ideas? Thanks!


---------------------------------------------------------------------------------------------------------------------------------------
Post by Guillaume Cartier
Problem should be fixed (I don't have access to a Linux machine to test
fix). Thanks!
Post by a***@public.gmane.org
System: Linux kernel 3.2.0-0.bpo.4-amd64 (gcc version 4.4.5 (Debian
4.4.5-8) )
------------------------------------------------------------------------------------------
make jazz.git
; compiling jazz/git/interface...
Walk problems encountered
In jazz.git.interface
At git-fetch
Unresolved symbol: git-remote-connect
Unresolved symbol: GIT_DIRECTION_FETCH
Unresolved symbol: git-remote-download
Unresolved symbol: git-remote-disconnect
Unresolved symbol: git-remote-update-tips
Unresolved symbol: git-remote-free
At git-pull
Unresolved symbol: git-reference-lookup
Unresolved symbol: git-branch-lookup
Unresolved symbol: GIT_BRANCH_LOCAL
Unresolved symbol: git-graph-fast-forward?
Unresolved symbol: git-reference->id
Unresolved symbol: git-reference->id
Unresolved symbol: git-object-lookup
Unresolved symbol: git-reference->id
Unresolved symbol: GIT_OBJ_COMMIT
Unresolved symbol: git-reset
Unresolved symbol: GIT_RESET_HARD
At git-workdir-clean?
Unresolved symbol: git-status-for-each-stoppable
%
------------------------------------------------------------------------------------------
--
You received this message because you are subscribed to the Google Groups
"Jazz Scheme" group.
To unsubscribe from this group and stop receiving emails from it, send an
.
Visit this group at http://groups.google.com/group/jazzscheme.
For more options, visit https://groups.google.com/groups/opt_out.
--
You received this message because you are subscribed to the Google Groups "Jazz Scheme" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jazzscheme+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/***@public.gmane.org
To post to this group, send email to jazzscheme-/JYPxA39Uh5TLH3MbocFF+G/***@public.gmane.org
Visit this group at http://groups.google.com/group/jazzscheme.
For more options, visit https://groups.google.com/groups/opt_out.
Guillaume Cartier
2013-07-24 13:20:23 UTC
Permalink
It is almost impossible for the problem to remain as the code is now in a
(cond-expand (windows ...)).

I installed Ubuntu on my machine and indeed it built fine.

What this seems to imply is that the heuristic used to determine what OS
you're running is failing. It uses a Gambit internal function: system-type.

Can you launch gsc, execute (system-type) and tell me what result you're
getting?
Post by a***@public.gmane.org
Nice try, but just pulled changes via git, recompiled and get the same
error message ...
Any ideas? Thanks!
---------------------------------------------------------------------------------------------------------------------------------------
Post by Guillaume Cartier
Problem should be fixed (I don't have access to a Linux machine to test
fix). Thanks!
Post by a***@public.gmane.org
System: Linux kernel 3.2.0-0.bpo.4-amd64 (gcc version 4.4.5 (Debian
4.4.5-8) )
------------------------------**------------------------------**
------------------------------
make jazz.git
; compiling jazz/git/interface...
Walk problems encountered
In jazz.git.interface
At git-fetch
Unresolved symbol: git-remote-connect
Unresolved symbol: GIT_DIRECTION_FETCH
Unresolved symbol: git-remote-download
Unresolved symbol: git-remote-disconnect
Unresolved symbol: git-remote-update-tips
Unresolved symbol: git-remote-free
At git-pull
Unresolved symbol: git-reference-lookup
Unresolved symbol: git-branch-lookup
Unresolved symbol: GIT_BRANCH_LOCAL
Unresolved symbol: git-graph-fast-forward?
Unresolved symbol: git-reference->id
Unresolved symbol: git-reference->id
Unresolved symbol: git-object-lookup
Unresolved symbol: git-reference->id
Unresolved symbol: GIT_OBJ_COMMIT
Unresolved symbol: git-reset
Unresolved symbol: GIT_RESET_HARD
At git-workdir-clean?
Unresolved symbol: git-status-for-each-stoppable
%
------------------------------**------------------------------**
------------------------------
--
You received this message because you are subscribed to the Google
Groups "Jazz Scheme" group.
To unsubscribe from this group and stop receiving emails from it, send
Visit this group at http://groups.google.com/**group/jazzscheme<http://groups.google.com/group/jazzscheme>
.
For more options, visit https://groups.google.com/**groups/opt_out<https://groups.google.com/groups/opt_out>
.
--
You received this message because you are subscribed to the Google Groups
"Jazz Scheme" group.
To unsubscribe from this group and stop receiving emails from it, send an
Visit this group at http://groups.google.com/group/jazzscheme.
For more options, visit https://groups.google.com/groups/opt_out.
--
You received this message because you are subscribed to the Google Groups "Jazz Scheme" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jazzscheme+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/***@public.gmane.org
To post to this group, send email to jazzscheme-/JYPxA39Uh5TLH3MbocFF+G/***@public.gmane.org
Visit this group at http://groups.google.com/group/jazzscheme.
For more options, visit https://groups.google.com/groups/opt_out.
Loading...