Skip to content

Commit 3f14a04

Browse files
Cleanup
1 parent db19955 commit 3f14a04

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# Sqlite Lean4
1+
# SQLite Lean
22

3-
Uses the (amalgamation)[https://sqlite.org/amalgamation.html] of (SQLite)[https://sqlite.org/download.html], which bundles all of SQLite into one .c file for easy compilation.
3+
Uses the [amalgamation](https://sqlite.org/amalgamation.html) of [SQLite](https://sqlite.org/), which bundles all of SQLite into one .c file for easy compilation.

lakefile.lean

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,13 @@ target sqlite.o pkg : FilePath := do
1313
let sqliteHeaders := pkg.dir / "native"
1414
-- Ensure that both sqlite3.h and sqlite3ext.h are available during compilation
1515
let weakArgs := #["-I", sqliteHeaders.toString]
16-
-- Use configured compiler variable to allow Windows toolchains to choose the proper C compiler
1716
buildO oFile srcJob weakArgs #["-fPIC"] compiler getLeanTrace
1817

1918
target sqliteffi.o pkg : FilePath := do
2019
let oFile := pkg.dir / "native" / "sqliteffi.o"
2120
let srcJob ← inputTextFile <| pkg.dir / "native" / "sqliteffi.c"
2221
let sqliteHeaders := pkg.dir / "native"
2322
let weakArgs := #["-I", (← getLeanIncludeDir).toString, "-I", sqliteHeaders.toString]
24-
-- Use configured compiler variable to allow Windows toolchains to choose the proper C compiler
2523
buildO oFile srcJob weakArgs #["-fPIC"] compiler getLeanTrace
2624

2725
extern_lib libsqlite pkg := do

0 commit comments

Comments
 (0)