Skip to content

Commit 2810686

Browse files
committed
Move kalam-pg into pg/ and update configs
Reorganize the Postgres extension by moving kalam-pg crates and related docker artifacts into a new pg/ subtree and updating workspace members in Cargo.toml. Adjust macOS LLVM/libclang paths in .cargo/config.toml to Homebrew locations. Apply a small test tweak (stream eviction test now uses Memory storage mode) and update various docs/scripts/specs to follow the reorganization. Also includes dependency/version updates and cleanup to align with the new layout.
1 parent 2d3cad0 commit 2810686

118 files changed

Lines changed: 1133 additions & 5514 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.cargo/config.toml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,23 @@
11
# Hint bindgen towards Command Line Tools libclang on macOS hosts
22
[target.aarch64-apple-darwin]
33
rustflags = [
4-
"-C", "link-arg=-Wl,-rpath,/Library/Developer/CommandLineTools/usr/lib",
4+
"-C", "link-arg=-Wl,-rpath,/opt/homebrew/opt/llvm/lib",
55
]
66

77
[target.aarch64-apple-darwin.env]
8-
LIBCLANG_PATH = "/Library/Developer/CommandLineTools/usr/lib"
9-
DYLD_FALLBACK_LIBRARY_PATH = "/Library/Developer/CommandLineTools/usr/lib"
10-
DYLD_LIBRARY_PATH = "/Library/Developer/CommandLineTools/usr/lib"
8+
LIBCLANG_PATH = "/opt/homebrew/opt/llvm/lib"
9+
LLVM_CONFIG_PATH = "/opt/homebrew/opt/llvm/bin/llvm-config"
10+
DYLD_FALLBACK_LIBRARY_PATH = "/opt/homebrew/opt/llvm/lib"
11+
DYLD_LIBRARY_PATH = "/opt/homebrew/opt/llvm/lib"
1112

1213
[target.x86_64-apple-darwin]
13-
rustflags = ["-C", "link-arg=-Wl,-rpath,/Library/Developer/CommandLineTools/usr/lib"]
14+
rustflags = ["-C", "link-arg=-Wl,-rpath,/usr/local/opt/llvm/lib"]
1415

1516
[target.x86_64-apple-darwin.env]
16-
LIBCLANG_PATH = "/Library/Developer/CommandLineTools/usr/lib"
17-
DYLD_FALLBACK_LIBRARY_PATH = "/Library/Developer/CommandLineTools/usr/lib"
18-
DYLD_LIBRARY_PATH = "/Library/Developer/CommandLineTools/usr/lib"
17+
LIBCLANG_PATH = "/usr/local/opt/llvm/lib"
18+
LLVM_CONFIG_PATH = "/usr/local/opt/llvm/bin/llvm-config"
19+
DYLD_FALLBACK_LIBRARY_PATH = "/usr/local/opt/llvm/lib"
20+
DYLD_LIBRARY_PATH = "/usr/local/opt/llvm/lib"
1921

2022
# --- WASM target - no special flags (avoid macOS linker flags) ---
2123
[target.wasm32-unknown-unknown]

0 commit comments

Comments
 (0)