From patchwork Wed Aug 20 16:49:25 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Beno=C3=AEt_Th=C3=A9baudeau?= X-Patchwork-Id: 381736 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 70136140173 for ; Thu, 21 Aug 2014 02:49:41 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 81ED9266C4; Wed, 20 Aug 2014 16:49:40 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id YmhAvdsR0drk; Wed, 20 Aug 2014 16:49:39 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 2DF762648F; Wed, 20 Aug 2014 16:49:39 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 2CD471C171A for ; Wed, 20 Aug 2014 16:49:38 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 24AC7862FC for ; Wed, 20 Aug 2014 16:49:38 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ZGpAfwGkn8Ae for ; Wed, 20 Aug 2014 16:49:37 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-we0-f173.google.com (mail-we0-f173.google.com [74.125.82.173]) by whitealder.osuosl.org (Postfix) with ESMTPS id 5F6698694E for ; Wed, 20 Aug 2014 16:49:37 +0000 (UTC) Received: by mail-we0-f173.google.com with SMTP id q58so8220922wes.4 for ; Wed, 20 Aug 2014 09:49:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:mime-version:content-type :content-transfer-encoding; bh=spVTdjTOIH7LzxzBflJ55hRrZUWK39uFLWXh3seHvbE=; b=pyBOYO7UhLEkTDiu+PmzxcObc6J4Nmw3fvvOConuz+kqgLP+hIIp9297AzWv8301Gu 7U4RER4xLIRtNwMuEb6v0dXQoS/dh/AGp2qEYm0MkoxftwTx1VCOYDKVhQgzXTu/heT9 9Sr2MYAI9X53/vT9V7Tz9X81XYslkY6LzUZ57Jfm6OTdzrPu50/dgrfirn1hlD4gAM/n 6dJUvJQv9FDwtMCAhxA+1W+HsyrLDsA7GuF5+tIuyurwdP7KE+ajkqXoEv89nCWgdjWd t+K/VPEBQ/u6D3Q4V0p9Gg/ELrnvAUdS6Fb7F/DM1Ciy6kdT/n27fHYkk/NB2sYl/D8/ rL3A== X-Received: by 10.194.158.9 with SMTP id wq9mr14418937wjb.69.1408553375262; Wed, 20 Aug 2014 09:49:35 -0700 (PDT) Received: from localhost.localdomain (cie44-1-88-188-188-147.fbx.proxad.net. [88.188.188.147]) by mx.google.com with ESMTPSA id ex2sm59819206wjd.30.2014.08.20.09.49.34 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 20 Aug 2014 09:49:34 -0700 (PDT) From: =?UTF-8?q?Beno=C3=AEt=20Th=C3=A9baudeau?= To: Date: Wed, 20 Aug 2014 18:49:25 +0200 Message-Id: <1408553365-26770-1-git-send-email-benoit.thebaudeau.dev@gmail.com> X-Mailer: git-send-email 1.9.1 MIME-Version: 1.0 Subject: [Buildroot] [PATCH] imagemagick: Disable OpenMP X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net By default (i.e. without adding libgomp.so* to BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS), if an external toolchain with libgomp support is used, then libgomp is installed to staging/ , but not to target/ . Consequently, with such a toolchain, imagemagick's configure detected libgomp as supported and enabled its usage for the build stage, but then it failed to run on the target because libgomp was missing. This is the bug #7322. Disable OpenMP for imagemagick as a temporary workaround, until a better long term solution is agreed on and implemented. Signed-off-by: Benoît Thébaudeau --- For 2014.08. --- package/imagemagick/imagemagick.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/package/imagemagick/imagemagick.mk b/package/imagemagick/imagemagick.mk index 386da4f..aac0b5d 100644 --- a/package/imagemagick/imagemagick.mk +++ b/package/imagemagick/imagemagick.mk @@ -29,6 +29,7 @@ IMAGEMAGICK_CONF_ENV = ac_cv_sys_file_offset_bits=32 endif IMAGEMAGICK_CONF_OPT = --program-transform-name='s,,,' \ + --disable-openmp \ --without-perl \ --without-wmf \ --without-openexr \