在x64 linux上编译x86程序集时出现问题

在x64 linux上编译x86程序集时出现问题,linux,gcc,assembly,x86,Linux,Gcc,Assembly,X86,我尝试在x64 ubuntu上编译用X86编写的汇编代码,但出现以下错误: gcc -m32 -o T Tirgul3b_Hello.s /usr/bin/ld: cannot find crt1.o: No such file or directory /usr/bin/ld: cannot find crti.o: No such file or directory /usr/bin/ld: skipping incompatible /usr/lib/gcc/x86_64-linux-gn

我尝试在x64 ubuntu上编译用X86编写的汇编代码,但出现以下错误:

gcc -m32 -o T Tirgul3b_Hello.s
/usr/bin/ld: cannot find crt1.o: No such file or directory
/usr/bin/ld: cannot find crti.o: No such file or directory
/usr/bin/ld: skipping incompatible /usr/lib/gcc/x86_64-linux-gnu/4.8/libgcc.a when searching for -lgcc
/usr/bin/ld: cannot find -lgcc
/usr/bin/ld: skipping incompatible /usr/lib/gcc/x86_64-linux-gnu/4.8/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: cannot find -lgcc_s
/usr/bin/ld: cannot find -lc
/usr/bin/ld: skipping incompatible /usr/lib/gcc/x86_64-linux-gnu/4.8/libgcc.a when searching for -lgcc
/usr/bin/ld: cannot find -lgcc
/usr/bin/ld: skipping incompatible /usr/lib/gcc/x86_64-linux-gnu/4.8/libgcc_s.so when searching for -lgcc_s
/usr/bin/ld: cannot find -lgcc_s
/usr/bin/ld: cannot find crtn.o: No such file or directory
collect2: error: ld returned 1 exit status
这是我试图编译的代码:

    #This is a simple "Hello World!" program
    .section    .rodata #read only data section
str:    .string "Hello World!\n"
    ########
    .text   #the beginnig of the code
.globl  main    #the label "main" is used to state the initial point of this program
    .type   main, @function # the label "main" representing the beginning of a function
main:   # the main function:
    pushl   %ebp        #save the old frame pointer
    movl    %esp,   %ebp    #create the new frame pointer

    pushl   $str        #the string is the only paramter passed to the printf function.
    call    printf      #calling to printf AFTER we put its parameters in the stack.

    #return from printf:
    movl    $0, %eax    #return value is zero (just like in c - we tell the OS that this program finished seccessfully)
    movl    %ebp,   %esp    #restore the old stack pointer - release all used memory.
    popl    %ebp        #restore old frame pointer (the caller function frame)
    ret         #return to caller function (OS)
我在这里遗漏了什么?我该如何修复它


如果您需要任何额外的信息,请发表评论。

正如Michael Petch所说,安装
gcc
g++
库就成功了。我安装了:

sudo apt-get install gcc-multilib g++-multilib

尝试安装gcc和g++的多库版本<代码>sudo apt get install gcc multi-lib g++-multi-lib成功了。我有预感它缺少图书馆,但不知道如何找到。想写下答案让我接受吗,还是我应该去做?你可以回答,但它和我以前见过的关于这个主题的其他问题类似。你的问题不是重复的,但也不是新的。