Snapshot of upstream SQLite 3.8.4.3
[sqlcipher.git] / tool / warnings.sh
blob246bccbe23a4fbdab5777892fc201b376b1e4779
1 #/bin/sh
3 # Run this script in a directory with a working makefile to check for
4 # compiler warnings in SQLite.
6 rm -f sqlite3.c
7 make sqlite3.c-debug
8 echo '********** No optimizations. Includes FTS4 and RTREE *********'
9 gcc -c -Wshadow -Wall -Wextra -pedantic-errors -Wno-long-long -std=c89 \
10 -ansi -DHAVE_STDINT_H -DSQLITE_ENABLE_FTS4 -DSQLITE_ENABLE_RTREE \
11 sqlite3.c
12 echo '********** No optimizations. ENABLE_STAT4. THREADSAFE=0 *******'
13 gcc -c -Wshadow -Wall -Wextra -pedantic-errors -Wno-long-long -std=c89 \
14 -ansi -DSQLITE_ENABLE_STAT4 -DSQLITE_THREADSAFE=0 \
15 sqlite3.c
16 echo '********** Optimized -O3. Includes FTS4 and RTREE ************'
17 gcc -O3 -c -Wshadow -Wall -Wextra -pedantic-errors -Wno-long-long -std=c89 \
18 -ansi -DHAVE_STDINT_H -DSQLITE_ENABLE_FTS4 -DSQLITE_ENABLE_RTREE \
19 sqlite3.c