2013-08-24 23 views
10

Jak dodać ctr0.o?Jak rozwiązać problem z łączeniem crt0.o w kompilacji krzyżowej?

otrzymuję ten błąd:

yagarto-4.7.2/bin/arm-none-eabi-ld: cannot find crt0.o: No such file or directory 
collect2: error: ld returned 1 exit status` 

podczas kompilacji bardzo prosty program z here:

/* -- first.s */ 
/* This is a comment */ 
.global main /* 'main' is our entry point and must be global */ 
.func main /* 'main' is a function */ 

main:   /* This is main */ 
    mov r0, #2 /* Put a 2 inside the register r0 */ 
    bx lr  /* Return from main */ 

Widziałem te 2 wątki i nie dostać żadnej pełnej i jednoznacznej odpowiedzi naprzód:

  1. http://www.raspberrypi.org/phpBB3/viewtopic.php?t=50046
  2. What is the rationale behind removing crt0.o from gcc4.7.x?

Mam te pliki, jaka jest różnica między crt0 i crtn nie mogę tego użyć?

./yagarto-4.7.2/lib/gcc/arm-none-eabi/4.7.2/crtbegin.o 
./yagarto-4.7.2/lib/gcc/arm-none-eabi/4.7.2/crtend.o 
./yagarto-4.7.2/lib/gcc/arm-none-eabi/4.7.2/crti.o 
./yagarto-4.7.2/lib/gcc/arm-none-eabi/4.7.2/crtn.o 
./yagarto-4.7.2/lib/gcc/arm-none-eabi/4.7.2/thumb/crtbegin.o 
./yagarto-4.7.2/lib/gcc/arm-none-eabi/4.7.2/thumb/crtend.o 
./yagarto-4.7.2/lib/gcc/arm-none-eabi/4.7.2/thumb/crti.o 
./yagarto-4.7.2/lib/gcc/arm-none-eabi/4.7.2/thumb/crtn.o 
./yagarto-4.7.2/lib/gcc/arm-none-eabi/4.7.2/thumb/v6m/crtbegin.o 
./yagarto-4.7.2/lib/gcc/arm-none-eabi/4.7.2/thumb/v6m/crtend.o 
./yagarto-4.7.2/lib/gcc/arm-none-eabi/4.7.2/thumb/v6m/crti.o 
./yagarto-4.7.2/lib/gcc/arm-none-eabi/4.7.2/thumb/v6m/crtn.o 
./yagarto-4.7.2/lib/gcc/arm-none-eabi/4.7.2/thumb/v7m/crtbegin.o 
./yagarto-4.7.2/lib/gcc/arm-none-eabi/4.7.2/thumb/v7m/crtend.o 
./yagarto-4.7.2/lib/gcc/arm-none-eabi/4.7.2/thumb/v7m/crti.o 
./yagarto-4.7.2/lib/gcc/arm-none-eabi/4.7.2/thumb/v7m/crtn.o 

sposób roztworu daje obejście nie działa albo:

arm-none-eabi-gcc -o first assembler_tutorial/chapter01/first.o -nostartfiles 
./yagarto-4.7.2/bin/arm-none-eabi-ld: warning: cannot find entry symbol _start; defaulting to 0000000000008000 

Odpowiedz

9

vectors.s

.globl _start 
_start: 
    mov sp,#0x8000 
    bl main 
hang: b hang 

main.s

.globl main 
main: 
    mov r0,#2 
    bx lr 

memmap (linker skrypt)

MEMORY 
{ 
    ram : ORIGIN = 0x8000, LENGTH = 0x10000 
} 
SECTIONS 
{ 
    .text : { *(.text*) } > ram 
    .bss : { *(.bss*) } > ram 
} 

polecenia

arm-none-eabi-as vectors.s -o vectors.o 
arm-none-eabi-as main.s -o main.o 
arm-none-eabi-ld vectors.o main.o -T memmap -o main.elf 
arm-none-eabi-objdump -D main.elf > main.list 
arm-none-eabi-objcopy main.elf -O binary main.bin 

wynik

main.elf:  file format elf32-littlearm 


Disassembly of section .text: 

00008000 <_start>: 
    8000: e3a0d902 mov sp, #32768 ; 0x8000 
    8004: eb000000 bl 800c <main> 

00008008 <hang>: 
    8008: eafffffe b 8008 <hang> 

0000800c <main>: 
    800c: e3a00002 mov r0, #2 
    8010: e12fff1e bx lr 

Jeśli chcesz użyć C zamiast asm za główny następnie

main.c

int main (void) 
{ 
    return(2); 
} 

polecenia

arm-none-eabi-as vectors.s -o vectors.o 
arm-none-eabi-gcc -Wall -Werror -O2 -nostdlib -nostartfiles -ffreestanding -c main.c -o main.o 
arm-none-eabi-ld vectors.o main.o -T memmap -o main.elf 
arm-none-eabi-objdump -D main.elf > main.list 
arm-none-eabi-objcopy main.elf -O binary main.bin 

wynik

main.elf:  file format elf32-littlearm 


Disassembly of section .text: 

00008000 <_start>: 
    8000: e3a0d902 mov sp, #32768 ; 0x8000 
    8004: eb000000 bl 800c <main> 

00008008 <hang>: 
    8008: eafffffe b 8008 <hang> 

0000800c <main>: 
    800c: e3a00002 mov r0, #2 
    8010: e12fff1e bx lr 

wolę używać nazwy funkcji innych niż główny, ponieważ niektóre kompilatory dodać dodatkowy bagaż, kiedy widzą, że nazwy funkcji.

vectors.s

.globl _start 
_start: 
    mov sp,#0x8000 
    bl notmain 
hang: b hang 

main.c

int notmain (void) 
{ 
    return(2); 
} 

wynik

main.elf:  file format elf32-littlearm 


Disassembly of section .text: 

00008000 <_start>: 
    8000: e3a0d902 mov sp, #32768 ; 0x8000 
    8004: eb000000 bl 800c <notmain> 

00008008 <hang>: 
    8008: eafffffe b 8008 <hang> 

0000800c <notmain>: 
    800c: e3a00002 mov r0, #2 
    8010: e12fff1e bx lr 
+2

Musisz uważać, aby pozbyć się crt0, musisz w jakiś sposób zastąpić tę funkcję (zastąp ją lub świadomie, bez). Mam więcej przykładów gołych metalowych raspberry pi na http://github.com/dwelch67/raspberrypi –

1

miałem ten sam problem z próby kompilacji dla STM32F4xx (Cortex M4).

I porzuciła Yagarto i przełącza się za pomocą wbudowanego GNU Tools ARM - toolchain (4.8_2014q2):

https://launchpad.net/gcc-arm-embedded

wydaje się działać dla mnie.

+2

Udostępnij przykład –