1
1
mirror of https://github.com/rui314/mold.git synced 2024-11-11 16:58:12 +03:00
mold/test/basic.test

6 lines
227 B
Plaintext
Raw Normal View History

2020-10-18 08:21:20 +03:00
RUN: echo '.globl _start; _start: jmp loop' | cc -o %t1.o -c -x assembler -
RUN: echo '.globl loop; loop: jmp loop' | cc -o %t2.o -c -x assembler -
2020-11-11 15:32:41 +03:00
RUN: mold -static -o %t %t2.o %t1.o
2020-10-26 11:40:37 +03:00
RUN: objdump -d %t
2020-10-04 12:00:33 +03:00
RUN: file %t | grep ELF