From f3dd87d766985caa51c0a0dd9e0d0018e616d5aa Mon Sep 17 00:00:00 2001 From: vsoch Date: Tue, 7 May 2024 11:19:05 -0600 Subject: [PATCH] dep: remove libczmq Problem: czmq was removed from flux-core a while back, and was recently also removed from flux-sched. It is no longer in the container and the build will fail. Solution: do not require it to build. Signed-off-by: vsoch --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ac37b02..26f9574 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ COMMONENVVAR=GOOS=$(shell uname -s | tr A-Z a-z) # Note that el8 and derivatives are in /usr/lib64 LD_LIBRARY_PATH=$(LIB_PREFIX):$(LIB_PREFIX)/flux -BUILDENVVAR=CGO_CFLAGS="-I${FLUX_SCHED_ROOT} -I${FLUX_SCHED_ROOT}/resource/reapi/bindings/c" CGO_LDFLAGS="-L${LIB_PREFIX} -L${LIB_PREFIX}/flux -L${FLUX_SCHED_ROOT}/resource/reapi/bindings -lreapi_cli -lflux-idset -lstdc++ -lczmq -ljansson -lhwloc -lboost_system -lflux-hostlist -lboost_graph -lyaml-cpp" +BUILDENVVAR=CGO_CFLAGS="-I${FLUX_SCHED_ROOT} -I${FLUX_SCHED_ROOT}/resource/reapi/bindings/c" CGO_LDFLAGS="-L${LIB_PREFIX} -L${LIB_PREFIX}/flux -L${FLUX_SCHED_ROOT}/resource/reapi/bindings -lreapi_cli -lflux-idset -lstdc++ -ljansson -lhwloc -lboost_system -lflux-hostlist -lboost_graph -lyaml-cpp" .PHONY: all all: build