diff options
Diffstat (limited to 'src/engine/SCons/Platform/aix.py')
-rw-r--r-- | src/engine/SCons/Platform/aix.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/engine/SCons/Platform/aix.py b/src/engine/SCons/Platform/aix.py index e0d2e76..cc11466 100644 --- a/src/engine/SCons/Platform/aix.py +++ b/src/engine/SCons/Platform/aix.py @@ -57,3 +57,6 @@ def get_xlc(env, xlc, xlc_r, packages): def generate(env): posix.generate(env) + #Based on AIX 5.2: ARG_MAX=24576 - 3000 for environment expansion + env['MAXLINELENGTH'] = 21576 + |