Skip to content

Commit 027bc7d

Browse files
committed
Improved code optimization by default
ref: http://www.sqlite.org/footprint.html
1 parent 5b6351e commit 027bc7d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sqlite3.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ package sqlite3
77

88
/*
99
#cgo CFLAGS: -std=gnu99
10-
#include <sqlite3.h>
10+
#cgo CFLAGS: -Os
11+
#include "sqlite3.h"
1112
#include <stdlib.h>
1213
#include <string.h>
1314

0 commit comments

Comments
 (0)