1
1
mirror of https://github.com/rui314/mold.git synced 2024-12-26 18:02:30 +03:00

temporary

This commit is contained in:
Rui Ueyama 2020-10-18 14:21:20 +09:00
parent ba361f6328
commit ae0ee2630d

View File

@ -1,3 +1,4 @@
RUN: echo '.globl _start; _start: jmp start' | cc -o %t.o -c -x assembler - RUN: echo '.globl _start; _start: jmp loop' | cc -o %t1.o -c -x assembler -
RUN: chibild -o %t %t.o RUN: echo '.globl loop; loop: jmp loop' | cc -o %t2.o -c -x assembler -
RUN: chibild -o %t %t1.o %t2.o
RUN: file %t | grep ELF RUN: file %t | grep ELF