Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(138)

Side by Side Diff: third_party/sqlite/src/tool/symbols.sh

Issue 901033002: Import SQLite 3.8.7.4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Chromium changes to support SQLite 3.8.7.4. Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 #!/bin/sh 1 #!/bin/sh
2 # 2 #
3 # Run this script in a directory that contains a valid SQLite makefile in 3 # Run this script in a directory that contains a valid SQLite makefile in
4 # order to verify that unintentionally exported symbols. 4 # order to verify that unintentionally exported symbols.
5 # 5 #
6 make sqlite3.c 6 make sqlite3.c
7 7
8 echo '****** Exported symbols from a build including RTREE, FTS4 & ICU ******' 8 echo '****** Exported symbols from a build including RTREE, FTS4 & ICU ******'
9 gcc -c -DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_RTREE \ 9 gcc -c -DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_RTREE \
10 -DSQLITE_ENABLE_MEMORY_MANAGEMENT -DSQLITE_ENABLE_STAT3 \ 10 -DSQLITE_ENABLE_MEMORY_MANAGEMENT -DSQLITE_ENABLE_STAT3 \
(...skipping 14 matching lines...) Expand all
25 sqlite3.c 25 sqlite3.c
26 nm sqlite3.o | grep ' U ' | sort -k 3 26 nm sqlite3.o | grep ' U ' | sort -k 3
27 27
28 echo '****** Dependencies including RTREE & FTS4 *******' 28 echo '****** Dependencies including RTREE & FTS4 *******'
29 gcc -c -DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_RTREE \ 29 gcc -c -DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_RTREE \
30 -DSQLITE_ENABLE_MEMORY_MANAGEMENT -DSQLITE_ENABLE_STAT3 \ 30 -DSQLITE_ENABLE_MEMORY_MANAGEMENT -DSQLITE_ENABLE_STAT3 \
31 -DSQLITE_ENABLE_MEMSYS5 -DSQLITE_ENABLE_UNLOCK_NOTIFY \ 31 -DSQLITE_ENABLE_MEMSYS5 -DSQLITE_ENABLE_UNLOCK_NOTIFY \
32 -DSQLITE_ENABLE_COLUMN_METADATA -DSQLITE_ENABLE_ATOMIC_WRITE \ 32 -DSQLITE_ENABLE_COLUMN_METADATA -DSQLITE_ENABLE_ATOMIC_WRITE \
33 sqlite3.c 33 sqlite3.c
34 nm sqlite3.o | grep ' U ' | sort -k 3 34 nm sqlite3.o | grep ' U ' | sort -k 3
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698