This commit is contained in:
Alex Garcia 2024-07-31 12:55:46 -07:00
parent 47e61aa187
commit e8219064cb
2 changed files with 1 additions and 2 deletions

View file

@ -4,7 +4,6 @@ ASAN_OPTIONS=detect_leaks=1 ./targets/vec0_create \
./corpus/vec0-create
```
```
export PATH="/opt/homebrew/opt/llvm/bin:$PATH"
export LDFLAGS="-L/opt/homebrew/opt/llvm/lib"

View file

@ -2,7 +2,7 @@ async function main() {
const { default: init } = await import("../dist/.wasm/sqlite3.mjs");
const sqlite3 = await init();
const vec_version = new sqlite3.oo1.DB(":memory:").selectValue(
"select vec_version()"
"select vec_version()",
);
console.log(vec_version);
}