[arch-commits] Commit in mingw-w64-gcc/repos/community-i686 (7 files)

Sergej Pupykin spupykin at archlinux.org
Wed Oct 28 16:54:45 UTC 2015


    Date: Wednesday, October 28, 2015 @ 17:54:45
  Author: spupykin
Revision: 145203

archrelease: copy trunk to community-i686

Added:
  mingw-w64-gcc/repos/community-i686/PKGBUILD
    (from rev 145202, mingw-w64-gcc/trunk/PKGBUILD)
  mingw-w64-gcc/repos/community-i686/gcc-make-xmmintrin-header-cplusplus-compatible.patch
    (from rev 145202, mingw-w64-gcc/trunk/gcc-make-xmmintrin-header-cplusplus-compatible.patch)
  mingw-w64-gcc/repos/community-i686/isl.patch
    (from rev 145202, mingw-w64-gcc/trunk/isl.patch)
  mingw-w64-gcc/repos/community-i686/libgomp.patch
    (from rev 145202, mingw-w64-gcc/trunk/libgomp.patch)
Deleted:
  mingw-w64-gcc/repos/community-i686/PKGBUILD
  mingw-w64-gcc/repos/community-i686/gcc-make-xmmintrin-header-cplusplus-compatible.patch
  mingw-w64-gcc/repos/community-i686/isl.patch

------------------------------------------------------+
 PKGBUILD                                             |  181 ++++++++---------
 gcc-make-xmmintrin-header-cplusplus-compatible.patch |   48 ++--
 isl.patch                                            |  152 +++++++-------
 libgomp.patch                                        |   41 +++
 4 files changed, 233 insertions(+), 189 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2015-10-28 16:54:14 UTC (rev 145202)
+++ PKGBUILD	2015-10-28 16:54:45 UTC (rev 145203)
@@ -1,89 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
-# Maintainer: rubenvb vanboxem <dottie> ruben <attie> gmail <dottie> com
-
-_targets="i686-w64-mingw32 x86_64-w64-mingw32"
-
-pkgname=mingw-w64-gcc
-pkgver=5.2.0
-_islver=0.12.2
-_cloogver=0.18.1
-pkgrel=1
-pkgdesc="Cross GCC for the MinGW-w64 cross-compiler"
-arch=('i686' 'x86_64')
-url="http://gcc.gnu.org"
-license=('GPL' 'LGPL' 'FDL' 'custom')
-groups=('mingw-w64-toolchain' 'mingw-w64')
-depends=('zlib' 'libmpc'
-	 'mingw-w64-crt' 'mingw-w64-binutils' 'mingw-w64-winpthreads'
-	 'mingw-w64-headers')
-makedepends=("gcc-ada=${pkgver}")
-#checkdepends=('dejagnu') # Windows executables could run on Arch through bin_mft and Wine
-optdepends=()
-provides=('mingw-w64-gcc-base')
-replaces=()
-backup=()
-options=('!strip' 'staticlibs' '!emptydirs' '!buildflags')
-source=("ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-${pkgver}.tar.bz2"
-	"http://isl.gforge.inria.fr/isl-${_islver}.tar.bz2"
-	"http://www.bastoul.net/cloog/pages/download/cloog-${_cloogver}.tar.gz"
-	'gcc-make-xmmintrin-header-cplusplus-compatible.patch')
-md5sums=('a51bcfeb3da7dd4c623e27207ed43467'
-         'e039bfcfb6c2ab039b8ee69bf883e824'
-         'e34fca0540d840e5d0f6427e98c92252'
-         'da6c9ba6baebe1286f3219d4181cdbb8')
-
-prepare() {
-  cd ${srcdir}/gcc-${pkgver}
-
-  # link isl/cloog for in-tree builds
-  ln -s ../isl-${_islver} isl
-  ln -s ../cloog-${_cloogver} cloog
-
-  #do not install libiberty
-  sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in
-  # hack! - some configure tests for header files using "$CPP $CPPFLAGS"
-  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" {libiberty,gcc}/configure
-
-  # The file xmmintrin.h doesn't contain an extern "C" part
-  # This conflicts with mingw-w64 intrin.h and results in build
-  # failure like this one in mingw-w64-qt5-qtbase:
-  # /usr/lib/gcc/i686-w64-mingw32/4.8.0/include/xmmintrin.h:997:1: error: previous declaration of 'int _m_pextrw(__m64, int)' with 'C++' linkage
-  # /usr/i686-w64-mingw32/include/intrin.h:561:28: error: conflicts with new declaration with 'C' linkage
-  patch -p0 -i ${srcdir}/gcc-make-xmmintrin-header-cplusplus-compatible.patch
-}
-
-build() {
-  for _target in ${_targets}; do
-    mkdir -p ${srcdir}/gcc-build-${_target} && cd ${srcdir}/gcc-build-${_target}
-
-    ${srcdir}/gcc-${pkgver}/configure --prefix=/usr --libexecdir=/usr/lib \
-        --target=${_target} \
-        --enable-languages=c,lto,c++,objc,obj-c++,fortran,ada \
-        --enable-shared --enable-static \
-        --enable-threads=posix --enable-fully-dynamic-string --enable-libstdcxx-time=yes \
-        --with-system-zlib --enable-cloog-backend=isl \
-        --enable-lto --disable-dw2-exceptions --enable-libgomp \
-        --disable-multilib --enable-checking=release
-    make all
-  done
-}
-
-package() {
-  for _target in ${_targets}; do
-    cd ${srcdir}/gcc-build-${_target}
-    make DESTDIR=${pkgdir} install
-    ${_target}-strip ${pkgdir}/usr/${_target}/lib/*.dll
-    strip ${pkgdir}/usr/bin/${_target}-*
-    strip ${pkgdir}/usr/lib/gcc/${_target}/${pkgver}/{cc1*,collect2,gnat1,f951,lto*}
-    ln -s ${_target}-gcc $pkgdir/usr/bin/${_target}-cc
-    # mv dlls
-    mkdir -p $pkgdir/usr/${_target}/bin/
-    mv $pkgdir/usr/${_target}/lib/*.dll $pkgdir/usr/${_target}/bin/
-  done
-  strip ${pkgdir}/usr/bin/*
-  # remove unnecessary files
-  rm -r ${pkgdir}/usr/share
-  rm -f ${pkgdir}/usr/lib/libcc1.so*
-  rm -f ${pkgdir}/usr/lib/libcc1.a
-}

Copied: mingw-w64-gcc/repos/community-i686/PKGBUILD (from rev 145202, mingw-w64-gcc/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2015-10-28 16:54:45 UTC (rev 145203)
@@ -0,0 +1,92 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Maintainer: rubenvb vanboxem <dottie> ruben <attie> gmail <dottie> com
+
+_targets="i686-w64-mingw32 x86_64-w64-mingw32"
+
+pkgname=mingw-w64-gcc
+pkgver=5.2.0
+_islver=0.12.2
+_cloogver=0.18.1
+pkgrel=2
+pkgdesc="Cross GCC for the MinGW-w64 cross-compiler"
+arch=('i686' 'x86_64')
+url="http://gcc.gnu.org"
+license=('GPL' 'LGPL' 'FDL' 'custom')
+groups=('mingw-w64-toolchain' 'mingw-w64')
+depends=('zlib' 'libmpc'
+	 'mingw-w64-crt' 'mingw-w64-binutils' 'mingw-w64-winpthreads'
+	 'mingw-w64-headers')
+makedepends=("gcc-ada=${pkgver}")
+#checkdepends=('dejagnu') # Windows executables could run on Arch through bin_mft and Wine
+optdepends=()
+provides=('mingw-w64-gcc-base')
+replaces=()
+backup=()
+options=('!strip' 'staticlibs' '!emptydirs' '!buildflags')
+source=("ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-${pkgver}.tar.bz2"
+	"http://isl.gforge.inria.fr/isl-${_islver}.tar.bz2"
+	"http://www.bastoul.net/cloog/pages/download/cloog-${_cloogver}.tar.gz"
+	'gcc-make-xmmintrin-header-cplusplus-compatible.patch'
+	'libgomp.patch')
+md5sums=('a51bcfeb3da7dd4c623e27207ed43467'
+         'e039bfcfb6c2ab039b8ee69bf883e824'
+         'e34fca0540d840e5d0f6427e98c92252'
+         'da6c9ba6baebe1286f3219d4181cdbb8'
+         '83a29951782870ac94f497815cbfd73e')
+
+prepare() {
+  cd ${srcdir}/gcc-${pkgver}
+
+  # link isl/cloog for in-tree builds
+  ln -s ../isl-${_islver} isl
+  ln -s ../cloog-${_cloogver} cloog
+
+  #do not install libiberty
+  sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in
+  # hack! - some configure tests for header files using "$CPP $CPPFLAGS"
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" {libiberty,gcc}/configure
+
+  # The file xmmintrin.h doesn't contain an extern "C" part
+  # This conflicts with mingw-w64 intrin.h and results in build
+  # failure like this one in mingw-w64-qt5-qtbase:
+  # /usr/lib/gcc/i686-w64-mingw32/4.8.0/include/xmmintrin.h:997:1: error: previous declaration of 'int _m_pextrw(__m64, int)' with 'C++' linkage
+  # /usr/i686-w64-mingw32/include/intrin.h:561:28: error: conflicts with new declaration with 'C' linkage
+  patch -p0 -i ${srcdir}/gcc-make-xmmintrin-header-cplusplus-compatible.patch
+  patch -p0 -i ${srcdir}/libgomp.patch
+}
+
+build() {
+  for _target in ${_targets}; do
+    mkdir -p ${srcdir}/gcc-build-${_target} && cd ${srcdir}/gcc-build-${_target}
+
+    ${srcdir}/gcc-${pkgver}/configure --prefix=/usr --libexecdir=/usr/lib \
+        --target=${_target} \
+        --enable-languages=c,lto,c++,objc,obj-c++,fortran,ada \
+        --enable-shared --enable-static \
+        --enable-threads=posix --enable-fully-dynamic-string --enable-libstdcxx-time=yes \
+        --with-system-zlib --enable-cloog-backend=isl \
+        --enable-lto --disable-dw2-exceptions --enable-libgomp \
+        --disable-multilib --enable-checking=release
+    make all
+  done
+}
+
+package() {
+  for _target in ${_targets}; do
+    cd ${srcdir}/gcc-build-${_target}
+    make DESTDIR=${pkgdir} install
+    ${_target}-strip ${pkgdir}/usr/${_target}/lib/*.dll
+    strip ${pkgdir}/usr/bin/${_target}-*
+    strip ${pkgdir}/usr/lib/gcc/${_target}/${pkgver}/{cc1*,collect2,gnat1,f951,lto*}
+    ln -s ${_target}-gcc $pkgdir/usr/bin/${_target}-cc
+    # mv dlls
+    mkdir -p $pkgdir/usr/${_target}/bin/
+    mv $pkgdir/usr/${_target}/lib/*.dll $pkgdir/usr/${_target}/bin/
+  done
+  strip ${pkgdir}/usr/bin/*
+  # remove unnecessary files
+  rm -r ${pkgdir}/usr/share
+  rm -f ${pkgdir}/usr/lib/libcc1.so*
+  rm -f ${pkgdir}/usr/lib/libcc1.a
+}

Deleted: gcc-make-xmmintrin-header-cplusplus-compatible.patch
===================================================================
--- gcc-make-xmmintrin-header-cplusplus-compatible.patch	2015-10-28 16:54:14 UTC (rev 145202)
+++ gcc-make-xmmintrin-header-cplusplus-compatible.patch	2015-10-28 16:54:45 UTC (rev 145203)
@@ -1,24 +0,0 @@
---- gcc/config/i386/xmmintrin.h.orig	2013-01-18 14:57:27.762645582 +0100
-+++ gcc/config/i386/xmmintrin.h	2013-01-18 14:58:27.604561940 +0100
-@@ -37,6 +37,10 @@
- /* Get _mm_malloc () and _mm_free ().  */
- #include <mm_malloc.h>
- 
-+#ifdef __cplusplus
-+extern "C" {
-+#endif
-+
- /* The Intel API is flexible enough that we must allow aliasing with other
-    vector types, and their scalar components.  */
- typedef float __m128 __attribute__ ((__vector_size__ (16), __may_alias__));
-@@ -1241,6 +1245,10 @@
-   (row3) = __builtin_ia32_movhlps (__t3, __t2);				\
- } while (0)
- 
-+#ifdef __cplusplus
-+}
-+#endif
-+
- /* For backward source compatibility.  */
- #ifdef __SSE2__
- # include <emmintrin.h>

Copied: mingw-w64-gcc/repos/community-i686/gcc-make-xmmintrin-header-cplusplus-compatible.patch (from rev 145202, mingw-w64-gcc/trunk/gcc-make-xmmintrin-header-cplusplus-compatible.patch)
===================================================================
--- gcc-make-xmmintrin-header-cplusplus-compatible.patch	                        (rev 0)
+++ gcc-make-xmmintrin-header-cplusplus-compatible.patch	2015-10-28 16:54:45 UTC (rev 145203)
@@ -0,0 +1,24 @@
+--- gcc/config/i386/xmmintrin.h.orig	2013-01-18 14:57:27.762645582 +0100
++++ gcc/config/i386/xmmintrin.h	2013-01-18 14:58:27.604561940 +0100
+@@ -37,6 +37,10 @@
+ /* Get _mm_malloc () and _mm_free ().  */
+ #include <mm_malloc.h>
+ 
++#ifdef __cplusplus
++extern "C" {
++#endif
++
+ /* The Intel API is flexible enough that we must allow aliasing with other
+    vector types, and their scalar components.  */
+ typedef float __m128 __attribute__ ((__vector_size__ (16), __may_alias__));
+@@ -1241,6 +1245,10 @@
+   (row3) = __builtin_ia32_movhlps (__t3, __t2);				\
+ } while (0)
+ 
++#ifdef __cplusplus
++}
++#endif
++
+ /* For backward source compatibility.  */
+ #ifdef __SSE2__
+ # include <emmintrin.h>

Deleted: isl.patch
===================================================================
--- isl.patch	2015-10-28 16:54:14 UTC (rev 145202)
+++ isl.patch	2015-10-28 16:54:45 UTC (rev 145203)
@@ -1,76 +0,0 @@
-diff -wbBur gcc-4.9.0/gcc/graphite-clast-to-gimple.c gcc-4.9.0.my/gcc/graphite-clast-to-gimple.c
---- gcc-4.9.0/gcc/graphite-clast-to-gimple.c	2014-03-03 15:39:22.000000000 +0400
-+++ gcc-4.9.0.my/gcc/graphite-clast-to-gimple.c	2014-06-09 15:23:14.858543000 +0400
-@@ -28,6 +28,8 @@
- #include <isl/constraint.h>
- #include <isl/ilp.h>
- #include <isl/aff.h>
-+#include <isl/deprecated/int.h>
-+#include <isl/deprecated/ilp_int.h>
- #include <cloog/cloog.h>
- #include <cloog/isl/domain.h>
- #endif
-diff -wbBur gcc-4.9.0/gcc/graphite-interchange.c gcc-4.9.0.my/gcc/graphite-interchange.c
---- gcc-4.9.0/gcc/graphite-interchange.c	2014-01-03 02:23:26.000000000 +0400
-+++ gcc-4.9.0.my/gcc/graphite-interchange.c	2014-06-09 15:24:02.275209122 +0400
-@@ -29,6 +29,9 @@
- #include <isl/map.h>
- #include <isl/union_map.h>
- #include <isl/ilp.h>
-+#include <isl/deprecated/int.h>
-+#include <isl/deprecated/ilp_int.h>
-+#include <isl/deprecated/constraint_int.h>
- #include <cloog/cloog.h>
- #include <cloog/isl/domain.h>
- #endif
-diff -wbBur gcc-4.9.0/gcc/graphite-optimize-isl.c gcc-4.9.0.my/gcc/graphite-optimize-isl.c
---- gcc-4.9.0/gcc/graphite-optimize-isl.c	2014-01-03 02:23:26.000000000 +0400
-+++ gcc-4.9.0.my/gcc/graphite-optimize-isl.c	2014-06-09 15:28:20.325206155 +0400
-@@ -28,6 +28,10 @@
- #include <isl/band.h>
- #include <isl/aff.h>
- #include <isl/options.h>
-+#include <isl/deprecated/int.h>
-+#include <isl/deprecated/ilp_int.h>
-+#include <isl/deprecated/aff_int.h>
-+#include <isl/deprecated/constraint_int.h>
- #endif
- 
- #include "system.h"
-@@ -373,7 +377,7 @@
- 	{
- 	  for (i = ScheduleDimensions - 1 ;  i >= 0 ; i--)
- 	    {
--	      if (isl_band_member_is_zero_distance (Band, i))
-+	      if (isl_band_member_is_coincident (Band, i))
- 		{
- 		  isl_map *TileMap;
- 		  isl_union_map *TileUMap;
-diff -wbBur gcc-4.9.0/gcc/graphite-poly.c gcc-4.9.0.my/gcc/graphite-poly.c
---- gcc-4.9.0/gcc/graphite-poly.c	2014-01-03 02:23:26.000000000 +0400
-+++ gcc-4.9.0.my/gcc/graphite-poly.c	2014-06-09 15:31:04.541870933 +0400
-@@ -28,6 +28,10 @@
- #include <isl/constraint.h>
- #include <isl/ilp.h>
- #include <isl/aff.h>
-+#include <isl/deprecated/int.h>
-+#include <isl/deprecated/ilp_int.h>
-+#include <isl/deprecated/aff_int.h>
-+#include <isl/deprecated/constraint_int.h>
- #include <cloog/cloog.h>
- #include <cloog/isl/domain.h>
- #endif
-diff -wbBur gcc-4.9.0/gcc/graphite-sese-to-poly.c gcc-4.9.0.my/gcc/graphite-sese-to-poly.c
---- gcc-4.9.0/gcc/graphite-sese-to-poly.c	2014-04-08 14:59:40.000000000 +0400
-+++ gcc-4.9.0.my/gcc/graphite-sese-to-poly.c	2014-06-09 15:31:21.731870661 +0400
-@@ -26,6 +26,10 @@
- #include <isl/union_map.h>
- #include <isl/constraint.h>
- #include <isl/aff.h>
-+#include <isl/deprecated/int.h>
-+#include <isl/deprecated/ilp_int.h>
-+#include <isl/deprecated/aff_int.h>
-+#include <isl/deprecated/constraint_int.h>
- #include <cloog/cloog.h>
- #include <cloog/cloog.h>
- #include <cloog/isl/domain.h>

Copied: mingw-w64-gcc/repos/community-i686/isl.patch (from rev 145202, mingw-w64-gcc/trunk/isl.patch)
===================================================================
--- isl.patch	                        (rev 0)
+++ isl.patch	2015-10-28 16:54:45 UTC (rev 145203)
@@ -0,0 +1,76 @@
+diff -wbBur gcc-4.9.0/gcc/graphite-clast-to-gimple.c gcc-4.9.0.my/gcc/graphite-clast-to-gimple.c
+--- gcc-4.9.0/gcc/graphite-clast-to-gimple.c	2014-03-03 15:39:22.000000000 +0400
++++ gcc-4.9.0.my/gcc/graphite-clast-to-gimple.c	2014-06-09 15:23:14.858543000 +0400
+@@ -28,6 +28,8 @@
+ #include <isl/constraint.h>
+ #include <isl/ilp.h>
+ #include <isl/aff.h>
++#include <isl/deprecated/int.h>
++#include <isl/deprecated/ilp_int.h>
+ #include <cloog/cloog.h>
+ #include <cloog/isl/domain.h>
+ #endif
+diff -wbBur gcc-4.9.0/gcc/graphite-interchange.c gcc-4.9.0.my/gcc/graphite-interchange.c
+--- gcc-4.9.0/gcc/graphite-interchange.c	2014-01-03 02:23:26.000000000 +0400
++++ gcc-4.9.0.my/gcc/graphite-interchange.c	2014-06-09 15:24:02.275209122 +0400
+@@ -29,6 +29,9 @@
+ #include <isl/map.h>
+ #include <isl/union_map.h>
+ #include <isl/ilp.h>
++#include <isl/deprecated/int.h>
++#include <isl/deprecated/ilp_int.h>
++#include <isl/deprecated/constraint_int.h>
+ #include <cloog/cloog.h>
+ #include <cloog/isl/domain.h>
+ #endif
+diff -wbBur gcc-4.9.0/gcc/graphite-optimize-isl.c gcc-4.9.0.my/gcc/graphite-optimize-isl.c
+--- gcc-4.9.0/gcc/graphite-optimize-isl.c	2014-01-03 02:23:26.000000000 +0400
++++ gcc-4.9.0.my/gcc/graphite-optimize-isl.c	2014-06-09 15:28:20.325206155 +0400
+@@ -28,6 +28,10 @@
+ #include <isl/band.h>
+ #include <isl/aff.h>
+ #include <isl/options.h>
++#include <isl/deprecated/int.h>
++#include <isl/deprecated/ilp_int.h>
++#include <isl/deprecated/aff_int.h>
++#include <isl/deprecated/constraint_int.h>
+ #endif
+ 
+ #include "system.h"
+@@ -373,7 +377,7 @@
+ 	{
+ 	  for (i = ScheduleDimensions - 1 ;  i >= 0 ; i--)
+ 	    {
+-	      if (isl_band_member_is_zero_distance (Band, i))
++	      if (isl_band_member_is_coincident (Band, i))
+ 		{
+ 		  isl_map *TileMap;
+ 		  isl_union_map *TileUMap;
+diff -wbBur gcc-4.9.0/gcc/graphite-poly.c gcc-4.9.0.my/gcc/graphite-poly.c
+--- gcc-4.9.0/gcc/graphite-poly.c	2014-01-03 02:23:26.000000000 +0400
++++ gcc-4.9.0.my/gcc/graphite-poly.c	2014-06-09 15:31:04.541870933 +0400
+@@ -28,6 +28,10 @@
+ #include <isl/constraint.h>
+ #include <isl/ilp.h>
+ #include <isl/aff.h>
++#include <isl/deprecated/int.h>
++#include <isl/deprecated/ilp_int.h>
++#include <isl/deprecated/aff_int.h>
++#include <isl/deprecated/constraint_int.h>
+ #include <cloog/cloog.h>
+ #include <cloog/isl/domain.h>
+ #endif
+diff -wbBur gcc-4.9.0/gcc/graphite-sese-to-poly.c gcc-4.9.0.my/gcc/graphite-sese-to-poly.c
+--- gcc-4.9.0/gcc/graphite-sese-to-poly.c	2014-04-08 14:59:40.000000000 +0400
++++ gcc-4.9.0.my/gcc/graphite-sese-to-poly.c	2014-06-09 15:31:21.731870661 +0400
+@@ -26,6 +26,10 @@
+ #include <isl/union_map.h>
+ #include <isl/constraint.h>
+ #include <isl/aff.h>
++#include <isl/deprecated/int.h>
++#include <isl/deprecated/ilp_int.h>
++#include <isl/deprecated/aff_int.h>
++#include <isl/deprecated/constraint_int.h>
+ #include <cloog/cloog.h>
+ #include <cloog/cloog.h>
+ #include <cloog/isl/domain.h>

Copied: mingw-w64-gcc/repos/community-i686/libgomp.patch (from rev 145202, mingw-w64-gcc/trunk/libgomp.patch)
===================================================================
--- libgomp.patch	                        (rev 0)
+++ libgomp.patch	2015-10-28 16:54:45 UTC (rev 145203)
@@ -0,0 +1,41 @@
+Index: libgomp/oacc-int.h
+===================================================================
+--- libgomp/oacc-int.h	(revision 228010)
++++ libgomp/oacc-int.h	(revision 228011)
+@@ -97,6 +97,7 @@
+ void goacc_save_and_set_bind (acc_device_t);
+ void goacc_restore_bind (void);
+ void goacc_lazy_initialize (void);
++void goacc_host_init (void);
+ 
+ #ifdef HAVE_ATTRIBUTE_VISIBILITY
+ # pragma GCC visibility pop
+Index: libgomp/oacc-init.c
+===================================================================
+--- libgomp/oacc-init.c	(revision 228010)
++++ libgomp/oacc-init.c	(revision 228011)
+@@ -580,6 +580,9 @@
+ 
+   goacc_threads = NULL;
+   gomp_mutex_init (&goacc_thread_lock);
++
++  /* Initialize and register the 'host' device type.  */
++  goacc_host_init ();
+ }
+ 
+ /* Compiler helper functions */
+Index: libgomp/oacc-host.c
+===================================================================
+--- libgomp/oacc-host.c	(revision 228010)
++++ libgomp/oacc-host.c	(revision 228011)
+@@ -82,8 +82,8 @@
+   };
+ 
+ /* Register this device type.  */
+-static __attribute__ ((constructor))
+-void goacc_host_init (void)
++void
++goacc_host_init (void)
+ {
+   gomp_mutex_init (&host_dispatch.lock);
+   goacc_register (&host_dispatch);



More information about the arch-commits mailing list