Re: status

Neal Norwitz <[email protected]> Thu, 10 Apr 2003 14:20:02 -0400
Newsgroups gmane.comp.python.snake-farm.user
Message-ID <[email protected]>
On Thu, Apr 10, 2003 at 10:27:25AM -0400, Neal Norwitz wrote:
> 
>   3)    AIX fails to link.  This works for me when built manually.
>         So there must be some difference in the environment.  The
>         problem is that -lpthread is not present when linking.
>         I'll try to look into this.  If I have write privileges
>         to the build area, I should be able to fix the problem.

This appears to be an environment issue.  configure is told to use
CC='ccache gcc', but the linker it finds is cc_r.  This mismatch
causes the threads linking problem.  I believe passing --with-gcc to
configure will fix the problem.  Another possible fix would be to set
LD='gcc', but I'm not sure if that works.

Anders, can you make the change to add --with-gcc for AIX?

Neal