From 86173f355a152c5d8f02990679a87e25e71a67a0 Mon Sep 17 00:00:00 2001 From: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Date: Thu, 23 Jun 2022 01:41:06 -0700 Subject: [PATCH] maybe that fixes it? --- .gitattributes | 1 + Makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index 4aa7a62d6c..7fc8923617 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,5 +1,6 @@ .vscode/launch.json linguist-generated src/api/schema.d.ts linguist-generated +fixture.*.c linguist-generated src/api/schema.js linguist-generated src/bun.js/bindings/sqlite/sqlite3.c linguist-vendored src/bun.js/bindings/sqlite/sqlite3_local.h linguist-vendored diff --git a/Makefile b/Makefile index b754ad70fa..8edb04935c 100644 --- a/Makefile +++ b/Makefile @@ -1266,7 +1266,7 @@ sizegen: # Linux uses bundled SQLite3 ifeq ($(OS_NAME),linux) sqlite: - $(CC) $(CFLAGS) $(INCLUDE_DIRS) $(EMIT_LLVM_FOR_RELEASE) -DSQLITE_ENABLE_COLUMN_METADATA= -DSQLITE_MAX_VARIABLE_NUMBER=250000 -DSQLITE_ENABLE_RTREE=1 -DSQLITE_ENABLE_FTS3=1 -DSQLITE_ENABLE_FTS3_PARENTHESIS=1 -DSQLITE_ENABLE_JSON1=1 -c $(SRC_DIR)/sqlite/sqlite3.c -o $(SQLITE_OBJECT) + $(CC) $(CFLAGS) $(INCLUDE_DIRS) $(EMIT_LLVM_FOR_RELEASE) -DSQLITE_ENABLE_COLUMN_METADATA= -DSQLITE_MAX_VARIABLE_NUMBER=250000 -DSQLITE_ENABLE_RTREE=1 -DSQLITE_ENABLE_FTS3=1 -DSQLITE_ENABLE_FTS3_PARENTHESIS=1 -DSQLITE_ENABLE_JSON1=1 $(SRC_DIR)/sqlite/sqlite3.c -c -o $(SQLITE_OBJECT) endif picohttp: