All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/llvm: bump to version 7.0.0
@ 2018-09-30 13:06 Valentin Korenblit
  2018-09-30 13:06 ` [Buildroot] [PATCH 2/2] package/clang: " Valentin Korenblit
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Valentin Korenblit @ 2018-09-30 13:06 UTC (permalink / raw
  To: buildroot

LLVM_BUILD_GLOBAL_ISEL does no longer exist

Signed-off-by: Valentin Korenblit <valentinkorenblit@gmail.com>
---
 package/llvm/llvm.hash | 4 ++--
 package/llvm/llvm.mk   | 7 +------
 2 files changed, 3 insertions(+), 8 deletions(-)

diff --git a/package/llvm/llvm.hash b/package/llvm/llvm.hash
index 6a09e58..200907f 100644
--- a/package/llvm/llvm.hash
+++ b/package/llvm/llvm.hash
@@ -1,3 +1,3 @@
 # locally calculated
-sha256 b6d6c324f9c71494c0ccaf3dac1f16236d970002b42bb24a6c9e1634f7d0f4e2  llvm-6.0.1.src.tar.xz
-sha256 abd4d8794808bacb1eb6924d49efafd9ab6eef88faaaeb5d3cfa13ee3670d672 LICENSE.TXT
+sha256 8bc1f844e6cbde1b652c19c1edebc1864456fd9c78b8c1bea038e51b363fe222 llvm-7.0.0.src.tar.xz
+sha256 0303dfeaac87b80d2d1e543aa38d5be77b0eac93c3d04fe7e3c8eaa71a778667 LICENSE.TXT
diff --git a/package/llvm/llvm.mk b/package/llvm/llvm.mk
index 756b46a..1f9bd44 100644
--- a/package/llvm/llvm.mk
+++ b/package/llvm/llvm.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-LLVM_VERSION = 6.0.1
+LLVM_VERSION = 7.0.0
 LLVM_SITE = http://llvm.org/releases/$(LLVM_VERSION)
 LLVM_SOURCE = llvm-$(LLVM_VERSION).src.tar.xz
 LLVM_LICENSE = NCSA
@@ -30,11 +30,6 @@ LLVM_CONF_OPTS += -DLLVM_CCACHE_BUILD=$(if $(BR2_CCACHE),ON,OFF)
 # will try to use target's libc.
 HOST_LLVM_CONF_OPTS += -DCMAKE_INSTALL_RPATH="$(HOST_DIR)/lib"
 
-# Disable experimental Global Instruction Selection support.
-# https://llvm.org/docs/GlobalISel.html
-HOST_LLVM_CONF_OPTS += -DLLVM_BUILD_GLOBAL_ISEL=OFF
-LLVM_CONF_OPTS += -DLLVM_BUILD_GLOBAL_ISEL=OFF
-
 # Get target architecture
 LLVM_TARGET_ARCH = $(call qstrip,$(BR2_PACKAGE_LLVM_TARGET_ARCH))
 
-- 
2.7.4

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

* [Buildroot] [PATCH 2/2] package/clang: bump to version 7.0.0
  2018-09-30 13:06 [Buildroot] [PATCH 1/2] package/llvm: bump to version 7.0.0 Valentin Korenblit
@ 2018-09-30 13:06 ` Valentin Korenblit
  2018-09-30 13:18   ` Romain Naour
  2018-09-30 18:10   ` Peter Korsgaard
  2018-09-30 13:17 ` [Buildroot] [PATCH 1/2] package/llvm: " Romain Naour
  2018-09-30 18:09 ` Peter Korsgaard
  2 siblings, 2 replies; 6+ messages in thread
From: Valentin Korenblit @ 2018-09-30 13:06 UTC (permalink / raw
  To: buildroot

Signed-off-by: Valentin Korenblit <valentinkorenblit@gmail.com>
---
 package/clang/clang.hash | 4 ++--
 package/clang/clang.mk   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/clang/clang.hash b/package/clang/clang.hash
index f2bd3db..aaca1a7 100644
--- a/package/clang/clang.hash
+++ b/package/clang/clang.hash
@@ -1,3 +1,3 @@
 # locally calculated
-sha256 7c243f1485bddfdfedada3cd402ff4792ea82362ff91fbdac2dae67c6026b667  cfe-6.0.1.src.tar.xz
-sha256 de4c79665f0f5688b0ace17cba6f8e0343925bb95e0949d66d47bbd4527310d6 LICENSE.TXT
+sha256 550212711c752697d2f82c648714a7221b1207fd9441543ff4aa9e3be45bba55 cfe-7.0.0.src.tar.xz
+sha256 3f3f2e96e3b7319d2b4b49227d6da624a717340107ce2ca5342a25e0e57dfd35 LICENSE.TXT
diff --git a/package/clang/clang.mk b/package/clang/clang.mk
index 230d0c6..c12de87 100644
--- a/package/clang/clang.mk
+++ b/package/clang/clang.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-CLANG_VERSION = 6.0.1
+CLANG_VERSION = 7.0.0
 CLANG_SITE = http://llvm.org/releases/$(CLANG_VERSION)
 CLANG_SOURCE = cfe-$(CLANG_VERSION).src.tar.xz
 CLANG_LICENSE = NCSA
-- 
2.7.4

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

* [Buildroot] [PATCH 1/2] package/llvm: bump to version 7.0.0
  2018-09-30 13:06 [Buildroot] [PATCH 1/2] package/llvm: bump to version 7.0.0 Valentin Korenblit
  2018-09-30 13:06 ` [Buildroot] [PATCH 2/2] package/clang: " Valentin Korenblit
@ 2018-09-30 13:17 ` Romain Naour
  2018-09-30 18:09 ` Peter Korsgaard
  2 siblings, 0 replies; 6+ messages in thread
From: Romain Naour @ 2018-09-30 13:17 UTC (permalink / raw
  To: buildroot

Hi Valentin,

Le 30/09/2018 ? 15:06, Valentin Korenblit a ?crit?:
> LLVM_BUILD_GLOBAL_ISEL does no longer exist
> 

Reviewed-by: Romain Naour <romain.naour@gmail.com>
[Tested on x86_64 with a Radeon HD6310 graphic card using llvmpipe or Gallium
Radeon R600 driver]
Tested-by: Romain Naour <romain.naour@gmail.com>

Valentin, it would be great if you can add a small comment about your runtime
test. Also, when a license file hash change you must explain what's changed.

LICENSE.TXT hash changed due to the Copyright date update.

Best regards,
Romain

> Signed-off-by: Valentin Korenblit <valentinkorenblit@gmail.com>
> ---
>  package/llvm/llvm.hash | 4 ++--
>  package/llvm/llvm.mk   | 7 +------
>  2 files changed, 3 insertions(+), 8 deletions(-)
> 
> diff --git a/package/llvm/llvm.hash b/package/llvm/llvm.hash
> index 6a09e58..200907f 100644
> --- a/package/llvm/llvm.hash
> +++ b/package/llvm/llvm.hash
> @@ -1,3 +1,3 @@
>  # locally calculated
> -sha256 b6d6c324f9c71494c0ccaf3dac1f16236d970002b42bb24a6c9e1634f7d0f4e2  llvm-6.0.1.src.tar.xz
> -sha256 abd4d8794808bacb1eb6924d49efafd9ab6eef88faaaeb5d3cfa13ee3670d672 LICENSE.TXT
> +sha256 8bc1f844e6cbde1b652c19c1edebc1864456fd9c78b8c1bea038e51b363fe222 llvm-7.0.0.src.tar.xz
> +sha256 0303dfeaac87b80d2d1e543aa38d5be77b0eac93c3d04fe7e3c8eaa71a778667 LICENSE.TXT
> diff --git a/package/llvm/llvm.mk b/package/llvm/llvm.mk
> index 756b46a..1f9bd44 100644
> --- a/package/llvm/llvm.mk
> +++ b/package/llvm/llvm.mk
> @@ -4,7 +4,7 @@
>  #
>  ################################################################################
>  
> -LLVM_VERSION = 6.0.1
> +LLVM_VERSION = 7.0.0
>  LLVM_SITE = http://llvm.org/releases/$(LLVM_VERSION)
>  LLVM_SOURCE = llvm-$(LLVM_VERSION).src.tar.xz
>  LLVM_LICENSE = NCSA
> @@ -30,11 +30,6 @@ LLVM_CONF_OPTS += -DLLVM_CCACHE_BUILD=$(if $(BR2_CCACHE),ON,OFF)
>  # will try to use target's libc.
>  HOST_LLVM_CONF_OPTS += -DCMAKE_INSTALL_RPATH="$(HOST_DIR)/lib"
>  
> -# Disable experimental Global Instruction Selection support.
> -# https://llvm.org/docs/GlobalISel.html
> -HOST_LLVM_CONF_OPTS += -DLLVM_BUILD_GLOBAL_ISEL=OFF
> -LLVM_CONF_OPTS += -DLLVM_BUILD_GLOBAL_ISEL=OFF
> -
>  # Get target architecture
>  LLVM_TARGET_ARCH = $(call qstrip,$(BR2_PACKAGE_LLVM_TARGET_ARCH))
>  
> 

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

* [Buildroot] [PATCH 2/2] package/clang: bump to version 7.0.0
  2018-09-30 13:06 ` [Buildroot] [PATCH 2/2] package/clang: " Valentin Korenblit
@ 2018-09-30 13:18   ` Romain Naour
  2018-09-30 18:10   ` Peter Korsgaard
  1 sibling, 0 replies; 6+ messages in thread
From: Romain Naour @ 2018-09-30 13:18 UTC (permalink / raw
  To: buildroot

Hi Valentin,

Le 30/09/2018 ? 15:06, Valentin Korenblit a ?crit?:

Same comment as for llvm.

Reviewed-by: Romain Naour <romain.naour@smile.fr>
Tested-by: Romain Naour <romain.naour@gmail.com>

Best regards,
Romain

> Signed-off-by: Valentin Korenblit <valentinkorenblit@gmail.com>
> ---
>  package/clang/clang.hash | 4 ++--
>  package/clang/clang.mk   | 2 +-
>  2 files changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/package/clang/clang.hash b/package/clang/clang.hash
> index f2bd3db..aaca1a7 100644
> --- a/package/clang/clang.hash
> +++ b/package/clang/clang.hash
> @@ -1,3 +1,3 @@
>  # locally calculated
> -sha256 7c243f1485bddfdfedada3cd402ff4792ea82362ff91fbdac2dae67c6026b667  cfe-6.0.1.src.tar.xz
> -sha256 de4c79665f0f5688b0ace17cba6f8e0343925bb95e0949d66d47bbd4527310d6 LICENSE.TXT
> +sha256 550212711c752697d2f82c648714a7221b1207fd9441543ff4aa9e3be45bba55 cfe-7.0.0.src.tar.xz
> +sha256 3f3f2e96e3b7319d2b4b49227d6da624a717340107ce2ca5342a25e0e57dfd35 LICENSE.TXT
> diff --git a/package/clang/clang.mk b/package/clang/clang.mk
> index 230d0c6..c12de87 100644
> --- a/package/clang/clang.mk
> +++ b/package/clang/clang.mk
> @@ -4,7 +4,7 @@
>  #
>  ################################################################################
>  
> -CLANG_VERSION = 6.0.1
> +CLANG_VERSION = 7.0.0
>  CLANG_SITE = http://llvm.org/releases/$(CLANG_VERSION)
>  CLANG_SOURCE = cfe-$(CLANG_VERSION).src.tar.xz
>  CLANG_LICENSE = NCSA
> 

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

* [Buildroot] [PATCH 1/2] package/llvm: bump to version 7.0.0
  2018-09-30 13:06 [Buildroot] [PATCH 1/2] package/llvm: bump to version 7.0.0 Valentin Korenblit
  2018-09-30 13:06 ` [Buildroot] [PATCH 2/2] package/clang: " Valentin Korenblit
  2018-09-30 13:17 ` [Buildroot] [PATCH 1/2] package/llvm: " Romain Naour
@ 2018-09-30 18:09 ` Peter Korsgaard
  2 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2018-09-30 18:09 UTC (permalink / raw
  To: buildroot

>>>>> "Valentin" == Valentin Korenblit <valentinkorenblit@gmail.com> writes:

 > LLVM_BUILD_GLOBAL_ISEL does no longer exist
 > Signed-off-by: Valentin Korenblit <valentinkorenblit@gmail.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 2/2] package/clang: bump to version 7.0.0
  2018-09-30 13:06 ` [Buildroot] [PATCH 2/2] package/clang: " Valentin Korenblit
  2018-09-30 13:18   ` Romain Naour
@ 2018-09-30 18:10   ` Peter Korsgaard
  1 sibling, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2018-09-30 18:10 UTC (permalink / raw
  To: buildroot

>>>>> "Valentin" == Valentin Korenblit <valentinkorenblit@gmail.com> writes:

 > Signed-off-by: Valentin Korenblit <valentinkorenblit@gmail.com>

Committed after adding a comment about the LICENSE.TXT hash change as
suggested by Romain, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2018-09-30 18:10 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-09-30 13:06 [Buildroot] [PATCH 1/2] package/llvm: bump to version 7.0.0 Valentin Korenblit
2018-09-30 13:06 ` [Buildroot] [PATCH 2/2] package/clang: " Valentin Korenblit
2018-09-30 13:18   ` Romain Naour
2018-09-30 18:10   ` Peter Korsgaard
2018-09-30 13:17 ` [Buildroot] [PATCH 1/2] package/llvm: " Romain Naour
2018-09-30 18:09 ` Peter Korsgaard

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.