Module Name: src Committed By: thorpej Date: Wed Dec 26 14:27:23 UTC 2018
Modified Files: src/tests/rump/rumpkern: Makefile Log Message: Add -lrump after -lkernspace, because kernspace.a references symbols from librump and hooray for static linking semantics. Fixes sun2 build issue reported by kre@. (XXX WTF did this only start failing after the addition of t_threadpool?) To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 src/tests/rump/rumpkern/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/tests/rump/rumpkern/Makefile diff -u src/tests/rump/rumpkern/Makefile:1.17 src/tests/rump/rumpkern/Makefile:1.18 --- src/tests/rump/rumpkern/Makefile:1.17 Mon Dec 24 21:42:05 2018 +++ src/tests/rump/rumpkern/Makefile Wed Dec 26 14:27:23 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.17 2018/12/24 21:42:05 thorpej Exp $ +# $NetBSD: Makefile,v 1.18 2018/12/26 14:27:23 thorpej Exp $ .include <bsd.own.mk> @@ -26,7 +26,7 @@ LDADD.t_modlinkset+= -lrumpfs_cd9660 ${A LDADD+= ${ADD_TO_LD} KERNSPACE != cd ${.CURDIR}/../kernspace && ${PRINTOBJDIR} -LDADD+= -L${KERNSPACE} -lkernspace +LDADD+= -L${KERNSPACE} -lkernspace -lrump WARNS= 4