Skip to content

Commit ac08e31

Browse files
author
Chip-Kerchner
committed
Remove max num threads in AIX build. Use MAX_NB_JOBS instead.
1 parent 3e030cc commit ac08e31

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

getarch.c

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2006,13 +2006,8 @@ printf("ELF_VERSION=2\n");
20062006
#endif
20072007
#elif NO_PARALLEL_MAKE==1
20082008
printf("MAKEFLAGS += -j 1\n");
2009-
#else
2010-
#ifdef _AIX
2011-
int count = get_num_cores();
2012-
printf("MAKEFLAGS += -j %d\n", (count > 32) ? 32 : count);
20132009
#else
20142010
printf("MAKEFLAGS += -j %d\n", get_num_cores());
2015-
#endif
20162011
#endif
20172012

20182013
break;

0 commit comments

Comments
 (0)