mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-02 22:41:07 +00:00
4f2cbcfb4d
These tests did use their own crt.o stub however that is a little stone age so we drop crt.S and just statically link to the cross compilers libraries. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Tested-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
7 lines
80 B
C
7 lines
80 B
C
#include <unistd.h>
|
|
|
|
int main (void)
|
|
{
|
|
write (1, "hello\n", 6);
|
|
return 0;
|
|
}
|