Problem :
Trying to run a compile on AIX using cob64 but it getting the following message:
* 009-R Ran out of memory during code generation. Split program into smaller units
cob64: error(s) in code generation: TEST.int
Compiling the same same source code on Windows and Linux works fine.
Resolution :
Most likely a ulimit has been exceeded.
Check the ulimit settings on AIX.
ulimit -a (a=all) will give you everything to look at.
Most likely the ulimit to increase:
ulimit -d .... (data seg size (kbytes, -d)) or
ulimit -m (memory)
#EnterpriseDeveloper
#MFDS
