Displaying 2 results from an estimated 2 matches for "build_nmak".
Did you mean:
build_nmake
2015 Jul 22
2
[LLVMdev] is it impossible to use the external llvm custom pass on windows?
...bool SampleIRModule::runOnModule(llvm::Module &M) {
M.dump();
return false;
}
char SampleIRModule::ID = 0;
static RegisterPass<SampleIRModule> X("SampleIRModule", "SampleIRModule
Pass");
And,here is my build command on windows.
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_...
2015 Jul 22
1
[LLVMdev] is it impossible to use the external llvm custom pass on windows?
...urn false;
>> }
>>
>> char SampleIRModule::ID = 0;
>> static RegisterPass<SampleIRModule> X("SampleIRModule", "SampleIRModule
>> Pass");
>>
>>
>> And,here is my build command on windows.
>> 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 -wd429...