mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 00:04:14 -05: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 d9c543b6b0cabea6e6679d70b4e701018e7eab80)
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>
|