search for: reflect_sources

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

2011 Jan 27
2
[LLVMdev] Question about compiling plugins for LLVM tools
...are statically constructed, are getting loaded twice, once for the tool itself, and once for the plugin. However, I'm not sure how to create my plugin any differently. I'm using cmake's 'add_library(name SHARED ...)' to create the plugin like so: add_library(reflector SHARED ${REFLECT_SOURCES} ${COMMON_HEADERS} ${REFLECT_HEADERS}) target_link_libraries(reflector linker_common ${LLVM_TARGET} ${LLVM_CORE} ${LLVM_SUPPORT} ${LLVM_SYSTEM} ) Any advice on this? -- -- Talin -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://li...
2011 Feb 02
0
[LLVMdev] Question about compiling plugins for LLVM tools
...are > getting loaded twice, once for the tool itself, and once for the plugin. > > However, I'm not sure how to create my plugin any differently. I'm using > cmake's 'add_library(name SHARED ...)' to create the plugin like so: > > add_library(reflector SHARED ${REFLECT_SOURCES} ${COMMON_HEADERS} > ${REFLECT_HEADERS}) > target_link_libraries(reflector > linker_common > ${LLVM_TARGET} > ${LLVM_CORE} > ${LLVM_SUPPORT} > ${LLVM_SYSTEM} > ) > > > Any advice on this? > Still trying to puzzle this one out...what I thi...