can llvm generate .so and even .dll?

Hi!

if llvm can generate .so and .dll my bytecode cache problem would be easily
solved by creating shared libs for the target platform and loading them.

-Jochen

Nope, you'll have to call the system linker. =/

Reid

Nope, you'll have to call the system linker. =/
   

but can I create the appropiate object files? I think yes, but is there some
kind of tutorial around?

-Jochen

but can I create the appropiate object files? I think yes, but is there some
kind of tutorial around?

You can. Check what "llc -filetype=obj -o foo.o foo.bc" does.

-Jochen

Cheers,
Rafael