LLVM Tablegen Error while executing

While executing I am getting these errors, Can anyone who have encountered this before help?

llvm-tblgen --color --print-records ~/llvm-project/llvm/lib/Target/AArch64/AArch64.td
/home/rex-mcw/llvm-project/llvm/lib/Target/AArch64/AArch64.td:16:9: error: Could not find include file ‘llvm/Target/Target.td’
include “llvm/Target/Target.td”
^
/home/rex-mcw/llvm-project/llvm/lib/Target/AArch64/AArch64.td:16:9: error: Unexpected token at top level
include “llvm/Target/Target.td”
^

And also is there any intellisense there for .td files to work with in vscode

Please use -I on llvm-tblgen to specify the include path. In your case it will probably be -I /path/to/llvm-project/llvm/include.

I don’t think there is any.

Thank you @mshockwave
It works!