4

I get compiler message/information

1500-030: (I) INFORMATION: ... Additional optimization may be attained by recompiling and specifying MAXMEM option with a value greater than 8192.

and it cannot be turned off by

#pragma report(disable, "1500-030")

as suggested by question How to disable a specific IBM XL C++ compiler warning?

Community
  • 1
  • 1
mgr
  • 344
  • 4
  • 11
  • It is the first question I have encountered that is related to IBM mainframe. By the way it is me who wrote CTRACE record filtering for the IBM NFS Server using PL/X.: instead of the programmer who failed the project.:) – Vlad from Moscow Jul 22 '15 at 09:23

1 Answers1

3

What OS is xlc running on?

Try

-qsuppress=1500-030

Or

-w
faadi
  • 176
  • 1
  • 8