4e08f4dcc3
backport c4b5b002c3
make swss build depends only on libsairedis instead of syncd. This allows to build swss without depending
on vendor sai library.
Currently, libsairedis build also buils syncd which requires vendor SAI lib. This makes difficult to build
swss docker in buster while still keeping syncd docker in stretch, as swss requires libsairedis which also
build syncd and requires vendor to provide SAI for buster. As swss docker does not really contain syncd
binary, so it is not necessary to build syncd for swss docker.
[submodule]: update sonic-sairedis
* 9a66890 2020-06-28 | [build]: add option to build without syncd (HEAD -> 201811, origin/201811) [Guohan Lu]
Signed-off-by: Guohan Lu <lguohan@gmail.com>
37 lines
1.1 KiB
Makefile
37 lines
1.1 KiB
Makefile
# only used for non-vs platforms
|
|
|
|
ifneq ($(CONFIGURED_PLATFORM),vs)
|
|
|
|
SYNCD = syncd_1.0.0_amd64.deb
|
|
$(SYNCD)_RDEPENDS += $(LIBSAIREDIS) $(LIBSAIMETADATA)
|
|
$(SYNCD)_DPKG_TARGET = binary-syncd
|
|
$(SYNCD)_SRC_PATH = $(SRC_PATH)/sonic-sairedis
|
|
$(SYNCD)_DEPENDS += $(LIBSWSSCOMMON_DEV) $(LIBSAIREDIS)
|
|
$(SYNCD)_RDEPENDS += $(LIBSWSSCOMMON)
|
|
$(SYNCD)_DEB_BUILD_OPTIONS = nocheck
|
|
SONIC_DPKG_DEBS += $(SYNCD)
|
|
|
|
ifeq ($(ENABLE_SYNCD_RPC),y)
|
|
SYNCD_RPC = syncd-rpc_1.0.0_amd64.deb
|
|
$(SYNCD_RPC)_RDEPENDS += $(LIBSAIREDIS) $(LIBSAIMETADATA)
|
|
$(eval $(call add_derived_package,$(SYNCD),$(SYNCD_RPC)))
|
|
|
|
# Inject libthrift build dependency for RPC build
|
|
$(SYNCD)_DEPENDS += $(LIBSWSSCOMMON_DEV) $(LIBTHRIFT_DEV)
|
|
$(SYNCD)_DPKG_TARGET = binary-syncd-rpc
|
|
endif
|
|
|
|
SYNCD_DBG = syncd-dbg_1.0.0_amd64.deb
|
|
$(SYNCD_DBG)_DEPENDS += $(SYNCD)
|
|
$(SYNCD_DBG)_RDEPENDS += $(SYNCD)
|
|
$(eval $(call add_derived_package,$(SYNCD),$(SYNCD_DBG)))
|
|
|
|
ifeq ($(ENABLE_SYNCD_RPC),y)
|
|
SYNCD_RPC_DBG = syncd-rpc-dbg_1.0.0_amd64.deb
|
|
$(SYNCD_RPC_DBG)_DEPENDS += $(SYNCD_RPC)
|
|
$(SYNCD_RPC_DBG)_RDEPENDS += $(SYNCD_RPC)
|
|
$(eval $(call add_derived_package,$(SYNCD),$(SYNCD_RPC_DBG)))
|
|
endif
|
|
|
|
endif
|