Displaying 2 results from an estimated 2 matches for "llvmcodegenleveldefault".
2017 Sep 19
2
What is the correct Targettripple for generating a X86 COFF-Files on windows?
...e
come to the point where i want to emit a binary file for my module. I
queried the X86-Target and called LLVMCreateTargetMachine this way:
> LTarget := LLVMGetTargetFromName('x86');
> LMachine := LLVMCreateTargetMachine(LTarget, 'i386-win32-msvc', nil,
> nil, LLVMCodeGenLevelDefault, LLVMRelocDefault, LLVMCodeModelDefault);
>
A call to LLVMTargetMachineEmitToFile using LLVMObjectFile does output a
obj-file. But it seems it is an ELF-File. Looking through the code(and
looking into the Tripple.cpp) i am not sure what to do exactly for creating
a COFF-File.
Best regards
Alex...
2017 Sep 19
0
What is the correct Targettripple for generating a X86 COFF-Files on windows?
...here i want to emit a binary file for my module. I
> queried the X86-Target and called LLVMCreateTargetMachine this way:
>
>> LTarget := LLVMGetTargetFromName('x86');
>> LMachine := LLVMCreateTargetMachine(LTarget, 'i386-win32-msvc',
>> nil, nil, LLVMCodeGenLevelDefault, LLVMRelocDefault, LLVMCodeModelDefault);
>>
>
> A call to LLVMTargetMachineEmitToFile using LLVMObjectFile does output a
> obj-file. But it seems it is an ELF-File. Looking through the code(and
> looking into the Tripple.cpp) i am not sure what to do exactly for creating
> a C...