mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 06:15:33 -04:00
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.
(cherry picked from commit d9c543b6b0)
15 lines
287 B
Makefile
15 lines
287 B
Makefile
|
|
SHLIB?= deep
|
|
SHLIB_MAJOR= 0
|
|
|
|
LIBDIR= ${TESTSBASE}/libexec/rtld-elf/rtld_deepbind
|
|
SHLIBDIR= ${TESTSBASE}/libexec/rtld-elf/rtld_deepbind
|
|
|
|
SRCS= libdeep.c
|
|
|
|
LIBVAL2= ${.OBJDIR}/../libval2
|
|
LDFLAGS+= -L${LIBVAL2} -Wl,-rpath,'$$ORIGIN'
|
|
DPADD+= -lval2
|
|
LDADD+= -lval2
|
|
|
|
.include <bsd.lib.mk>
|