OpenMP and llvm-lit?

2019-01-01 Thread 岡本健二
Why OpenBSD6.4 does not support above? Kenji

Re: OpenMP

2015-11-11 Thread Theo Buehler
On Wed, Nov 11, 2015 at 05:11:52PM +0100, Jens A. Griepentrog wrote: > Is there any implementation of the OpenMP API > contained in one of the GNU compiler packages? > A working patch was discussed here: https://marc.info/?t=14332549291&r=1&w=2 but as far as I know nothing h

OpenMP

2015-11-11 Thread Jens A. Griepentrog
Is there any implementation of the OpenMP API contained in one of the GNU compiler packages?

Re: does OpenMP work on 5.5/amd64?

2014-07-05 Thread Stuart Henderson
On 2014-07-04, Gustav Fransson Nyvell wrote: > On 07/04/14 21:37, Jonathan Thornburg wrote: >> In message <http://marc.info/?l=openbsd-misc&m=140423832428907&w=1>, >> I wrote: >> | Has anyone gotten OpenMP to work on 5.5-{release,stable}/amd64? >> | &g

Re: does OpenMP work on 5.5/amd64?

2014-07-04 Thread Jonathan Thornburg
In message <http://marc.info/?l=openbsd-misc&m=140423832428907&w=1>, I wrote: | Has anyone gotten OpenMP to work on 5.5-{release,stable}/amd64? | | 'man gcc' and /usr/local/info/gcc.info both describe gcc support for | OpenMP (the -fopenmp compiler flag), but I'm g

Re: does OpenMP work on 5.5/amd64?

2014-07-04 Thread Gustav Fransson Nyvell
On 07/04/14 21:37, Jonathan Thornburg wrote: In message <http://marc.info/?l=openbsd-misc&m=140423832428907&w=1>, I wrote: | Has anyone gotten OpenMP to work on 5.5-{release,stable}/amd64? | | 'man gcc' and /usr/local/info/gcc.info both describe gcc support for | OpenM

Re: does OpenMP work on 5.5/amd64?

2014-07-01 Thread Gustav Fransson Nyvell
On 07/01/14 19:40, Jonathan Thornburg wrote: Has anyone gotten OpenMP to work on 5.5-{release,stable}/amd64? 'man gcc' and /usr/local/info/gcc.info both describe gcc support for OpenMP (the -fopenmp compiler flag), but I'm getting fatal errors (either missing compiler spec

does OpenMP work on 5.5/amd64?

2014-07-01 Thread Jonathan Thornburg
Has anyone gotten OpenMP to work on 5.5-{release,stable}/amd64? 'man gcc' and /usr/local/info/gcc.info both describe gcc support for OpenMP (the -fopenmp compiler flag), but I'm getting fatal errors (either missing compiler spec file or missing "omp.h" header file) t

Re: OpenMP with gcc4?

2010-05-27 Thread Joachim Schipper
On Thu, May 27, 2010 at 04:17:38PM +0100, Andreas Kahari wrote: > Hi list, > > With the move to gcc4, will we at some point also get OpenMP support? > This seems to be broken at the moment: Why do you want that? It's not terribly useful with the current state of thr

OpenMP with gcc4?

2010-05-27 Thread Andreas Kahari
Hi list, With the move to gcc4, will we at some point also get OpenMP support? This seems to be broken at the moment: $ cat omp-test.c int main(void) { int i; int a[100]; #pragma omp parallel for for (i = 0; i < 100; ++i) { a[i] = i*i; } return 0; } $ cc -fopenmp -o omp-test