From 8433e802f62b4bfcd0cac648b6f2d8ae40b8e504 Mon Sep 17 00:00:00 2001 From: q66 Date: Tue, 18 May 2021 03:16:32 +0200 Subject: [PATCH] codelite: disable lldb on i686 --- srcpkgs/codelite/template | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/srcpkgs/codelite/template b/srcpkgs/codelite/template index f8476252ce3..cedc1e11c24 100644 --- a/srcpkgs/codelite/template +++ b/srcpkgs/codelite/template @@ -22,12 +22,16 @@ nocross=yes python_version=2 #unverified build_options="hunspell lldb mysql sftp" -build_options_default="hunspell lldb sftp" +build_options_default="hunspell sftp" desc_option_hunspell="Enable SpellCheck plugin" desc_option_lldb="Enable support for LLDB" desc_option_mysql="Enable mysql/mariadb support" desc_option_sftp="Enable Workspace Mirroring plugin" +case "$XBPS_TARGET_MACHINE" in + x86_64*|ppc64le*) build_options_default+=" lldb";; +esac + pre_configure() { sed -i -e 's,wx-config,&-gtk3,g' \ CMakeLists.txt