mirror of
https://github.com/rui314/mold.git
synced 2024-11-12 23:48:51 +03:00
15 lines
235 B
Bash
Executable File
15 lines
235 B
Bash
Executable File
#!/bin/bash
|
|
. $(dirname $0)/common.inc
|
|
|
|
cat <<EOF | $CC -o $t/a.o -c -xc -
|
|
#include <stdio.h>
|
|
|
|
int main() {
|
|
printf("Hello world\n");
|
|
return 0;
|
|
}
|
|
EOF
|
|
|
|
$CC -B. -o $t/exe $t/a.o -Wl,-no-quick-exit
|
|
$QEMU $t/exe | grep -q 'Hello world'
|