Skip to content

Commit

Permalink
Update the built-in SQLite to the first 3.19.0 beta.
Browse files Browse the repository at this point in the history
Add -DSQLITE_DEBUG to the Makefile.no-odbc.
Fix a compiler warning in sqllogictest.c.
  • Loading branch information
drh committed May 13, 2017
1 parent 31e3853 commit f076a50
Show file tree
Hide file tree
Showing 4 changed files with 2,564 additions and 1,782 deletions.
5 changes: 3 additions & 2 deletions src/Makefile.no-odbc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ E =
#### C Compile and options for use in building executables that
# will run on the target platform.
#
CC = gcc -g -Wall
CC = gcc -g -Wall -Os
#CC = gcc -g -Wall -DOMIT_ODBC=1 -fprofile-arcs -ftest-coverage
#CC += -DSQLITE_COVERAGE_TEST
CC += -DSQLITE_NO_SYNC=1 -DOMIT_ODBC=1
Expand All @@ -29,6 +29,7 @@ INC = \
slt_odbc3.c

OPTS += -DSQLITE_THREADSAFE=0
OPTS += -DSQLITE_DEBUG

# The following OMIT options must match the OMIT options used to build
# the amalgamation.
Expand All @@ -42,7 +43,7 @@ md5.o: md5.c
$(CC) -c md5.c

sqlite3.o: sqlite3.c sqlite3.h
$(CC) -c sqlite3.c $(OPTS)
$(CC) $(OPTS) -c sqlite3.c

clean:
rm -f $(OBJ)
Loading

0 comments on commit f076a50

Please sign in to comment.