* [Buildroot] [PATCH 1/2] cmake: bump to version 3.3.2
@ 2015-09-19 12:42 gustavo.zacarias at free-electrons.com
2015-09-19 13:32 ` Thomas Petazzoni
2015-09-20 11:34 ` Thomas Petazzoni
0 siblings, 2 replies; 4+ messages in thread
From: gustavo.zacarias at free-electrons.com @ 2015-09-19 12:42 UTC (permalink / raw)
To: buildroot
From: Gustavo Zacarias <gustavo.zacarias@free-electrons.com>
xtensa patch is upstream so there's no need for it any longer.
Signed-off-by: Gustavo Zacarias <gustavo.zacarias@free-electrons.com>
---
...IML-Teach-ABI.h-about-Xtensa-architecture.patch | 30 ----------------------
package/cmake/Config.in | 7 +++--
package/cmake/cmake.hash | 4 +--
package/cmake/cmake.mk | 6 ++---
4 files changed, 10 insertions(+), 37 deletions(-)
delete mode 100644 package/cmake/0002-KWIML-Teach-ABI.h-about-Xtensa-architecture.patch
diff --git a/package/cmake/0002-KWIML-Teach-ABI.h-about-Xtensa-architecture.patch b/package/cmake/0002-KWIML-Teach-ABI.h-about-Xtensa-architecture.patch
deleted file mode 100644
index 7d8eec6..0000000
--- a/package/cmake/0002-KWIML-Teach-ABI.h-about-Xtensa-architecture.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From ded79a976e2b63bbfd7a63f27ec00bd071410e27 Mon Sep 17 00:00:00 2001
-From: Max Filippov <jcmvbkbc@gmail.com>
-Date: Tue, 17 Mar 2015 15:51:04 +0300
-Subject: [PATCH] KWIML: Teach ABI.h about Xtensa architecture
-
-Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
----
- Utilities/KWIML/ABI.h.in | 6 ++++++
- 1 file changed, 6 insertions(+)
-
-diff --git a/Utilities/KWIML/ABI.h.in b/Utilities/KWIML/ABI.h.in
-index 21c9139..6300ada 100644
---- a/Utilities/KWIML/ABI.h.in
-+++ b/Utilities/KWIML/ABI.h.in
-@@ -432,6 +432,12 @@ suppression macro @KWIML at _ABI_NO_VERIFY was defined.
- # define @KWIML at _ABI_ENDIAN_ID @KWIML at _ABI_ENDIAN_ID_BIG
- # endif
-
-+/* Xtensa */
-+#elif defined(__XTENSA_EB__)
-+# define @KWIML at _ABI_ENDIAN_ID @KWIML at _ABI_ENDIAN_ID_BIG
-+#elif defined(__XTENSA_EL__)
-+# define @KWIML at _ABI_ENDIAN_ID @KWIML at _ABI_ENDIAN_ID_LITTLE
-+
- /* Unknown CPU */
- #elif !defined(@KWIML at _ABI_NO_ERROR_ENDIAN)
- # error "Byte order of target CPU unknown."
---
-1.8.1.4
-
diff --git a/package/cmake/Config.in b/package/cmake/Config.in
index f3f0f85..6f04a4a 100644
--- a/package/cmake/Config.in
+++ b/package/cmake/Config.in
@@ -14,12 +14,14 @@ config BR2_PACKAGE_CMAKE_CTEST
bool "ctest"
select BR2_PACKAGE_CMAKE
select BR2_PACKAGE_ZLIB
+ select BR2_PACKAGE_JSONCPP
select BR2_PACKAGE_LIBCURL
select BR2_PACKAGE_LIBARCHIVE
select BR2_PACKAGE_EXPAT
select BR2_PACKAGE_BZIP2
select BR2_PACKAGE_XZ
depends on BR2_PACKAGE_CMAKE_ARCH_SUPPORTS
+ depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # from jsoncpp
depends on BR2_USE_WCHAR # libarchive
depends on BR2_INSTALL_LIBSTDCPP
depends on !BR2_STATIC_LIBS
@@ -32,6 +34,7 @@ config BR2_PACKAGE_CMAKE_CTEST
http://www.cmake.org/
-comment "ctest needs a toolchain w/ C++, wchar, dynamic library"
+comment "ctest needs a toolchain w/ C++, wchar, dynamic library, gcc >= 4.7"
depends on BR2_PACKAGE_CMAKE_ARCH_SUPPORTS
- depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || BR2_STATIC_LIBS
+ depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
+ BR2_STATIC_LIBS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7
diff --git a/package/cmake/cmake.hash b/package/cmake/cmake.hash
index 76e03d3..8d130d7 100644
--- a/package/cmake/cmake.hash
+++ b/package/cmake/cmake.hash
@@ -1,2 +1,2 @@
-# Locally calculated
-sha256 45f4d3fa8a2f61cc092ae461aac4cac1bab4ac6706f98274ea7f314dd315c6d0 cmake-3.1.3.tar.gz
+# From http://www.cmake.org/files/v3.3/cmake-3.3.2-SHA-256.txt
+sha256 e75a178d6ebf182b048ebfe6e0657c49f0dc109779170bad7ffcb17463f2fc22 cmake-3.3.2.tar.gz
diff --git a/package/cmake/cmake.mk b/package/cmake/cmake.mk
index 9ca6443..0f888fd 100644
--- a/package/cmake/cmake.mk
+++ b/package/cmake/cmake.mk
@@ -4,14 +4,14 @@
#
################################################################################
-CMAKE_VERSION_MAJOR = 3.1
-CMAKE_VERSION = $(CMAKE_VERSION_MAJOR).3
+CMAKE_VERSION_MAJOR = 3.3
+CMAKE_VERSION = $(CMAKE_VERSION_MAJOR).2
CMAKE_SITE = http://www.cmake.org/files/v$(CMAKE_VERSION_MAJOR)
CMAKE_LICENSE = BSD-3c
CMAKE_LICENSE_FILES = Copyright.txt
HOST_CMAKE_DEPENDENCIES = host-pkgconf
-CMAKE_DEPENDENCIES = zlib libcurl libarchive expat bzip2 xz
+CMAKE_DEPENDENCIES = zlib jsoncpp libcurl libarchive expat bzip2 xz
CMAKE_CONF_OPTS = \
-DKWSYS_LFS_WORKS=TRUE \
--
2.4.6
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 1/2] cmake: bump to version 3.3.2
2015-09-19 12:42 [Buildroot] [PATCH 1/2] cmake: bump to version 3.3.2 gustavo.zacarias at free-electrons.com
@ 2015-09-19 13:32 ` Thomas Petazzoni
2015-09-20 11:34 ` Thomas Petazzoni
1 sibling, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2015-09-19 13:32 UTC (permalink / raw)
To: buildroot
Dear gustavo.zacarias at free-electrons.com,
On Sat, 19 Sep 2015 09:42:11 -0300, gustavo.zacarias at free-electrons.com
wrote:
> From: Gustavo Zacarias <gustavo.zacarias@free-electrons.com>
>
> xtensa patch is upstream so there's no need for it any longer.
>
> Signed-off-by: Gustavo Zacarias <gustavo.zacarias@free-electrons.com>
> ---
> ...IML-Teach-ABI.h-about-Xtensa-architecture.patch | 30 ----------------------
> package/cmake/Config.in | 7 +++--
> package/cmake/cmake.hash | 4 +--
> package/cmake/cmake.mk | 6 ++---
> 4 files changed, 10 insertions(+), 37 deletions(-)
> delete mode 100644 package/cmake/0002-KWIML-Teach-ABI.h-about-Xtensa-architecture.patch
Applied, thanks.
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 1/2] cmake: bump to version 3.3.2
2015-09-19 12:42 [Buildroot] [PATCH 1/2] cmake: bump to version 3.3.2 gustavo.zacarias at free-electrons.com
2015-09-19 13:32 ` Thomas Petazzoni
@ 2015-09-20 11:34 ` Thomas Petazzoni
2015-09-21 12:48 ` Gustavo Zacarias
1 sibling, 1 reply; 4+ messages in thread
From: Thomas Petazzoni @ 2015-09-20 11:34 UTC (permalink / raw)
To: buildroot
Gustavo,
On Sat, 19 Sep 2015 09:42:11 -0300, gustavo.zacarias at free-electrons.com
wrote:
> From: Gustavo Zacarias <gustavo.zacarias@free-electrons.com>
>
> xtensa patch is upstream so there's no need for it any longer.
>
> Signed-off-by: Gustavo Zacarias <gustavo.zacarias@free-electrons.com>
This is causing some build issues:
http://autobuild.buildroot.net/results/2bd81e2ecb09e64ccf9e5c35f1160a9b9e7bd079/
Can you have a look?
Thanks!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 1/2] cmake: bump to version 3.3.2
2015-09-20 11:34 ` Thomas Petazzoni
@ 2015-09-21 12:48 ` Gustavo Zacarias
0 siblings, 0 replies; 4+ messages in thread
From: Gustavo Zacarias @ 2015-09-21 12:48 UTC (permalink / raw)
To: buildroot
On 20/09/15 08:34, Thomas Petazzoni wrote:
> Gustavo,
>
> On Sat, 19 Sep 2015 09:42:11 -0300, gustavo.zacarias at free-electrons.com
> wrote:
>> From: Gustavo Zacarias <gustavo.zacarias@free-electrons.com>
>>
>> xtensa patch is upstream so there's no need for it any longer.
>>
>> Signed-off-by: Gustavo Zacarias <gustavo.zacarias@free-electrons.com>
>
> This is causing some build issues:
>
> http://autobuild.buildroot.net/results/2bd81e2ecb09e64ccf9e5c35f1160a9b9e7bd079/
>
> Can you have a look?
Hi Thomas.
It's just that single failure in that single host, for a file that never
changes.
I bet it's a SEU, the ASCII code for 'L' is 0100 1100, and for '\' it's
0101 1100.
According to https://gcc.gnu.org/wiki/CompileFarm gcc75 is an i7-2600,
hence no ECC memory.
Regards.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-09-21 12:48 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-19 12:42 [Buildroot] [PATCH 1/2] cmake: bump to version 3.3.2 gustavo.zacarias at free-electrons.com
2015-09-19 13:32 ` Thomas Petazzoni
2015-09-20 11:34 ` Thomas Petazzoni
2015-09-21 12:48 ` Gustavo Zacarias
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox