mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-25 10:01:02 +01:00
d9c543b6b0
This tests that with RTLD_DEEPBIND, symbols are looked up in all of the object's needed objects before the global object. PR: 275393 Reviewed by: kib Sponsored by: NetApp, Inc. Sponsored by: Klara, Inc. Differential Revision: https://reviews.freebsd.org/D42843
17 lines
255 B
Makefile
17 lines
255 B
Makefile
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= target
|
|
BINDIR= ${TESTSDIR}
|
|
|
|
WARNS?= 3
|
|
CFLAGS+= -I${.CURDIR}/../libpythagoras
|
|
|
|
LDFLAGS+= -L${.OBJDIR}/../libpythagoras
|
|
DPADD+= ${.OBJDIR}/../libpythagoras/libpythagoras.a
|
|
LDADD= -lpythagoras
|
|
|
|
MAN=
|
|
|
|
.include <bsd.prog.mk>
|