On Wed, Aug 8, 2012 at 5:27 AM, Richard Hipp <d...@sqlite.org> wrote:
> Copy Makefile.linux-gcc into Makefile.  Edit to suite your system.  Type
> "make"

And what branches are expected to build?  Last night I had errors
building trunk (FTS3 referred to an undefined sqlite4_blob type), and
when I commented FTS3 (and 4) out of the makefiles I got failures from
code that calls sqlite4_malloc() w/o an env struct.  The sqlite4_env
branch fails with errors like:

src/analyze.c:177:26: error: no member named 'regRoot' in 'struct Parse'
      aRoot[i] = pParse->regRoot;
                 ~~~~~~  ^
src/analyze.c:183:25: error: no member named 'tnum' in 'struct Table'
      aRoot[i] = pStat->tnum;
                 ~~~~~  ^
src/analyze.c:472:13: error: no member named 'tnum' in 'struct Table'
  if( pTab->tnum==0 ){
      ~~~~  ^
src/analyze.c:679:54: error: no member named 'tnum' in 'struct Table'
    sqlite4VdbeAddOp3(v, OP_OpenRead, iIdxCur, pTab->tnum, iDb);
                                               ~~~~  ^

Nico
--
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to