search for: lomo

Displaying 4 results from an estimated 4 matches for "lomo".

Did you mean: como
2009 Sep 22
2
[LLVMdev] help with llvm make system
Hi, I'm working on a compiler for a small toy language and I'm using the llvm sample project layout, i.e. the llvm make system. I've got one library (lomo-core) which contains my parser and all that stuff and one tool (lomoc) which is my compiler executable. The tool declares the library as dependency using: USEDLIBS = lomo-core Now that I've started to add IR generation I declared the following dependencies in the library makefile: LINK_COMPONE...
2009 Sep 22
0
[LLVMdev] help with llvm make system
Stefan Oestreicher <stefan.oestreicher at deluxe-design.at> writes: [snip] > Unfortunately no matter what I do to the makefile of the compiler tool > it won't compile. I always get errors in llvm/Support/Annotation.h that > look like some type declarations are missing. Unfortunately my > experience building C/C++ programs, especially with autoconf etc., is > very
2009 Sep 22
1
[LLVMdev] help with llvm make system
...7: error: expected `{' before numeric constant f:/dev/projects/llvm-2.5/include/llvm/Support/Annotation.h: In copy constructor `llvm::AnnotationID::AnnotationID(const llvm::AnnotationID&)': and this is the compile command: if g++ -I/f/dev/projects/llvm-2.5/include -I/f/dev/projects/lomo-antlr/include -I/f/dev/projects/lomo-antlr/tools/lomoc -D_DEBUG -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -g -fno-exceptions -I/usr/local/include -Woverloaded-virtual -pedantic -Wall -W -Wwrite-strings -Wno-long-long -Wunused -Wno-unused-parameter -c -MMD -MP -MF "/f...
2009 Sep 22
3
[LLVMdev] help with llvm make system
Hi, I'm working on a compiler for a small toy language and I'm using the llvm sample project layout, i.e. the llvm make system. I've got one library (lomo-core) which contains my parser and all that stuff and one tool (lomoc) that's my compiler. The tool declares the library as dependency using: USEDLIBS = lomo-core Now that I've started to add IR generation I declared the following dependencies in the library makefile: LINK_COMPONENTS :=...