Changeset 3194 for trunk/src/kmk/main.c
- Timestamp:
- Mar 27, 2018, 4:05:17 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/main.c
r3186 r3194 478 478 -O[TYPE], --output-sync[=TYPE]\n\ 479 479 Synchronize output of parallel jobs by TYPE.\n"), 480 #elif defined(KBUILD_OS_WINDOWS) 481 N_("\ 482 -O[TYPE], --output-sync[=TYPE]\n\ 483 Synchronize output of parallel jobs by TYPE:\n\ 484 none = no synchronization.\n\ 485 line = receip line output\n\ 486 target = entire receip output (default)\n\ 487 recurse = entire recursive invocation\n"), 480 488 #else 481 489 N_("\ … … 730 738 of each job stay together. */ 731 739 740 #if defined(KMK) && defined(KBUILD_OS_WINDOWS) 741 int output_sync = OUTPUT_SYNC_TARGET; 742 #else 732 743 int output_sync = OUTPUT_SYNC_NONE; 744 #endif 733 745 734 746 /* Nonzero if the "--trace" option was given. */ … … 1112 1124 command-line argument. */ 1113 1125 void 1126 # ifdef CONFIG_NEW_WIN_CHILDREN 1127 prepare_mutex_handle_string (const char *mtxname) 1128 { 1129 if (!sync_mutex) 1130 { 1131 sync_mutex = xstrdup(mtxname); 1132 define_makeflags (1, 0); 1133 } 1134 } 1135 # else 1114 1136 prepare_mutex_handle_string (sync_handle_t handle) 1115 1137 { … … 1123 1145 } 1124 1146 } 1147 # endif 1125 1148 1126 1149 #endif /* NO_OUTPUT_SYNC */
Note:
See TracChangeset
for help on using the changeset viewer.