From c375bcf8cd703e23ca2da222c469a4784b5bfd67 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Wed, 29 May 2024 09:35:03 +0000 Subject: [PATCH] vectorscan: Don't build for riscv64 This architecture does not seem to be support and since we don't support this as a primary architecture just yet, we will build without this package. Signed-off-by: Michael Tremer Signed-off-by: Arne Fitzenreiter --- config/rootfiles/common/{ => aarch64}/vectorscan | 0 config/rootfiles/common/x86_64/vectorscan | 1 + lfs/vectorscan | 1 + 3 files changed, 2 insertions(+) rename config/rootfiles/common/{ => aarch64}/vectorscan (100%) create mode 120000 config/rootfiles/common/x86_64/vectorscan diff --git a/config/rootfiles/common/vectorscan b/config/rootfiles/common/aarch64/vectorscan similarity index 100% rename from config/rootfiles/common/vectorscan rename to config/rootfiles/common/aarch64/vectorscan diff --git a/config/rootfiles/common/x86_64/vectorscan b/config/rootfiles/common/x86_64/vectorscan new file mode 120000 index 0000000000..d9581de701 --- /dev/null +++ b/config/rootfiles/common/x86_64/vectorscan @@ -0,0 +1 @@ +../aarch64/vectorscan \ No newline at end of file diff --git a/lfs/vectorscan b/lfs/vectorscan index 0b60e19c9c..0bcc1bcf40 100644 --- a/lfs/vectorscan +++ b/lfs/vectorscan @@ -31,6 +31,7 @@ DL_FILE = $(THISAPP).tar.gz DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) +SUP_ARCH = x86_64 aarch64 # The compiler uses a lot of memory to compile hyperscan, hence we reduce # the total number of processes a little bit to be able to build on -- 2.39.5