<div dir="ltr"><p>Hello all,</p><p>Still, is it impossible to use the external llvm custom pass on windows?</p><p>I can build the 'mypass.dll' on windows using LLVM libraries. And, I use these 2 way to use my pass.<br>clang.exe -Xclang -load -Xclang mypass.dll -c test.c<br>opt.exe -load -Xclang mypass.dll -mypass test.bc -o optimized_test.bc</p><p><br>But, Clang and opt didn't working well with my pass.</p><p><br>This mean, my pass can dump the llvm::Module in compilation time. and my pass can dump that on Linux. but, my pass didn't print anything on Windows.</p><p>Additionally, i already built the LLVM and Clang on Windows using CMake.</p><p>To avoid confusing, i'm writing my source code.</p><p>#include <iostream><br>using namespace std;</p><p>#include <llvm/Pass.h><br>#include <llvm/IR/Module.h><br>using namespace llvm;</p><p>class SampleIRModule : public llvm::ModulePass {<br>  public:<br>    static char ID;<br>    SampleIRModule() : llvm::ModulePass(ID) {}</p><p>    bool runOnModule(llvm::Module &M);<br>};</p><p>bool SampleIRModule::runOnModule(llvm::Module &M) {<br>    M.dump();<br>    return false;<br>}</p><p>char SampleIRModule::ID = 0;<br>static RegisterPass<SampleIRModule> X("SampleIRModule", "SampleIRModule Pass");</p><p><br>And,here is my build command on windows.<br>cl /EHsc -ID:\LLVM\llvm-3.4.2\build_nmake\output/include    -D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS -D_CRT_NONSTDC_NO_DEPRECATE -D_CRT_NONSTDC_NO_WARNINGS -D_SCL_SECURE_NO_DEPRECATE -D_SCL_SECURE_NO_WARNINGS -wd4146 -wd4180 -wd4244 -wd4267 -wd4345 -wd4351 -wd4355 -wd4503 -wd4624 -wd4800 -wd4291 -w14062 -we4238 -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -c testpass.cpp</p><p>cl /D_USRDLL /D_WINDLL testpass.obj /link /DLL /OUT:testpass.dll D:\LLVM\llvm-3.4.2\build_nmake\output\lib\LLVMCore.lib ... (including other LLVM libraries)</p><p>Thanks,<br>Seok Hong</p></div>