"make delete-old" needs more than 64KB worth of arguments. Both

arm and powerpc have 64KB as the maximum argument size, so one
cannot run "make delete-old" on arm or powerpc anymore. Stop
special-casing powerpc and give it 256KB of arguments like all
other platforms, but keep arm on 64KB for now. There may be a
purpose to it that doesn't exist for powerpc.
This commit is contained in:
marcel 2007-05-29 03:49:00 +00:00
parent 9cb5d0f6ce
commit 63609ac230

View File

@ -46,7 +46,7 @@
* Do not add any new variables here. (See the comment at the end of
* the file for why.)
*/
#if defined(__arm__) || defined(__powerpc__)
#if defined(__arm__)
#define ARG_MAX 65536 /* max bytes for an exec function */
#else
#define ARG_MAX 262144 /* max bytes for an exec function */