search for: headerfilenam

Displaying 2 results from an estimated 2 matches for "headerfilenam".

Did you mean: headerfilename
2007 Feb 13
0
[LLVMdev] using dsa from llvm-poolalloc
...gen.sh from the > autoconf directory or the configure script generated by AutoRegen.sh, > so that the DSA include files will be searched when compiling my code? First, the DSA header files are within a different relative directory. In your source file, you should write: #include <dsa/headerfilename.h> instead of: #include <llvm/Analysis/DataStructure/headerfilename.h> Second, you need to pass a -I<directory> option to gcc so that it knows where to find these header files. The easiest thing to do is to hard-code the path in your Makefile. To do that, add the following 3...
2007 Feb 13
2
[LLVMdev] using dsa from llvm-poolalloc
I have a few questions on using dsa now that it has been moved out of llvm. I have llvm -r release_19 checked out from cvs, and llvm-poolalloc -r release_19 checked out from cvs into the projects directory, as John Criswell previously suggested. 1) I have some compiler transforms that I'm writing that use DSA. They can no longer find the header files for DSA. My transforms are located