walterDurin / sqlite-jdbc

Automatically exported from code.google.com/p/sqlite-jdbc
Apache License 2.0
0 stars 0 forks source link

= How to compile a new version of SQLiteJDBC

= How to submit a patch

(do some change) hg commit -m 'what changesa are made to the source' hg export tip > patch.diff

submit the patch to the issue tracker: http://code.google.com/p/xerial/issues/list

= How to build Win64 native library

After the installation, make sure your PATH environment variable points /usr/bin before /bin.

Here is the excerpt from http://mingw-w64.sourceforge.net/

The mingw-w64 toolchain has been officially added to Cygwin mirrors, you can find the basic C toolchain as mingw64-x86_64-gcc-core. The languages enabled are C, Ada, C++, Fortran, Object C and Objective C++. There is a known caveat where calling the compiler directly as "/bin/x86_64-w64-mingw32-gcc" will fail, use "/usr/bin/x86_64-w64-mingw32-gcc" instead and make sure that your PATH variable has "/usr/bin" before "/bin".

Instead, you can explicitly set the compiler: $ make native Windows-amd64_CC=/usr/bin/x86_64-w64-mingw32-gcc

= How to build pure-java library

= (for deployer only) How to build pure-java and native libraries

= How to deploy to the maven repository