| 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
|
| #
|
|
|