Re: GCC 9 OpenMP issues

2019-02-17 Thread Mattia Verga
Il 2/16/19 9:55 PM, Sérgio Basto ha scritto: > > Just remove "default(none)" from "# pragma omp parallel default(none) > shared(thr_nbr_act)" doesn't fix the build for you ? > > Yes, thanks, upstream had replied and gave me a patch that removes "default(none)" from some places in the code. Matti

Re: GCC 9 OpenMP issues

2019-02-16 Thread Sérgio Basto
On Fri, 2019-02-15 at 07:32 +, Mattia Verga wrote: > Il 2/12/19 3:17 AM, Orion Poplawski ha scritto: > > Which is now leading to some (expected) compilation failures: > > > > BUILDSTDERR: nco_omp.c: In function 'nco_openmp_ini': > > BUILDSTDERR: nco_omp.c:210:38: error: 'fp_stderr' not specifi

Re: GCC 9 OpenMP issues

2019-02-14 Thread Mattia Verga
Il 2/12/19 3:17 AM, Orion Poplawski ha scritto: > Which is now leading to some (expected) compilation failures: > > BUILDSTDERR: nco_omp.c: In function 'nco_openmp_ini': > BUILDSTDERR: nco_omp.c:210:38: error: 'fp_stderr' not specified in > enclosing 'parallel' > BUILDSTDERR: 210 | if(nco_dbg_lv

Re: GCC 9 OpenMP issues

2019-02-13 Thread Sérgio Basto
On Wed, 2019-02-13 at 13:42 -0700, Christoph Junghans wrote: > On Tue, Feb 12, 2019 at 5:39 PM Orion Poplawski > wrote: > > > > On 2/12/19 1:02 AM, Jakub Jelinek wrote: > > > On Mon, Feb 11, 2019 at 07:17:25PM -0700, Orion Poplawski wrote: > > > > Looks like GCC 9 is finally enforcing an OpenMP c

Re: GCC 9 OpenMP issues

2019-02-13 Thread Christoph Junghans
On Tue, Feb 12, 2019 at 5:39 PM Orion Poplawski wrote: > > On 2/12/19 1:02 AM, Jakub Jelinek wrote: > > On Mon, Feb 11, 2019 at 07:17:25PM -0700, Orion Poplawski wrote: > >> Looks like GCC 9 is finally enforcing an OpenMP change: > >> > >> From https://gcc.gnu.org/ml/gcc-patches/2018-11/msg00628.

Re: GCC 9 OpenMP issues

2019-02-12 Thread Orion Poplawski
On 2/12/19 1:02 AM, Jakub Jelinek wrote: On Mon, Feb 11, 2019 at 07:17:25PM -0700, Orion Poplawski wrote: Looks like GCC 9 is finally enforcing an OpenMP change: From https://gcc.gnu.org/ml/gcc-patches/2018-11/msg00628.html Please see https://gcc.gnu.org/gcc-9/porting_to.html#ompdatasharing

Re: GCC 9 OpenMP issues

2019-02-12 Thread Jakub Jelinek
On Mon, Feb 11, 2019 at 07:17:25PM -0700, Orion Poplawski wrote: > Looks like GCC 9 is finally enforcing an OpenMP change: > > From https://gcc.gnu.org/ml/gcc-patches/2018-11/msg00628.html Please see https://gcc.gnu.org/gcc-9/porting_to.html#ompdatasharing which documents what you can do and what

Re: GCC 9 OpenMP issues

2019-02-11 Thread Sérgio Basto
I also have OpenMP issues in ufraw [1] and can help me too ? Thanks [1] https://bugzilla.redhat.com/show_bug.cgi?id=1671080 https://koji.fedoraproject.org/koji/taskinfo?taskID=32347242 On Mon, 2019-02-11 at 19:17 -0700, Orion Poplawski wrote: > Looks like GCC 9 is finally enforcing an OpenMP

GCC 9 OpenMP issues

2019-02-11 Thread Orion Poplawski
Looks like GCC 9 is finally enforcing an OpenMP change: From https://gcc.gnu.org/ml/gcc-patches/2018-11/msg00628.html - change data sharing for readonly variables without mutable members, they are no longer predetermined shared (this actually changed in earlier OpenMP standard releases, bu