Remove max num threads in AIX build. Use MAX_NB_JOBS instead.

This commit is contained in:
Chip-Kerchner 2024-02-26 14:57:53 -06:00
parent 3e030cc5fe
commit ac08e3148d
1 changed files with 0 additions and 5 deletions

View File

@ -2006,13 +2006,8 @@ printf("ELF_VERSION=2\n");
#endif
#elif NO_PARALLEL_MAKE==1
printf("MAKEFLAGS += -j 1\n");
#else
#ifdef _AIX
int count = get_num_cores();
printf("MAKEFLAGS += -j %d\n", (count > 32) ? 32 : count);
#else
printf("MAKEFLAGS += -j %d\n", get_num_cores());
#endif
#endif
break;