Re: [sqlite] Port SQLite to VxWorks 6.8

2013-04-27 Thread nikvoron
Just put: pNew->ctrlFlags |= UNIXFILE_DELETE; instead of isDelete = 0; And remove : if( isDelete ) pNew->ctrlFlags |= UNIXFILE_DELETE; Worked for me, but I built SQLite for RTP. Does not metter here. Regards -- View this message in context: http://sqlite.1065341.n5.nabble.com/Port-SQLi

Re: [sqlite] Port SQLite to VxWorks 6.8

2013-04-26 Thread pmb
We (Peter and me) have been having problems with the following lines of code from the sqlite3.c of the SQLite 3.7.16.1. *Problem 1: * Undefined symbol "isDelete". Any idea what this variable does? Or where it is defined? static int fillInUnixFile( . . . ) { . . . #if OS_VXWORKS if( rc!=SQL

[sqlite] Port SQLite to VxWorks 6.8

2013-04-25 Thread Peter Meszaros
Hi All, First a very general question: Does anyone have experiences with porting SQLite to VxWorks? Preferably to Version 6.8 but not much too older versions could be also interesting for me. The documentation and the directives like #if OS_VXWORKS in the source suggest it would be possible easi

Re: [sqlite] port sqlite to VxWorks

2009-08-25 Thread ZhiHua Huang
Hi, use these definitions. -DOS_VXWORKS_660=660\ -DOS_VXWORKS_670=670\ -DOS_VXWORKS=OS_VXWORKS_670\ -DSQLITE_HOMEGROWN_RECURSIVE_MUTEX\ -DSQLITE_ENABLE_LOCKING_STYLE=1\ -DSQLITE_OMIT_LOAD_EXTENSION and below is my patch with

Re: [sqlite] port sqlite to VxWorks

2009-08-25 Thread Kees Nuyt
On Mon, 24 Aug 2009 14:46:00 +0800 (CST), mly_hlmgood wrote: > Hi, > I am puzzled by porting sqlite to VxWorks. can you help me. Please specify the bottlenecks. -- ( Kees Nuyt ) c[_] ___ sqlite-users mailing list sqlite-users@sqlite.org http:/

[sqlite] port sqlite to VxWorks

2009-08-25 Thread mly_hlmgood
Hi, I am puzzled by porting sqlite to VxWorks. can you help me. ___ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Re: [sqlite] Port SQLite to VxWorks

2009-05-21 Thread ZhiHua Huang
I'v already tested SQLite 3.6.13 with VxWorks 6.6/6.7 in DKM mode with basic&simple test application. It works fine for me. 2009/5/21 张世闻 > Hi, all. I am new to SQLite database and encountered a big problem. I > intend > to port SQLite to VxWorks OS and don't really know how. When directly > com

Re: [sqlite] Port SQLite to VxWorks

2009-05-21 Thread Shiwen Zhang
I used the latest source code tarball http://www.sqlite.org/sqlite-amalgamation-3.6.14.1.tar.gz and compiled it in Windows-based Tornado 2.2. It uses a so-called 'SIMNT gnu' toolchain for compilation, version unknown. My problem is when compiling the shell.c file, it prompted that 'sys/resource.h'

Re: [sqlite] Port SQLite to VxWorks

2009-05-21 Thread Christian Werner
ÕÅÊÀÎÅ wrote: > > Hi, all. I am new to SQLite database and encountered a big problem. I intend > to port SQLite to VxWorks OS and don't really know how. When directly > compiled the source code downloaded from the official site in VxWorks' IDE > Tornado, I kept receiving messages of certain header

Re: [sqlite] Port SQLite to VxWorks

2009-05-21 Thread Simon Slavin
On 21 May 2009, at 7:36am, 张世闻 wrote: > When directly > compiled the source code downloaded from the official site in > VxWorks' IDE > Tornado, Which compiler does that IDE use to compile ? GCC ? Which version ? Is the problem covered in http://www.xs4all.nl/~borkhuis/vxworks/vxw_pt1.html

[sqlite] Port SQLite to VxWorks

2009-05-20 Thread 张世闻
Hi, all. I am new to SQLite database and encountered a big problem. I intend to port SQLite to VxWorks OS and don't really know how. When directly compiled the source code downloaded from the official site in VxWorks' IDE Tornado, I kept receiving messages of certain header files missing. I've hear