Re: [OMPI devel] Deprecated configure options in OMPI v5

2020-02-20 Thread Jeff Squyres (jsquyres) via devel
On Feb 19, 2020, at 1:31 PM, Ralph Castain via devel wrote: > > What do we want to do with the following options? These have either been > renamed (changing from "orte..." to a "prrte" equivalent) or are no longer > valid: > > --enable-orterun-prefix-by-default > --enable-mpirun-prefix-by-def

[OMPI devel] Conflicting definitions

2020-02-20 Thread Ralph Castain via devel
Hey folks Now that we have multiple projects sharing a build system, we need to be careful how we name our #if's. For example, using: #ifdef MCA_FOO_BAR #define MCA_FOO_BAR ... might have been fine in the past, but you wind up clobbering another project that also has a "foo_bar" component. Ple