1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
#!/bin/bash
. $(dirname $0)/common.inc
command -v dwarfdump >& /dev/null || skip
cat <<EOF | $CXX -c -o $t/a.o -g -xc++ -
extern const char *msg;
struct Foo {
Foo() { msg = "Hello world"; }
};
Foo x;
EOF
cat <<EOF | $CXX -c -o $t/b.o -g -xc++ -
extern const char *msg;
struct Foo {
Foo() { msg = "Hello world"; }
};
Foo y;
EOF
cat <<EOF | $CXX -o $t/c.o -c -xc++ -g -
#include <cstdio>
const char *msg;
int main() { printf("%s\n", msg); }
EOF
$CXX -o $t/exe $t/a.o $t/b.o $t/c.o -g
$QEMU $t/exe | grep 'Hello world'
dwarfdump $t/exe > /dev/null
|