1
1
mirror of https://github.com/rui314/mold.git synced 2024-10-04 00:31:41 +03:00
mold/test/ifunc-export.sh
2024-08-14 16:23:25 +09:00

25 lines
447 B
Bash
Executable File

#!/bin/bash
. $(dirname $0)/common.inc
supports_ifunc || skip
cat <<EOF | $CC -c -fPIC -o $t/a.o -xc -
#include <stdio.h>
__attribute__((ifunc("resolve_foobar")))
void foobar(void);
void real_foobar(void) {
printf("Hello world\n");
}
typedef void Func();
Func *resolve_foobar(void) {
return real_foobar;
}
EOF
$CC -B. -shared -o $t/b.so $t/a.o
readelf --dyn-syms $t/b.so | grep -Eq '(IFUNC|<OS specific>: 10)\s+GLOBAL DEFAULT.* foobar'