我使用llvm在线编译器来编译我的示例C代码,
int main() { return 0; }
生成的LLVM程序集
; ModuleID = '/tmp/webcompile/_31588_0.bc'
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"
target triple = "x86_64-unknown-linux-gnu"
define i32 @main() nounwind uwtable {
%1 = alloca i32, align 4
store i32 0, i32* %1
ret i32 0
}
然后我将LLVM程序集编译为obj文件,
llc -filetype=obj a.ll
当我尝试使用link.exe a.o
链接obj文件时出现错误
fatal error LNK1107: invalid or corrupt file: cannot read at 0x438
如何生成正确的obj文件以提供给link.exe?
更多信息
如果我使用VC ++编译器将相同的代码编译到汇编中,它看起来像这样,
; Listing generated by Microsoft (R) Optimizing Compiler Version 17.00.50402.0
include listing.inc
INCLUDELIB LIBCMT
INCLUDELIB OLDNAMES
PUBLIC main
; Function compile flags: /Odtp
_TEXT SEGMENT
main PROC
; File c:\tmp\u.c
; Line 1
xor eax, eax
ret 0
main ENDP
_TEXT ENDS
END
llc -filetype=asm j.ll
生成以下代码。它也无法使用ml.exe。
.def _main;
.scl 2;
.type 32;
.endef
.text
.globl _main
.align 16, 0x90
_main: # @main
# BB#0:
pushl %eax
movl $0, (%esp)
xorl %eax, %eax
popl %edx
ret
答案 0 :(得分:1)
你在一个陌生的地方,你可以阅读:http://llvm.org/docs/GettingStartedVS.html这可能有帮助
答案 1 :(得分:1)
您的IR适用于x86-64 / linux,如目标三元组中所述。因此,llc将为您生成(默认情况下)ELF目标文件,而不是COFF。当然link.exe不接受它。
请注意,您不能只将目标三元组更改为某些窗口并假设一切正常: