2021-06-17 15:10:25 +03:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cd $(dirname $0)
|
2021-07-21 08:49:02 +03:00
|
|
|
mold=`pwd`/../mold
|
2021-06-17 15:10:25 +03:00
|
|
|
echo -n "Testing $(basename -s .sh $0) ... "
|
|
|
|
t=$(pwd)/tmp/$(basename -s .sh $0)
|
|
|
|
mkdir -p $t
|
|
|
|
|
2021-07-08 09:48:11 +03:00
|
|
|
cat <<'EOF' | clang -c -o $t/a.o -xc -
|
|
|
|
#include <stdint.h>
|
2021-06-17 15:10:25 +03:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2021-07-08 09:48:11 +03:00
|
|
|
__attribute__((aligned(8192))) int foo = 1;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
uint8_t e_ident[16];
|
|
|
|
uint16_t e_type;
|
|
|
|
uint16_t e_machine;
|
|
|
|
uint32_t e_version;
|
|
|
|
uint64_t e_entry;
|
|
|
|
uint64_t e_phoff;
|
|
|
|
uint64_t e_shoff;
|
|
|
|
uint32_t e_flags;
|
|
|
|
uint16_t e_ehsize;
|
|
|
|
uint16_t e_phentsize;
|
|
|
|
uint16_t e_phnum;
|
|
|
|
uint16_t e_shentsize;
|
|
|
|
uint16_t e_shnum;
|
|
|
|
uint16_t e_shstrndx;
|
|
|
|
} Ehdr;
|
|
|
|
|
|
|
|
char __ehdr_start;
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
Ehdr *e = (Ehdr *)&__ehdr_start;
|
|
|
|
printf("%lu %lu %lu\n", e->e_phoff % 8, e->e_shoff % 8, (uint64_t)&foo % 8192);
|
2021-06-17 15:10:25 +03:00
|
|
|
}
|
|
|
|
EOF
|
|
|
|
|
2021-07-19 18:21:12 +03:00
|
|
|
clang -fuse-ld=$mold -o $t/exe $t/a.o
|
2021-07-08 09:48:11 +03:00
|
|
|
$t/exe | grep -q '^0 0 0$'
|
2021-06-17 15:10:25 +03:00
|
|
|
|
|
|
|
echo OK
|