Displaying 2 results from an estimated 2 matches for "seok85".
Did you mean:
seok
2015 Jul 22
2
[LLVMdev] is it impossible to use the external llvm custom pass on windows?
Hello all,
Still, is it impossible to use the external llvm custom pass on windows?
I can build the 'mypass.dll' on windows using LLVM libraries. And, I use
these 2 way to use my pass.
clang.exe -Xclang -load -Xclang mypass.dll -c test.c
opt.exe -load -Xclang mypass.dll -mypass test.bc -o optimized_test.bc
But, Clang and opt didn't working well with my pass.
This mean, my pass
2015 Jul 22
1
[LLVMdev] is it impossible to use the external llvm custom pass on windows?
...(testpass.cpp)
Thanks,
Seok Hong
2015-07-22 22:10 GMT+09:00 mats petersson <mats at planetcatfish.com>:
> It would probably help if you explained what happens and how that is
> different from what you expect...
>
> --
> Mats
>
> On 22 July 2015 at 13:17, Hong Seok <seok85.hong at gmail.com> wrote:
>
>> Hello all,
>>
>> Still, is it impossible to use the external llvm custom pass on windows?
>>
>> I can build the 'mypass.dll' on windows using LLVM libraries. And, I use
>> these 2 way to use my pass.
>> clang.exe...