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

Unified Diff: third_party/sqlite/src/Makefile.linux-gcc

Issue 9110047: The complete work-in-progress SQLite recover virtual table. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/sqlite/src/create_tables » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/src/Makefile.linux-gcc
diff --git a/third_party/sqlite/src/Makefile.linux-gcc b/third_party/sqlite/src/Makefile.linux-gcc
index dca360e8bb5c542689c6d954be25fd7cca6e04dd..857695fca2ed9f2a2c0ce591990cdc6f01663c3d 100644
--- a/third_party/sqlite/src/Makefile.linux-gcc
+++ b/third_party/sqlite/src/Makefile.linux-gcc
@@ -60,7 +60,7 @@ TLIBS =
# These flags match those for SQLITE_CFLAGS in config.mk.
-OPTS += -DNDEBUG
+#OPTS += -DNDEBUG
OPTS += -DSQLITE_CORE
OPTS += -DSQLITE_ENABLE_FTS2 -DSQLITE_ENABLE_BROKEN_FTS2
OPTS += -DSQLITE_DEFAULT_FILE_PERMISSIONS=0600
@@ -76,6 +76,7 @@ OPTS += -DSQLITE_MEMDEBUG=1
# -DSQLITE_TRANSACTION_DEFAULT_IMMEDIATE=1 \
SHELL_ICU = $(TOP)/src/shell_icu_linux.c -licuuc
+SHELL_ICU =
# TODO(shess) I can't see why I need this setting.
OPTS += -DOS_UNIX=1
@@ -90,8 +91,8 @@ EXE =
# will run on the target platform. This is usually the same
# as BCC, unless you are cross-compiling.
#
-TCC = gcc -O6
-#TCC = gcc -g -O0 -Wall
+#TCC = gcc -O6
+TCC = gcc -g -O0 -Wall
#TCC = gcc -g -O0 -Wall -fprofile-arcs -ftest-coverage
#TCC = /opt/mingw/bin/i386-mingw32-gcc -O6
#TCC = /opt/ansic/bin/c89 -O +z -Wl,-a,archive
@@ -130,13 +131,13 @@ TCLOBJ = tclsqlite.o
#### Compiler options needed for programs that use the readline() library.
#
-READLINE_FLAGS =
-#READLINE_FLAGS = -DHAVE_READLINE=1 -I/usr/include/readline
+#READLINE_FLAGS =
+READLINE_FLAGS = -DHAVE_READLINE=1 -I/usr/include/readline
#### Linker options needed by programs using readline() must link against.
#
-LIBREADLINE =
-#LIBREADLINE = -static -lreadline -ltermcap
+#LIBREADLINE =
+LIBREADLINE = -lreadline -ltermcap
#### Which "awk" program provides nawk compatibilty
#
« no previous file with comments | « no previous file | third_party/sqlite/src/create_tables » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698