Openembedded Devel Discussions
 help / color / mirror / Atom feed
* [meta-networking][PATCH] bridge-utils: modify the AR to cross toolchain
@ 2017-10-19  7:12 Li Zhou
  2017-10-19 16:06 ` Khem Raj
  0 siblings, 1 reply; 3+ messages in thread
From: Li Zhou @ 2017-10-19  7:12 UTC (permalink / raw)
  To: openembedded-devel

The Makefile uses the host “ar” tool when it should be using the
ar from the target toolchain.

Signed-off-by: Jiwei Sun <jiwei.sun@windriver.com>
Signed-off-by: Li Zhou <li.zhou@windriver.com>
---
 ...ridge-Modifying-the-AR-to-cross-toolchain.patch | 34 ++++++++++++++++++++++
 .../bridge-utils/bridge-utils_1.5.bb               |  1 +
 2 files changed, 35 insertions(+)
 create mode 100644 meta-networking/recipes-support/bridge-utils/bridge-utils/0001-libbridge-Modifying-the-AR-to-cross-toolchain.patch

diff --git a/meta-networking/recipes-support/bridge-utils/bridge-utils/0001-libbridge-Modifying-the-AR-to-cross-toolchain.patch b/meta-networking/recipes-support/bridge-utils/bridge-utils/0001-libbridge-Modifying-the-AR-to-cross-toolchain.patch
new file mode 100644
index 0000000..e477f41
--- /dev/null
+++ b/meta-networking/recipes-support/bridge-utils/bridge-utils/0001-libbridge-Modifying-the-AR-to-cross-toolchain.patch
@@ -0,0 +1,34 @@
+From 689e24ef05bd1772b2149e4eb48b058ca8361cf4 Mon Sep 17 00:00:00 2001
+From: Li Zhou <li.zhou@windriver.com>
+Date: Thu, 19 Oct 2017 11:34:18 +0800
+Subject: [PATCH 2/2] libbridge: Modifying the AR to cross toolchain
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+The Makefile uses the host “ar” tool when it should be using the
+ar from the target toolchain.
+
+Upstream-Status: Pending
+
+Signed-off-by: Li Zhou <li.zhou@windriver.com>
+---
+ libbridge/Makefile.in | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/libbridge/Makefile.in b/libbridge/Makefile.in
+index 11c0829..59d7355 100644
+--- a/libbridge/Makefile.in
++++ b/libbridge/Makefile.in
+@@ -1,7 +1,7 @@
+ 
+ KERNEL_HEADERS=-I@KERNEL_HEADERS@
+ 
+-AR=ar
++AR?=ar
+ RANLIB=@RANLIB@
+ 
+ CC=@CC@
+-- 
+1.9.1
+
diff --git a/meta-networking/recipes-support/bridge-utils/bridge-utils_1.5.bb b/meta-networking/recipes-support/bridge-utils/bridge-utils_1.5.bb
index 6032ab0..723ae5f 100644
--- a/meta-networking/recipes-support/bridge-utils/bridge-utils_1.5.bb
+++ b/meta-networking/recipes-support/bridge-utils/bridge-utils_1.5.bb
@@ -7,6 +7,7 @@ SRC_URI += "\
     file://0003-bridge-fix-some-build-time-warnings-errno.h.patch \
     file://0004-libbridge-add-missing-include-s-fix-build-against-mu.patch \
     file://0005-build-don-t-ignore-CFLAGS-from-environment.patch \
+    file://0001-libbridge-Modifying-the-AR-to-cross-toolchain.patch \
 "
 
 LIC_FILES_CHKSUM = "file://COPYING;md5=f9d20a453221a1b7e32ae84694da2c37"
-- 
1.9.1



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [meta-networking][PATCH] bridge-utils: modify the AR to cross toolchain
  2017-10-19  7:12 [meta-networking][PATCH] bridge-utils: modify the AR to cross toolchain Li Zhou
@ 2017-10-19 16:06 ` Khem Raj
  2017-10-20 12:25   ` Joe MacDonald
  0 siblings, 1 reply; 3+ messages in thread
From: Khem Raj @ 2017-10-19 16:06 UTC (permalink / raw)
  To: Li Zhou; +Cc: openembeded-devel

On Thu, Oct 19, 2017 at 12:12 AM, Li Zhou <li.zhou@windriver.com> wrote:
> The Makefile uses the host “ar” tool when it should be using the
> ar from the target toolchain.
>
> Signed-off-by: Jiwei Sun <jiwei.sun@windriver.com>
> Signed-off-by: Li Zhou <li.zhou@windriver.com>
> ---
>  ...ridge-Modifying-the-AR-to-cross-toolchain.patch | 34 ++++++++++++++++++++++
>  .../bridge-utils/bridge-utils_1.5.bb               |  1 +
>  2 files changed, 35 insertions(+)
>  create mode 100644 meta-networking/recipes-support/bridge-utils/bridge-utils/0001-libbridge-Modifying-the-AR-to-cross-toolchain.patch
>
> diff --git a/meta-networking/recipes-support/bridge-utils/bridge-utils/0001-libbridge-Modifying-the-AR-to-cross-toolchain.patch b/meta-networking/recipes-support/bridge-utils/bridge-utils/0001-libbridge-Modifying-the-AR-to-cross-toolchain.patch
> new file mode 100644
> index 0000000..e477f41
> --- /dev/null
> +++ b/meta-networking/recipes-support/bridge-utils/bridge-utils/0001-libbridge-Modifying-the-AR-to-cross-toolchain.patch
> @@ -0,0 +1,34 @@
> +From 689e24ef05bd1772b2149e4eb48b058ca8361cf4 Mon Sep 17 00:00:00 2001
> +From: Li Zhou <li.zhou@windriver.com>
> +Date: Thu, 19 Oct 2017 11:34:18 +0800
> +Subject: [PATCH 2/2] libbridge: Modifying the AR to cross toolchain
> +MIME-Version: 1.0
> +Content-Type: text/plain; charset=UTF-8
> +Content-Transfer-Encoding: 8bit
> +
> +The Makefile uses the host “ar” tool when it should be using the
> +ar from the target toolchain.
> +
> +Upstream-Status: Pending
> +
> +Signed-off-by: Li Zhou <li.zhou@windriver.com>
> +---
> + libbridge/Makefile.in | 2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +diff --git a/libbridge/Makefile.in b/libbridge/Makefile.in
> +index 11c0829..59d7355 100644
> +--- a/libbridge/Makefile.in
> ++++ b/libbridge/Makefile.in
> +@@ -1,7 +1,7 @@
> +
> + KERNEL_HEADERS=-I@KERNEL_HEADERS@
> +
> +-AR=ar
> ++AR?=ar

perhaps AR=@AR@ would be better

> + RANLIB=@RANLIB@
> +
> + CC=@CC@
> +--
> +1.9.1
> +
> diff --git a/meta-networking/recipes-support/bridge-utils/bridge-utils_1.5.bb b/meta-networking/recipes-support/bridge-utils/bridge-utils_1.5.bb
> index 6032ab0..723ae5f 100644
> --- a/meta-networking/recipes-support/bridge-utils/bridge-utils_1.5.bb
> +++ b/meta-networking/recipes-support/bridge-utils/bridge-utils_1.5.bb
> @@ -7,6 +7,7 @@ SRC_URI += "\
>      file://0003-bridge-fix-some-build-time-warnings-errno.h.patch \
>      file://0004-libbridge-add-missing-include-s-fix-build-against-mu.patch \
>      file://0005-build-don-t-ignore-CFLAGS-from-environment.patch \
> +    file://0001-libbridge-Modifying-the-AR-to-cross-toolchain.patch \
>  "
>
>  LIC_FILES_CHKSUM = "file://COPYING;md5=f9d20a453221a1b7e32ae84694da2c37"
> --
> 1.9.1
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [meta-networking][PATCH] bridge-utils: modify the AR to cross toolchain
  2017-10-19 16:06 ` Khem Raj
@ 2017-10-20 12:25   ` Joe MacDonald
  0 siblings, 0 replies; 3+ messages in thread
From: Joe MacDonald @ 2017-10-20 12:25 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembeded-devel

[-- Attachment #1: Type: text/plain, Size: 3361 bytes --]

[Re: [oe] [meta-networking][PATCH] bridge-utils: modify the AR to cross toolchain] On 17.10.19 (Thu 09:06) Khem Raj wrote:

> On Thu, Oct 19, 2017 at 12:12 AM, Li Zhou <li.zhou@windriver.com> wrote:
> > The Makefile uses the host “ar” tool when it should be using the
> > ar from the target toolchain.
> >
> > Signed-off-by: Jiwei Sun <jiwei.sun@windriver.com>
> > Signed-off-by: Li Zhou <li.zhou@windriver.com>
> > ---
> >  ...ridge-Modifying-the-AR-to-cross-toolchain.patch | 34 ++++++++++++++++++++++
> >  .../bridge-utils/bridge-utils_1.5.bb               |  1 +
> >  2 files changed, 35 insertions(+)
> >  create mode 100644 meta-networking/recipes-support/bridge-utils/bridge-utils/0001-libbridge-Modifying-the-AR-to-cross-toolchain.patch
> >
> > diff --git a/meta-networking/recipes-support/bridge-utils/bridge-utils/0001-libbridge-Modifying-the-AR-to-cross-toolchain.patch b/meta-networking/recipes-support/bridge-utils/bridge-utils/0001-libbridge-Modifying-the-AR-to-cross-toolchain.patch
> > new file mode 100644
> > index 0000000..e477f41
> > --- /dev/null
> > +++ b/meta-networking/recipes-support/bridge-utils/bridge-utils/0001-libbridge-Modifying-the-AR-to-cross-toolchain.patch
> > @@ -0,0 +1,34 @@
> > +From 689e24ef05bd1772b2149e4eb48b058ca8361cf4 Mon Sep 17 00:00:00 2001
> > +From: Li Zhou <li.zhou@windriver.com>
> > +Date: Thu, 19 Oct 2017 11:34:18 +0800
> > +Subject: [PATCH 2/2] libbridge: Modifying the AR to cross toolchain
> > +MIME-Version: 1.0
> > +Content-Type: text/plain; charset=UTF-8
> > +Content-Transfer-Encoding: 8bit
> > +
> > +The Makefile uses the host “ar” tool when it should be using the
> > +ar from the target toolchain.
> > +
> > +Upstream-Status: Pending
> > +
> > +Signed-off-by: Li Zhou <li.zhou@windriver.com>
> > +---
> > + libbridge/Makefile.in | 2 +-
> > + 1 file changed, 1 insertion(+), 1 deletion(-)
> > +
> > +diff --git a/libbridge/Makefile.in b/libbridge/Makefile.in
> > +index 11c0829..59d7355 100644
> > +--- a/libbridge/Makefile.in
> > ++++ b/libbridge/Makefile.in
> > +@@ -1,7 +1,7 @@
> > +
> > + KERNEL_HEADERS=-I@KERNEL_HEADERS@
> > +
> > +-AR=ar
> > ++AR?=ar
> 
> perhaps AR=@AR@ would be better

Yeah, I  agree.

-J.

> 
> > + RANLIB=@RANLIB@
> > +
> > + CC=@CC@
> > +--
> > +1.9.1
> > +
> > diff --git a/meta-networking/recipes-support/bridge-utils/bridge-utils_1.5.bb b/meta-networking/recipes-support/bridge-utils/bridge-utils_1.5.bb
> > index 6032ab0..723ae5f 100644
> > --- a/meta-networking/recipes-support/bridge-utils/bridge-utils_1.5.bb
> > +++ b/meta-networking/recipes-support/bridge-utils/bridge-utils_1.5.bb
> > @@ -7,6 +7,7 @@ SRC_URI += "\
> >      file://0003-bridge-fix-some-build-time-warnings-errno.h.patch \
> >      file://0004-libbridge-add-missing-include-s-fix-build-against-mu.patch \
> >      file://0005-build-don-t-ignore-CFLAGS-from-environment.patch \
> > +    file://0001-libbridge-Modifying-the-AR-to-cross-toolchain.patch \
> >  "
> >
> >  LIC_FILES_CHKSUM = "file://COPYING;md5=f9d20a453221a1b7e32ae84694da2c37"
> > --
> > 1.9.1
> >
> > --
> > _______________________________________________
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
-- 
-Joe MacDonald.
:wq

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 499 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-10-20 12:25 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-19  7:12 [meta-networking][PATCH] bridge-utils: modify the AR to cross toolchain Li Zhou
2017-10-19 16:06 ` Khem Raj
2017-10-20 12:25   ` Joe MacDonald

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox