search for: libbasicfrontends

Displaying 3 results from an estimated 3 matches for "libbasicfrontends".

2009 Dec 04
0
[LLVMdev] linking a parser bitcode
Hello > It is complaining about not being able to find __gxx_personality_sj0 and the LLVM command line parser-related files.  What else do we need to link? This is personality function for sjlj eh. How the source bitcode files in questions were generated? -- With best regards, Anton Korobeynikov Faculty of Mathematics and Mechanics, Saint Petersburg State University
2009 Dec 04
2
[LLVMdev] linking a parser bitcode
...D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -c -emit-llvm -omain.bc main.cpp The amos.bc file was generated by our experimental llvm-peg parser generator whose internal workings are assembled internally using LLVM Assembly. The parser generator links a C++ library bitcode with C bindings called libBasicFrontends.bc internally. The command line for the libBasicFrontends.bc is similar to the llvm-g++ command line given above. Is there anything we should be doing differently for the libBasicFrontends.bc file? Also, as a quick update, the command line parser is now linking properly so only the SJ/LJ stuff i...
2009 Dec 04
2
[LLVMdev] linking a parser bitcode
Hello again, My partner and I am modifying a PEG parser generator to produce LLVM bitcode from a version of a parsing expression grammar that takes LLVM Assembly as code. It accepts external libraries in its current state so we are writing an external library in C++ using C bindings for the linkage. Trying to get it to link is proving to be more challenging than expected. My partner is trying