Milestone 2

This commit is contained in:
Joey Yakimowich-Payne 2026-01-29 17:24:51 -07:00
commit 866f0419ad
19 changed files with 2006 additions and 23 deletions

14
.envrc Normal file
View file

@ -0,0 +1,14 @@
# Environment setup for warppipe LSP
# Source this file or use direnv (https://direnv.net/)
# Tell clangd to query GCC for system includes
export CLANGD_FLAGS="--query-driver=/home/linuxbrew/.linuxbrew/bin/g++"
# Optional: Set C++ include paths (some tools respect this)
export CPLUS_INCLUDE_PATH="/var/home/linuxbrew/.linuxbrew/Cellar/gcc/15.2.0/include/c++/15:/var/home/linuxbrew/.linuxbrew/Cellar/gcc/15.2.0/include/c++/15/x86_64-pc-linux-gnu"
# Ensure Homebrew GCC is in PATH
export PATH="/home/linuxbrew/.linuxbrew/bin:$PATH"
# Ensure pkg-config can find pipewire
export PKG_CONFIG_PATH="/home/linuxbrew/.linuxbrew/lib/pkgconfig:$PKG_CONFIG_PATH"