blob: 08da3161519752a478393e09c9e8c74c59bc6f0b (
plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# $OpenBSD: Makefile,v 1.56 2015/05/26 20:15:54 miod Exp $
SUBDIR=ldconfig ldd
MAN= ld.so.1
.include <bsd.own.mk>
.if defined(NOPIC)
NOPROG=
.else
PROG= ld.so
BINMODE=444
VPATH=${.CURDIR}/../../lib/libc/string
SRCS= ldasm.S boot.c loader.c resolve.c dlfcn.c dl_printf.c rtld_machine.c
SRCS+= path.c util.c sod.c strsep.c strtol.c dir.c library_subr.c dl_prebind.c
SRCS+= dl_realpath.c dl_uname.c dl_dirname.c strlcat.c strlen.c trace.c
SRCS+= malloc.c reallocarray.c
.if (${MACHINE_ARCH} == "i386")
SRCS+= library_mquery.c
.else
SRCS+= library.c
.endif
.include "${.CURDIR}/${MACHINE_CPU}/Makefile.inc"
.PATH: ${.CURDIR}/${MACHINE_CPU}
DEBUG?= -g
CFLAGS += -Wall -Werror
CFLAGS += -I${.CURDIR} -I${.CURDIR}/${MACHINE_CPU} \
-Dstrsep=_dl_strsep -Dstrlcat=_dl_strlcat -Dstrlen=_dl_strlen
CDIAGFLAGS=
INSTALL_STRIP=
ELF_LDFLAGS+=--shared -Bsymbolic --no-undefined
test_prog= test-$(PROG)
CLEANFILES+= test-$(PROG)
candidate= $(PROG).test
CLEANFILES+= ${candidate}
$(test_prog):
printf '#include <stdio.h>\nint main(int argc, char **argv){ printf("%%s\\n", argv[1]); }\n' | \
$(CC) -x c - -Wl,-dynamic-linker,${.OBJDIR}/$(candidate) -o $@
$(PROG): $(test_prog)
$(LD) -x -e _dl_start $(ELF_LDFLAGS) -o $(candidate) $(OBJS) $(LDADD)
.ifndef HOSTCC
ulimit -c 0; [ "`${.OBJDIR}/$(test_prog) ok`" = ok ]
.endif
cp $(candidate) $@
.endif
.include <bsd.prog.mk>
boot.o: boot.c
${COMPILE.c} -fno-stack-protector ${.IMPSRC}
|