I'm running the following
clang++ -o eva-llvm `llvm-config --cxx-flags --ldflags --system-libs --libs core` EvaLLVM.cpp
and getting the following
././src/EvaLLVM.h:6:10: fatal error: 'llvm/IR/IRBuilder.h' file not found
6 | #include "llvm/IR/IRBuilder.h"
| ^~~~~~~~~~~~~~~~~~~~~
i have the following when printing --cxxflags
interpretations@Daniels-MacBook-Pro eva-llvm % llvm-config --cxxflags
-I/opt/homebrew/Cellar/llvm/19.1.5/include -std=c++17 -stdlib=libc++ -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS
And can validate that the file is there with ls
So why can't clang find it?