From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mx1.pokylinux.org (Postfix) with ESMTP id 592044C80335 for ; Wed, 25 May 2011 12:59:58 -0500 (CDT) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga102.fm.intel.com with ESMTP; 25 May 2011 10:59:58 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.65,268,1304319600"; d="scan'208";a="7507619" Received: from unknown (HELO [10.255.12.133]) ([10.255.12.133]) by fmsmga002.fm.intel.com with ESMTP; 25 May 2011 10:59:57 -0700 Message-ID: <4DDD439D.50109@linux.intel.com> Date: Wed, 25 May 2011 10:59:57 -0700 From: Saul Wold User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.17) Gecko/20110428 Fedora/3.1.10-1.fc13 Thunderbird/3.1.10 MIME-Version: 1.0 To: Kang Kai References: In-Reply-To: Cc: poky@yoctoproject.org Subject: Re: [PATCH 0/1]ghostscript: add patches to make it run cross compile platform V2 X-BeenThere: poky@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Poky build system developer discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 May 2011 17:59:58 -0000 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit On 05/21/2011 01:24 AM, Kang Kai wrote: > From: Kang Kai > > Hi Richard, > > I update the patches with your opinion, thanks! > > When test lsb on ppc find that gs can't run. The root cause is gs determines some target configuration > on build system. According to the document of ghostscript, > http://pages.cs.wisc.edu/~ghost/doc/cvs/Make.htm#Cross-compiling > when cross compile ghostscript need some manual work. > So import patches from WindRiver Linux to make sure ghostscript can be cross compiled, and spit the patches > into arch/[so]obj.h source files. > > The following changes since commit 7706d5d844db2725f4118207d90e302679eacdfe: > > linux-yocto/meta-yocto: fix gcc 4.6.0 compilation failures (2011-05-19 17:33:50 -0700) > > are available in the git repository at: > git://git.pokylinux.org/poky-contrib.git kangkai/distro > http://git.pokylinux.org/cgit.cgi//log/?h=kangkai/distro > > Kang Kai (1): > ghostscript: fix run failure on mpc8315e > > meta/recipes-extended/ghostscript/arm/objarch.h | 40 +++++++++++++++++++ > meta/recipes-extended/ghostscript/arm/soobjarch.h | 40 +++++++++++++++++++ > .../ghostscript/ghostscript-9.02-genarch.patch | 27 +++++++++++++ > .../ghostscript/ghostscript_9.02.bb | 22 +++++++++- > meta/recipes-extended/ghostscript/i586/objarch.h | 41 ++++++++++++++++++++ > meta/recipes-extended/ghostscript/i586/soobjarch.h | 41 ++++++++++++++++++++ > meta/recipes-extended/ghostscript/mips/objarch.h | 40 +++++++++++++++++++ > meta/recipes-extended/ghostscript/mips/soobjarch.h | 40 +++++++++++++++++++ > .../recipes-extended/ghostscript/powerpc/objarch.h | 40 +++++++++++++++++++ > .../ghostscript/powerpc/soobjarch.h | 40 +++++++++++++++++++ > meta/recipes-extended/ghostscript/x86_64/objarch.h | 40 +++++++++++++++++++ > .../ghostscript/x86_64/soobjarch.h | 40 +++++++++++++++++++ > 12 files changed, 448 insertions(+), 3 deletions(-) > create mode 100644 meta/recipes-extended/ghostscript/arm/objarch.h > create mode 100644 meta/recipes-extended/ghostscript/arm/soobjarch.h > create mode 100644 meta/recipes-extended/ghostscript/ghostscript/ghostscript-9.02-genarch.patch > create mode 100644 meta/recipes-extended/ghostscript/i586/objarch.h > create mode 100644 meta/recipes-extended/ghostscript/i586/soobjarch.h > create mode 100644 meta/recipes-extended/ghostscript/mips/objarch.h > create mode 100644 meta/recipes-extended/ghostscript/mips/soobjarch.h > create mode 100644 meta/recipes-extended/ghostscript/powerpc/objarch.h > create mode 100644 meta/recipes-extended/ghostscript/powerpc/soobjarch.h > create mode 100644 meta/recipes-extended/ghostscript/x86_64/objarch.h > create mode 100644 meta/recipes-extended/ghostscript/x86_64/soobjarch.h > Merged into oe-core and poky Thanks Sau!