How to link object to libraries with LLVM >= 3.1 ? ( no GNU ld )
How I can generate a working executable with the tools provided with Llvm/Clang ( version 3.3 (trunk 168461) ) ? I have compiled an object with clang++ -c [...] and i would like to try to link this object to 1 specific library and see if this can generate a working executable. I have noticed that from the 3.1 release llvm-ld it's been removed and llvm-link doesn't look like it has inherited all the options from llvm-ld , although it's marked as the alternative to llvm-ld on the official docs, so i just don't get how I'm supposed to link this object. I don't want to use ld from the GNU/GCC