We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 034b75c commit 098514dCopy full SHA for 098514d
.gitignore
@@ -1,2 +1,3 @@
1
*.zip
2
*_test
3
+sqlite3.obj
sqlite.c.v
@@ -3,9 +3,12 @@ module sqlite
#flag -I@VMODROOT
4
#flag -L@VMODROOT
5
#flag @VMODROOT/sqlite3.o
6
-#flag -lpthread
7
8
-$if tinyc {
+$if !windows {
+ #flag -lpthread
9
+}
10
+
11
+$if tinyc && !windows {
12
// Needed because there are two usages of `fabs` in `sqlite3.c:129796:if( fabs(s) > fabs(r) ){`
13
// gcc and clang manage to compile it without needing -lm ...
14
#flag -lm
0 commit comments