mirror of
https://github.com/rui314/mold.git
synced 2024-11-20 20:37:49 +03:00
10 lines
168 B
Bash
Executable File
10 lines
168 B
Bash
Executable File
#!/bin/bash
|
|
. $(dirname $0)/common.inc
|
|
|
|
cat <<EOF | $CC -o $t/a.o -c -xc -
|
|
void _start() {}
|
|
EOF
|
|
|
|
./mold -o $t/exe $t/a.o
|
|
readelf --file-header $t/exe | grep -qi x86-64
|