From: Denys Dmytriyenko <denys@ti.com>
To: "Cooper Jr., Franklin" <fcooper@ti.com>
Cc: "meta-arago@arago-project.org" <meta-arago@arago-project.org>
Subject: Re: [PATCH 31/32] meta-toolchain-arago: Remove remaining .la files
Date: Mon, 28 Jan 2013 13:08:17 -0500 [thread overview]
Message-ID: <20130128180817.GE29130@edge> (raw)
In-Reply-To: <8F29D6B095ED194EA1980491A5E029710C37E0C6@DFLE09.ent.ti.com>
On Mon, Jan 28, 2013 at 12:42:39PM -0500, Cooper Jr., Franklin wrote:
> I didn't see any issue. I just remember from our discussion you mention that
> there isn't any need for .la files since they cause more trouble than it's
> worth. I saw the extra la files remaining so I created this patch. I am fine
> with ignoring this patch if you don't think those la files would cause an
> issue.
I'm Ok pushing this patch for consistency - was just wandering if there was a
real problem with those files, as I was only aware of problems with .la files
in the target directory...
> > -----Original Message-----
> > From: Dmytriyenko, Denys
> > Sent: Monday, January 28, 2013 11:35 AM
> > To: fcooperjr27@gmail.com
> > Cc: meta-arago@arago-project.org; Cooper Jr., Franklin
> > Subject: Re: [meta-arago] [PATCH 31/32] meta-toolchain-arago: Remove
> > remaining .la files
> >
> > On Mon, Jan 28, 2013 at 11:25:31AM -0600, fcooperjr27@gmail.com wrote:
> > > From: Franklin S. Cooper Jr <fcooper@ti.com>
> > >
> > > * The following .la files were not deleted from the toolchain sdk:
> > > libgfortranbegin.la
> > > /arago-2012.12/lib/gcc/arm-arago-linux-gnueabi/4.5.3
> > >
> > > libbfd.la
> > > /arago-2012.12/i686-linux/arm-arago-linux-gnueabi/lib
> > >
> > > libopcodes.la
> > > /arago-2012.12/i686-linux/arm-arago-linux-gnueabi/lib
> > >
> > > * Updating the path that find is using to insure all .la files are deleted
> > > from the toolchain sdk.
> >
> > What was the problem with those .la files? They are part of host-side binutils
> > and gcc, so weren't supposed to be used for any SDK cross-compiling...
> >
> >
> > > Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
> > > ---
> > > .../recipes-core/meta/meta-toolchain-arago.bb | 4 ++--
> > > 1 files changed, 2 insertions(+), 2 deletions(-)
> > >
> > > diff --git a/meta-arago-extras/recipes-core/meta/meta-toolchain-arago.bb
> > b/meta-arago-extras/recipes-core/meta/meta-toolchain-arago.bb
> > > index 332fe48..7428001 100644
> > > --- a/meta-arago-extras/recipes-core/meta/meta-toolchain-arago.bb
> > > +++ b/meta-arago-extras/recipes-core/meta/meta-toolchain-arago.bb
> > > @@ -4,7 +4,7 @@ TOOLCHAIN_OUTPUTNAME ?= "${SDK_NAME}-
> > ${ARMPKGARCH}-${TARGET_OS}-sdk-${SDK_ARCH}"
> > >
> > > require recipes-core/meta/meta-toolchain.bb
> > >
> > > -PR = "r14"
> > > +PR = "r15"
> > >
> > > SDKTARGETSYSROOT = "${SDKPATH}/${ARAGO_TARGET_SYS}"
> > >
> > > @@ -84,7 +84,7 @@ populate_sdk_ipk_append () {
> > > ${@base_conditional('PREFERRED_PROVIDER_gdb-cross-canadian-
> > arm', 'external-arago-sdk-toolchain', '', 'create_shell_stub
> > ${TARGET_PREFIX}gdb yes', d)}
> > >
> > > # Remove broken .la files
> > > - for i in `find ${SDK_OUTPUT}/${SDKTARGETSYSROOT} -name \*.la`; do
> > > + for i in `find ${SDK_OUTPUT}/${SDKPATH} -name \*.la`; do
> > > rm -f $i
> > > done
> > > rm -f ${SDK_OUTPUT}/${SDKPATH}/lib/*.la
> > > --
> > > 1.7.0.4
> > >
> > > _______________________________________________
> > > meta-arago mailing list
> > > meta-arago@arago-project.org
> > > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> > >
next prev parent reply other threads:[~2013-01-28 18:08 UTC|newest]
Thread overview: 35+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-28 17:25 [PATCH 01/32] tisdk-image.bbclass: Add additional GPLv3 tables fcooperjr27
2013-01-28 17:25 ` [PATCH 02/32] tiff: Remove xz and lzma dependency fcooperjr27
2013-01-28 17:25 ` [PATCH 03/32] gettext: Mimic patch "Make gettext 0.16.1 extend native and nativesdk" fcooperjr27
2013-01-28 17:25 ` [PATCH 04/32] gnutls: Allow non GPLv3 version of gettext to work fcooperjr27
2013-01-28 17:25 ` [PATCH 05/32] arago.conf: Use non GPLv3 version of gettext fcooperjr27
2013-01-28 17:25 ` [PATCH 06/32] arago-amsdk-image: Remove additional GPLv3 components fcooperjr27
2013-01-28 17:25 ` [PATCH 07/32] linux-am335x: Remove dirty tag patch fcooperjr27
2013-01-28 17:25 ` [PATCH 08/32] linux-am335x: Add patch to Update SPI flash layout fcooperjr27
2013-01-28 17:25 ` [PATCH 09/32] task-arago-tisdk-addons: Add canutils fcooperjr27
2013-01-28 17:25 ` [PATCH 10/32] task-arago-toolchain-tisdk-target: Add task-arago-tisdk-addons-sdk-target fcooperjr27
2013-01-28 17:25 ` [PATCH 11/32] ti-crypto-examples: Install OpenSSL script fcooperjr27
2013-01-28 17:25 ` [PATCH 12/32] matrix-gui-apps-git: Pull in latest Matrix Apps changes fcooperjr27
2013-01-28 17:25 ` [PATCH 13/32] matrix-gui-crypto-demos: Switch to C base crypto applications fcooperjr27
2013-01-28 17:25 ` [PATCH 14/32] busybox: Add rtcwake fcooperjr27
2013-01-28 17:25 ` [PATCH 15/32] ti-tisdk-setup: Update to include several bug fixes fcooperjr27
2013-01-28 17:25 ` [PATCH 16/32] task-arago-tisdk-connectivity: Add obex-client to the runtime dependencies list fcooperjr27
2013-01-28 17:25 ` [PATCH 17/32] wl1271-demo_git: " fcooperjr27
2013-01-28 17:25 ` [PATCH 18/32] wpa_supplicant: add a script for killing in case running fcooperjr27
2013-01-28 17:25 ` [PATCH 19/32] wifi-direct-demo: kill the supplicant before starting fcooperjr27
2013-01-28 17:25 ` [PATCH 20/32] battleship: kill wpa_supplicant before launching fcooperjr27
2013-01-28 17:25 ` [PATCH 21/32] ti-wif-utils: Only run calibrate on startup fcooperjr27
2013-01-28 17:25 ` [PATCH 22/32] ti-compat-wireless: remove driver version print fcooperjr27
2013-01-28 17:25 ` [PATCH 23/32] dosfstools: Increase FAT partition size and large file support fcooperjr27
2013-01-28 17:25 ` [PATCH 24/32] oprofile-example: Use updated PACKAGE_STRIP syntax fcooperjr27
2013-01-28 17:25 ` [PATCH 25/32] linux-am335x_3.2.0-psp05.06.00.00: Limit Smartreflex to PG 1.0 silicon fcooperjr27
2013-01-28 17:25 ` [PATCH 26/32] linux-am335x-3.2.0-psp05.06.00.00: Fix Suspend and Resume fcooperjr27
2013-01-28 17:25 ` [PATCH 27/32] matrix-gui-apps-git.inc: Pull in latest power management script fcooperjr27
2013-01-28 17:25 ` [PATCH 28/32] qt4-embedded: Add patch to fix QWSLOCK messages fcooperjr27
2013-01-28 17:25 ` [PATCH 29/32] u-boot_2012.10.psp05.06.00.00 - Freeze PSP 05.06.00.00 fcooperjr27
2013-01-28 17:25 ` [PATCH 30/32] bc: Fix segmentation fault when using -l option fcooperjr27
2013-01-28 17:25 ` [PATCH 31/32] meta-toolchain-arago: Remove remaining .la files fcooperjr27
2013-01-28 17:35 ` Denys Dmytriyenko
2013-01-28 17:42 ` Cooper Jr., Franklin
2013-01-28 18:08 ` Denys Dmytriyenko [this message]
2013-01-28 17:25 ` [PATCH 32/32] recipes: Remove unused recipe and bbappend fcooperjr27
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20130128180817.GE29130@edge \
--to=denys@ti.com \
--cc=fcooper@ti.com \
--cc=meta-arago@arago-project.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.