From 48505536f6c5440334a855dce98e49ab6026f224 Mon Sep 17 00:00:00 2001 From: "Yevhen Babiichuk (DustDFG)" Date: Wed, 12 Mar 2025 22:27:19 +0100 Subject: [PATCH] =?UTF-8?q?package/llvm-project/compiler-rt:=20remove=20du?= =?UTF-8?q?plicate=C2=A0parameter?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The COMPILER_RT_STANDALONE_BUILD parameter was passed twice. One time as FALSE and immediately after as TRUE which overrides previous value, so drop the first one. Signed-off-by: Yevhen Babiichuk (DustDFG) Signed-off-by: Peter Korsgaard (cherry picked from commit acc7ce7262447a8f55986245b8bd41d0aaf13674) Signed-off-by: Peter Korsgaard --- package/llvm-project/compiler-rt/compiler-rt.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/llvm-project/compiler-rt/compiler-rt.mk b/package/llvm-project/compiler-rt/compiler-rt.mk index d4bc4d305b..cbd2e6cb8b 100644 --- a/package/llvm-project/compiler-rt/compiler-rt.mk +++ b/package/llvm-project/compiler-rt/compiler-rt.mk @@ -16,7 +16,7 @@ COMPILER_RT_SUPPORTS_IN_SOURCE_BUILD = NO COMPILER_RT_INSTALL_STAGING = YES COMPILER_RT_INSTALL_TARGET = NO -COMPILER_RT_CONF_OPTS=-DCOMPILER_RT_STANDALONE_BUILD=OFF \ +COMPILER_RT_CONF_OPTS = \ -DCOMPILER_RT_STANDALONE_BUILD=ON \ -DCOMPILER_RT_DEFAULT_TARGET_TRIPLE=$(GNU_TARGET_NAME) \ -DLLVM_CONFIG_PATH=$(HOST_DIR)/bin/llvm-config \