Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable a specific warning of IBM xl C++ compiler via compiler commandline?

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?

like image 984
mgr Avatar asked Oct 29 '25 15:10

mgr


1 Answers

What OS is xlc running on?

Try

-qsuppress=1500-030

Or

-w
like image 192
faadi Avatar answered Nov 01 '25 06:11

faadi