Ensure libregex is built in time for googletest
In lib/Makefile, we document the dependency with SUBDIR_DEPEND For buildworld orchestration, just prebuild libregex if GOOGLETEST is enabled. googletest will get built in a later pass.
This commit is contained in:
parent
cab7d341dc
commit
eb578fec7f
@ -2741,6 +2741,10 @@ _prebuild_libs+= gnu/lib/libdialog
|
||||
gnu/lib/libdialog__L: lib/msun__L lib/ncurses/ncursesw__L
|
||||
.endif
|
||||
|
||||
.if ${MK_GOOGLETEST} != "no"
|
||||
_prebuild_libs+= lib/libregex
|
||||
.endif
|
||||
|
||||
.if ${MK_LIBCPLUSPLUS} != "no"
|
||||
_prebuild_libs+= lib/libc++
|
||||
.endif
|
||||
|
@ -107,6 +107,7 @@ SUBDIR= ${SUBDIR_BOOTSTRAP} \
|
||||
# libraries, those libraries should be listed as build order dependencies here.
|
||||
|
||||
SUBDIR_DEPEND_geom= libufs
|
||||
SUBDIR_DEPEND_googletest= libregex
|
||||
SUBDIR_DEPEND_libarchive= libz libbz2 libexpat liblzma libmd libzstd
|
||||
SUBDIR_DEPEND_libauditdm= libbsm
|
||||
SUBDIR_DEPEND_libbsnmp= ${_libnetgraph}
|
||||
|
Loading…
Reference in New Issue
Block a user