sl@0: // Copyright (c) 2005-2010 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // SQLite.lib Database management - SQLite library sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: */ sl@0: sl@0: #include "sqlite_macro.mmh" sl@0: sl@0: TARGET sqlite.lib sl@0: TARGETTYPE lib sl@0: sl@0: CAPABILITY All -Tcb sl@0: sl@0: UID 0x1000008d 0x10281E19 sl@0: sl@0: VendorId 0x70000001 sl@0: sl@0: SMPSAFE sl@0: sl@0: ////////////////////////////////////////////////////////////////////////////////////////////////////////// sl@0: ///////////////// RVCT compiler warning & optimization options ///////////////////////////////////////// sl@0: sl@0: //550: "entity" was set but never used sl@0: //C2874W: may be used before being set sl@0: //C2874W: may be used before being set sl@0: //177-D: variable was declared but never referenced sl@0: //1293-D: assignment in condition sl@0: sl@0: OPTION ARMCC --diag_suppress 550,2874,368,177,1293 sl@0: OPTION ARMCC -Ono_cg_cond sl@0: sl@0: ////////////////////////////////////////////////////////////////////////////////////////////////////////// sl@0: ///////////////// CW compiler warning options ////////////////////////////////////////////////////////// sl@0: sl@0: //Variable/argument is not used in function sl@0: //Possible unwanted sl@0: sl@0: OPTION CW -w nounused -w nounwanted sl@0: sl@0: ////////////////////////////////////////////////////////////////////////////////////////////////////////// sl@0: ///////////////// GCC compiler warning options ///////////////////////////////////////////////////////// sl@0: sl@0: //"-w" option suppresses all warnings! sl@0: //" might be used uninitialized in this function" - only this warning needs to be suppressed, sl@0: //but there is no option for that. sl@0: sl@0: OPTION GCC -w sl@0: sl@0: ////////////////////////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: OS_LAYER_SYSTEMINCLUDE_SYMBIAN sl@0: OS_LAYER_ESTLIB_SYSTEMINCLUDE sl@0: USERINCLUDE ../traces_sqlite sl@0: USERINCLUDE ../OsLayer sl@0: sl@0: #ifdef SYMBIAN_USE_SQLITE_VERSION_3_6_4 sl@0: USERINCLUDE ../SQLite364 sl@0: SOURCEPATH ../SQLite364 sl@0: SOURCE alter.c sl@0: SOURCE analyze.c sl@0: SOURCE attach.c sl@0: SOURCE auth.c sl@0: SOURCE bitvec.c sl@0: SOURCE btree.c sl@0: SOURCE build.c sl@0: SOURCE callback.c sl@0: SOURCE complete.c sl@0: SOURCE date.c sl@0: SOURCE delete.c sl@0: SOURCE expr.c sl@0: SOURCE fault.c sl@0: SOURCE func.c sl@0: SOURCE global.c sl@0: SOURCE hash.c sl@0: SOURCE insert.c sl@0: SOURCE journal.c sl@0: SOURCE legacy.c sl@0: SOURCE loadext.c sl@0: SOURCE main.c sl@0: SOURCE malloc.c sl@0: SOURCE mem1.c sl@0: SOURCE mem2.c sl@0: SOURCE mem3.c sl@0: SOURCE mem4.c sl@0: SOURCE mem5.c sl@0: SOURCE mem6.c sl@0: SOURCE mutex.c sl@0: SOURCE opcodes.c sl@0: SOURCE os.c sl@0: SOURCE pager.c sl@0: SOURCE pcache.c sl@0: SOURCE parse.c sl@0: SOURCE pragma.c sl@0: SOURCE prepare.c sl@0: SOURCE printf.c sl@0: SOURCE random.c sl@0: SOURCE resolve.c sl@0: SOURCE select.c sl@0: SOURCE status.c sl@0: SOURCE table.c sl@0: SOURCE tokenize.c sl@0: SOURCE trigger.c sl@0: SOURCE update.c sl@0: SOURCE utf.c sl@0: SOURCE util.c sl@0: SOURCE vacuum.c sl@0: SOURCE vdbe.c sl@0: SOURCE vdbeapi.c sl@0: SOURCE vdbeaux.c sl@0: SOURCE vdbeblob.c sl@0: SOURCE vdbefifo.c sl@0: SOURCE vdbemem.c sl@0: SOURCE vtab.c sl@0: SOURCE walker.c sl@0: SOURCE where.c sl@0: #else sl@0: USERINCLUDE ../SQLite sl@0: SOURCEPATH ../SQLite sl@0: SOURCE alter.c sl@0: SOURCE analyze.c sl@0: SOURCE attach.c sl@0: SOURCE auth.c sl@0: SOURCE bitvec.c sl@0: SOURCE btree.c sl@0: SOURCE build.c sl@0: SOURCE callback.c sl@0: SOURCE complete.c sl@0: SOURCE date.c sl@0: SOURCE delete.c sl@0: SOURCE expr.c sl@0: SOURCE fault.c sl@0: SOURCE func.c sl@0: SOURCE global.c sl@0: SOURCE hash.c sl@0: SOURCE insert.c sl@0: SOURCE journal.c sl@0: SOURCE legacy.c sl@0: SOURCE loadext.c sl@0: SOURCE main.c sl@0: SOURCE malloc.c sl@0: SOURCE mem1.c sl@0: SOURCE mem2.c sl@0: SOURCE mem3.c sl@0: SOURCE mem4.c sl@0: SOURCE mem5.c sl@0: SOURCE mem6.c sl@0: SOURCE mutex.c sl@0: SOURCE opcodes.c sl@0: SOURCE os.c sl@0: SOURCE pager.c sl@0: SOURCE parse.c sl@0: SOURCE pragma.c sl@0: SOURCE prepare.c sl@0: SOURCE printf.c sl@0: SOURCE random.c sl@0: SOURCE select.c sl@0: SOURCE status.c sl@0: SOURCE table.c sl@0: SOURCE tokenize.c sl@0: SOURCE trigger.c sl@0: SOURCE update.c sl@0: SOURCE utf.c sl@0: SOURCE util.c sl@0: SOURCE vacuum.c sl@0: SOURCE vdbe.c sl@0: SOURCE vdbeapi.c sl@0: SOURCE vdbeaux.c sl@0: SOURCE vdbeblob.c sl@0: SOURCE vdbefifo.c sl@0: SOURCE vdbemem.c sl@0: SOURCE vtab.c sl@0: SOURCE where.c sl@0: #endif sl@0: sl@0: SOURCEPATH ../OsLayer sl@0: SOURCE FileBuf64.cpp sl@0: SOURCE os_symbian.cpp sl@0: SOURCE SqliteUtil.cpp