- 
                Notifications
    You must be signed in to change notification settings 
- Fork 929
Closed
Milestone
Description
It's also broken on top of v2.0.x branch.
line 1184(v2.x) of orte/tools/orterun/orterun.c is:
   /* Do we want a user-level debugger? */
    if (orterun_globals.debugger) {
#if 0
        /* see https://github.com/open-mpi/ompi/issues/1225
         * Once things are fixed, the orte_show_help/exit can be removed
         * and this code re-enabled.
         */
        run_debugger(orte_basename, cmd_line, argc, argv, orterun_globals.num_procs);
#else
        orte_show_help("help-orterun.txt", "no_debugger_launch_support", false);
        exit(-1);
#endif
    }
This causes --debug to print this message on v2.0.1.
related to #1225
EDIT: Added proper block verbatim notation