Skip to content
Snippets Groups Projects
Commit b0bdb13e authored by Guido Günther's avatar Guido Günther
Browse files

Enable numa support

Thanks: Ralf Spenneberg for testing
parent e49612be
No related branches found
Tags upstream/8.4.20230213094415
No related merge requests found
......@@ -30,6 +30,7 @@ Build-Depends: cdbs (>= 0.4.90~),
libnl-dev [linux-any],
libyajl-dev,
libpcap0.8-dev,
libnuma-dev [amd64 i386 ia64 mips mipsel powerpc],
# For "make check"
libxml2-utils,
dnsmasq-base,
......
......@@ -27,6 +27,11 @@ ifneq (,$(findstring $(DEB_HOST_ARCH_OS), linux))
WITH_NETWORK = --with-network
WITH_QEMU = --with-qemu
WITH_OPENVZ = --with-openvz
ifneq (,$(findstring $(DEB_HOST_ARCH), amd64 i386 ia64 mips mipsel powerpc))
WITH_NUMA = --with-numactl
else
WITH_NUMA = --without-numactl
endif
ifneq (,$(findstring $(DEB_HOST_ARCH), ia64))
WITH_LXC = --without-lxc
else
......@@ -43,6 +48,7 @@ else
WITH_NETWORK = --without-network
WITH_QEMU = --without-qemu
WITH_LXC = --without-lxc
WITH_NUMA = --without-numactl
endif
DEB_BUILDDIR := $(CURDIR)/debian/build
......@@ -62,7 +68,7 @@ DEB_CONFIGURE_EXTRA_FLAGS := \
$(WITH_STORAGE_ISCSI) \
$(WITH_STORAGE_DISK) \
--with-init-script=none \
--without-numactl \
$(WITH_NUMA) \
--without-selinux \
--without-esx \
--without-libssh2 \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment