Browse Source

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

tags/v0.3.27
Chip-Kerchner 2 years ago
parent
commit
ac08e3148d
1 changed files with 0 additions and 5 deletions
  1. +0
    -5
      getarch.c

+ 0
- 5
getarch.c 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;


Loading…
Cancel
Save