Re: AC_OPENMP broken for IBM xl Fortran compilers

2011-02-20 Thread Ralf Wildenhues
[ dropping autoconf@, adding bug-gnulib@ ] * Christian Rössel wrote on Sun, Feb 20, 2011 at 11:06:40AM CET: > Am 2/20/2011 7:55 AM, schrieb Ralf Wildenhues: > > * Christian Rössel wrote on Fri, Feb 18, 2011 at 03:57:30PM CET: > >> AC_OPENMP returns "none needed" for the IBM xl Fortran compilers (x

Re: AC_OPENMP broken for IBM xl Fortran compilers

2011-02-20 Thread Christian Rössel
Hi Ralf, Am 2/20/2011 7:55 AM, schrieb Ralf Wildenhues: > Hi Christian, Markus, > > * Christian Rössel wrote on Fri, Feb 18, 2011 at 03:57:30PM CET: >> AC_OPENMP returns "none needed" for the IBM xl Fortran compilers (xlf*, >> bgxlf*, mpixlf*). This is wrong, you need to use -qsmp=omp. >> >> conf

Re: AC_OPENMP broken for IBM xl Fortran compilers

2011-02-19 Thread Ralf Wildenhues
Hi Christian, Markus, * Christian Rössel wrote on Fri, Feb 18, 2011 at 03:57:30PM CET: > AC_OPENMP returns "none needed" for the IBM xl Fortran compilers (xlf*, > bgxlf*, mpixlf*). This is wrong, you need to use -qsmp=omp. > > configure tries to compile following program: > > | program mai

AC_OPENMP broken for IBM xl Fortran compilers

2011-02-19 Thread Christian Rössel
Hi, AC_OPENMP returns "none needed" for the IBM xl Fortran compilers (xlf*, bgxlf*, mpixlf*). This is wrong, you need to use -qsmp=omp. configure tries to compile following program: | program main | call omp_get_num_threads | end Compilation succeeds without specifying any Ope