Re: [sqlite] EXTERNAL:Re: Cross-compiling SQLite forBlackfin+uClinux?

2010-12-02 Thread Gilles Ganault
On Thu, 2 Dec 2010 15:17:28 -0500, Eric Smith wrote: >You can do it on the command line -- just try it. Sorry guys for being dense: After rereading the above, it clicked: The "-lpthread" option must be put on the line when linking the three object files to create the final .so file: #config LD

Re: [sqlite] EXTERNAL:Re: Cross-compiling SQLite forBlackfin+uClinux?

2010-12-02 Thread Eric Smith
Gilles Ganault wrote: > Sorry about that :-/ Apparently, gcc will compile and link in one go. > Is a Makefile required to add the -lpthread switch, or can this be > done on the command line? You can do it on the command line -- just try it. make(1) (and its typical input, a set of makefi

Re: [sqlite] EXTERNAL:Re: Cross-compiling SQLite forBlackfin+uClinux?

2010-12-02 Thread Gilles Ganault
On Thu, 2 Dec 2010 13:50:30 -0600, "Black, Michael (IS)" wrote: >The -lpthread goes on the FINAL link you do with your OBJS. Sorry about that :-/ Apparently, gcc will compile and link in one go. Is a Makefile required to add the -lpthread switch, or can this be done on the command line? This is j

Re: [sqlite] EXTERNAL:Re: Cross-compiling SQLite forBlackfin+uClinux?

2010-12-02 Thread Black, Michael (IS)
. Michael D. Black Senior Scientist Advanced Analytics Directorate Northrop Grumman Information Systems From: sqlite-users-boun...@sqlite.org on behalf of Gilles Ganault Sent: Thu 12/2/2010 1:07 PM To: sqlite-users@sqlite.org Subject: Re: [sqlite] EXTERNAL:Re: Cr