gcc -Hello.s Проблема

Моя система Ubuntu 18.04 64bit .с установленными основами сборки и devtools.

Привет, у меня есть файл сборки под названием Hello.s Вот его содержимое:

        #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:
    pushq   %rbp        #save the old frame pointer
    movq    %rsp,   %rbp    #create the new frame pointer

    movq    $str,%rdi   #the string is the only paramter passed to the printf function (remember- first parameter goes in %rdi).
    movq    $0,%rax
    call    printf      #calling to printf AFTER we passed its parameters.

    #return from printf:
    movq    $0, %rax    #return value is zero (just like in c - we tell the OS that this program finished seccessfully)
    movq    %rbp, %rsp  #restore the old stack pointer - release all used memory.
    popq    %rbp        #restore old frame pointer (the caller function frame)
    ret         #return to caller function (OS)

Попытка скомпилировать его с помощью gcc -Hello.s возвращает следующее сообщение:

/usr/bin/ld: /tmp/ccY9hdWi.o: relocation R_X86_64_32S against `.rodata' can not be used when making a PIE object; recompile with -fPIC

/ usr / bin / ld: окончательная ссылка не удалась: непредставительный раздел на выходе collect2: ошибка: ld вернул 1 состояние выхода

Попробовал gcc -fPIC Hello.s, который не имеет никакого эффекта - выдает то же сообщение.

Некоторые люди говорили мне установить gcc-4.8, но это не сработало

Также была предложена установка предыдущей версии Ubuntu. Ну, на мой взгляд, это последнее средство.

Какие-либо предложения?

1 ответ

Решение

Для всех, кто заинтересован. (Не так тривиально для новичков, как я:)) На самом деле можно выбирать между компиляторами! так:

gcc-4.8 Hello.s

это ответ.

Другие вопросы по тегам