Displaying 2 results from an estimated 2 matches for "cygbugpointpasses".
2011 Mar 24
2
[LLVMdev] Loading LLVM passes on Cygwin
I am trying to write an LLVM pass on Windows using Cygwin. When I "make" the
project, a dll gets created in the Release/bin directory instead of a .so
file in the Release/lib directory. The latter is what is shown in the LLVM
documentation. When I try to load this dll using the -load flag to opt,
nothing happens.
$opt -load ../../../Release/bin/Pass.dll -help
The pass that I am trying
2011 Mar 24
0
[LLVMdev] Loading LLVM passes on Cygwin
Arjun, please try "configure --enable-shared" and link your dll to
cygLLVM*.dll .
With --enable-shared, you may build cygLLVMHello.dll manually, "make
-C lib/Transforms/Hello" .
(You can see cygBugpointPasses.dll, too)
...Takumi