Skip to content

Commit 823382f

Browse files
committed
plm/base: do not abort when configure'd with --enable-heterogeneous
and a mix of BE/LE is detected Signed-off-by: Gilles Gouaillardet <[email protected]>
1 parent 2a580fa commit 823382f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

orte/mca/plm/base/plm_base_launch_support.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1274,7 +1274,9 @@ void orte_plm_base_daemon_callback(int status, orte_process_name_t* sender,
12741274
}
12751275
free(sig);
12761276
break;
1277-
} else {
1277+
}
1278+
#if !OPAL_ENABLE_HETEROGENEOUS_SUPPORT
1279+
else {
12781280
/* check if the difference is due to the endianness */
12791281
ptr = strrchr(sig, ':');
12801282
++ptr;
@@ -1290,6 +1292,7 @@ void orte_plm_base_daemon_callback(int status, orte_process_name_t* sender,
12901292
goto CLEANUP;
12911293
}
12921294
}
1295+
#endif
12931296
}
12941297

12951298
if (!found) {

0 commit comments

Comments
 (0)