Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] poco: Add upstream patch to add support for aarch64.
@ 2013-05-22 10:49 Will Newton
  2013-05-22 10:50 ` Will Newton
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Will Newton @ 2013-05-22 10:49 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Will Newton <will.newton@linaro.org>
---
 package/poco/poco-aarch64.patch | 39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)
 create mode 100644 package/poco/poco-aarch64.patch

diff --git a/package/poco/poco-aarch64.patch b/package/poco/poco-aarch64.patch
new file mode 100644
index 0000000..f629f7b
--- /dev/null
+++ b/package/poco/poco-aarch64.patch
@@ -0,0 +1,39 @@
+From 37899eda9563d9134cb5864751b6432cabfaac3e Mon Sep 17 00:00:00 2001
+From: Will Newton <will.newton@linaro.org>
+Date: Tue, 21 May 2013 22:11:05 +0100
+Subject: [PATCH] Foundation/include/Poco/Platform.h: Add support for AArch64.
+
+Add support for big and little endian AArch64 preprocessor defines.
+---
+ Foundation/include/Poco/Platform.h | 8 +++++++-
+ 1 file changed, 7 insertions(+), 1 deletion(-)
+
+diff --git a/Foundation/include/Poco/Platform.h
b/Foundation/include/Poco/Platform.h
+index f34f277..8ddb4cb 100644
+--- a/Foundation/include/Poco/Platform.h
++++ b/Foundation/include/Poco/Platform.h
+@@ -145,6 +145,7 @@
+ #define POCO_ARCH_S390    0x0c
+ #define POCO_ARCH_SH      0x0d
+ #define POCO_ARCH_NIOS2   0x0e
++#define POCO_ARCH_AARCH64 0x0f
+
+
+ #if defined(__ALPHA) || defined(__alpha) || defined(__alpha__) ||
defined(_M_ALPHA)
+@@ -207,7 +208,12 @@
+     #else
+         #define POCO_ARCH_BIG_ENDIAN 1
+     #endif
+-
++#elif defined(__AARCH64EL__)
++    #define POCO_ARCH POCO_ARCH_AARCH64
++    #define POCO_ARCH_LITTLE_ENDIAN 1
++#elif defined(__AARCH64EB__)
++    #define POCO_ARCH POCO_ARCH_AARCH64
++    #define POCO_ARCH_BIG_ENDIAN 1
+ #endif
+
+
+--
+1.8.1.4
+
--
1.8.1.4

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

* [Buildroot] [PATCH] poco: Add upstream patch to add support for aarch64.
  2013-05-22 10:49 [Buildroot] [PATCH] poco: Add upstream patch to add support for aarch64 Will Newton
@ 2013-05-22 10:50 ` Will Newton
  2013-05-22 11:31 ` Baruch Siach
  2013-05-26 13:20 ` Thomas Petazzoni
  2 siblings, 0 replies; 4+ messages in thread
From: Will Newton @ 2013-05-22 10:50 UTC (permalink / raw)
  To: buildroot

Add attachment version of the patch to avoid whitespace damage.

On Wed, May 22, 2013 at 11:49 AM, Will Newton <will.newton@gmail.com> wrote:
> Signed-off-by: Will Newton <will.newton@linaro.org>
> ---
>  package/poco/poco-aarch64.patch | 39 +++++++++++++++++++++++++++++++++++++++
>  1 file changed, 39 insertions(+)
>  create mode 100644 package/poco/poco-aarch64.patch
>
> diff --git a/package/poco/poco-aarch64.patch b/package/poco/poco-aarch64.patch
> new file mode 100644
> index 0000000..f629f7b
> --- /dev/null
> +++ b/package/poco/poco-aarch64.patch
> @@ -0,0 +1,39 @@
> +From 37899eda9563d9134cb5864751b6432cabfaac3e Mon Sep 17 00:00:00 2001
> +From: Will Newton <will.newton@linaro.org>
> +Date: Tue, 21 May 2013 22:11:05 +0100
> +Subject: [PATCH] Foundation/include/Poco/Platform.h: Add support for AArch64.
> +
> +Add support for big and little endian AArch64 preprocessor defines.
> +---
> + Foundation/include/Poco/Platform.h | 8 +++++++-
> + 1 file changed, 7 insertions(+), 1 deletion(-)
> +
> +diff --git a/Foundation/include/Poco/Platform.h
> b/Foundation/include/Poco/Platform.h
> +index f34f277..8ddb4cb 100644
> +--- a/Foundation/include/Poco/Platform.h
> ++++ b/Foundation/include/Poco/Platform.h
> +@@ -145,6 +145,7 @@
> + #define POCO_ARCH_S390    0x0c
> + #define POCO_ARCH_SH      0x0d
> + #define POCO_ARCH_NIOS2   0x0e
> ++#define POCO_ARCH_AARCH64 0x0f
> +
> +
> + #if defined(__ALPHA) || defined(__alpha) || defined(__alpha__) ||
> defined(_M_ALPHA)
> +@@ -207,7 +208,12 @@
> +     #else
> +         #define POCO_ARCH_BIG_ENDIAN 1
> +     #endif
> +-
> ++#elif defined(__AARCH64EL__)
> ++    #define POCO_ARCH POCO_ARCH_AARCH64
> ++    #define POCO_ARCH_LITTLE_ENDIAN 1
> ++#elif defined(__AARCH64EB__)
> ++    #define POCO_ARCH POCO_ARCH_AARCH64
> ++    #define POCO_ARCH_BIG_ENDIAN 1
> + #endif
> +
> +
> +--
> +1.8.1.4
> +
> --
> 1.8.1.4
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0001-poco-Add-upstream-patch-to-add-support-for-aarch64.patch
Type: application/octet-stream
Size: 1828 bytes
Desc: not available
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20130522/56123634/attachment.obj>

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

* [Buildroot] [PATCH] poco: Add upstream patch to add support for aarch64.
  2013-05-22 10:49 [Buildroot] [PATCH] poco: Add upstream patch to add support for aarch64 Will Newton
  2013-05-22 10:50 ` Will Newton
@ 2013-05-22 11:31 ` Baruch Siach
  2013-05-26 13:20 ` Thomas Petazzoni
  2 siblings, 0 replies; 4+ messages in thread
From: Baruch Siach @ 2013-05-22 11:31 UTC (permalink / raw)
  To: buildroot

Hi Will,

On Wed, May 22, 2013 at 11:49:30AM +0100, Will Newton wrote:
> Signed-off-by: Will Newton <will.newton@linaro.org>
> ---
>  package/poco/poco-aarch64.patch | 39 +++++++++++++++++++++++++++++++++++++++
>  1 file changed, 39 insertions(+)
>  create mode 100644 package/poco/poco-aarch64.patch

This patch conflicts with the one posted by Gustavo last week 
(http://lists.busybox.net/pipermail/buildroot/2013-May/072343.html). Both 
patches should be combined into a single one.

baruch

> 
> diff --git a/package/poco/poco-aarch64.patch b/package/poco/poco-aarch64.patch
> new file mode 100644
> index 0000000..f629f7b
> --- /dev/null
> +++ b/package/poco/poco-aarch64.patch
> @@ -0,0 +1,39 @@
> +From 37899eda9563d9134cb5864751b6432cabfaac3e Mon Sep 17 00:00:00 2001
> +From: Will Newton <will.newton@linaro.org>
> +Date: Tue, 21 May 2013 22:11:05 +0100
> +Subject: [PATCH] Foundation/include/Poco/Platform.h: Add support for AArch64.
> +
> +Add support for big and little endian AArch64 preprocessor defines.
> +---
> + Foundation/include/Poco/Platform.h | 8 +++++++-
> + 1 file changed, 7 insertions(+), 1 deletion(-)
> +
> +diff --git a/Foundation/include/Poco/Platform.h
> b/Foundation/include/Poco/Platform.h
> +index f34f277..8ddb4cb 100644
> +--- a/Foundation/include/Poco/Platform.h
> ++++ b/Foundation/include/Poco/Platform.h
> +@@ -145,6 +145,7 @@
> + #define POCO_ARCH_S390    0x0c
> + #define POCO_ARCH_SH      0x0d
> + #define POCO_ARCH_NIOS2   0x0e
> ++#define POCO_ARCH_AARCH64 0x0f
> +
> +
> + #if defined(__ALPHA) || defined(__alpha) || defined(__alpha__) ||
> defined(_M_ALPHA)
> +@@ -207,7 +208,12 @@
> +     #else
> +         #define POCO_ARCH_BIG_ENDIAN 1
> +     #endif
> +-
> ++#elif defined(__AARCH64EL__)
> ++    #define POCO_ARCH POCO_ARCH_AARCH64
> ++    #define POCO_ARCH_LITTLE_ENDIAN 1
> ++#elif defined(__AARCH64EB__)
> ++    #define POCO_ARCH POCO_ARCH_AARCH64
> ++    #define POCO_ARCH_BIG_ENDIAN 1
> + #endif
> +
> +
> +--
> +1.8.1.4
> +

-- 
     http://baruch.siach.name/blog/                  ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch at tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -

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

* [Buildroot] [PATCH] poco: Add upstream patch to add support for aarch64.
  2013-05-22 10:49 [Buildroot] [PATCH] poco: Add upstream patch to add support for aarch64 Will Newton
  2013-05-22 10:50 ` Will Newton
  2013-05-22 11:31 ` Baruch Siach
@ 2013-05-26 13:20 ` Thomas Petazzoni
  2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2013-05-26 13:20 UTC (permalink / raw)
  To: buildroot

Dear Will Newton,

On Wed, 22 May 2013 11:49:30 +0100, Will Newton wrote:
> Signed-off-by: Will Newton <will.newton@linaro.org>
> ---
>  package/poco/poco-aarch64.patch | 39 +++++++++++++++++++++++++++++++++++++++
>  1 file changed, 39 insertions(+)
>  create mode 100644 package/poco/poco-aarch64.patch

Thanks, I've applied and tested that one here, after making the
necessary changes following 1c3afe4bc14a55aa491be270c24f31d1c5d4d8f1.

I will send the patch as part of a pull request to Peter later today.

Thanks,

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

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

end of thread, other threads:[~2013-05-26 13:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-22 10:49 [Buildroot] [PATCH] poco: Add upstream patch to add support for aarch64 Will Newton
2013-05-22 10:50 ` Will Newton
2013-05-22 11:31 ` Baruch Siach
2013-05-26 13:20 ` Thomas Petazzoni

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