This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

warning #24017-D: Option --optimizer_interlist is not valid with -Ooff

Hi All,


Does anyone know what this warning message is meaning?

                     warning #24017-D: Option --optimizer_interlist is not valid with -Ooff


I did enable interlisting to get a asm output, but what's the Coff?

Best regards,

TTjarco

  • The option --optimizer_interlist has meaning only if you build with optimization.  However, you have disabled optimization with the option --opt_level=off.  A shortened equivalent option is -Ooff.  You might be using it implicitly.  The solution is to use --src_interlist instead of --optimizer_interlist.  The --src_interlist option interlists C code comments into the assembly output without regard to the optimization level.

    Thanks and regards,

    -George