Re: [OMPI devel] error while compiling openmpi

2016-02-28 Thread Jeff Squyres (jsquyres)
I don't see anything wrong with the C code in question. As Gilles requested, can you send all the information listed here: https://www.open-mpi.org/community/help/ > On Feb 26, 2016, at 6:20 AM, Monika Hemnani wrote: > > Yes, I'm using a cross-compiler. I have a software Xilinx SDK, insta

Re: [OMPI devel] error while compiling openmpi

2016-02-26 Thread Monika Hemnani
Yes, I'm using a cross-compiler. I have a software Xilinx SDK, installed on Windows(on x86 processor). The microblaze gcc compiler compiles the code for the OS xilkernel(on Microblaze processor). I compiled the code you gave me. It got compiled. On Fri, Feb 26, 2016 at 1:15 PM, Gilles Gouaillard

Re: [OMPI devel] error while compiling openmpi

2016-02-26 Thread Gilles Gouaillardet
Monika, Can you send all the information listed here: https://www.open-mpi.org/community/help/ btw, are you using a cross-compiler ? can you try to compile this simple program : typedef struct xxx xxx; struct xxx { int i; xxx *p; }; void yyy(xxx *x) { x->i = 0; x->p =

[OMPI devel] error while compiling openmpi

2016-02-26 Thread Monika Hemnani
I'm trying to run Open mpi on Microblaze(soft core processor), with operating system xilkernel(OS from xilinx). I'm getting errors in the file: opal_object.h . This is the part of the code where I'm getting errors. typedef struct opal_object_t opal_object_t; //line 1 typedef st