Submit and vote on feature ideas.

Welcome to the new Parasoft forums! We hope you will enjoy the site and try out some of the new features, like sharing an idea you may have for one of our products or following a category.

WARNING: no debugging flags detected!! Insure++ may not function properly

Options
shajabedi
shajabedi Posts: 8

I am compiling some sources with isure++ and i am getting this warning:
WARNING: no debugging flags detected!! Insure++ may not function properly
should i add some flags before compile?

Comments

  • DanielDominguez
    Options

    Hi shajabedi,

    You need to add debug flags to the compiler command line that is invoked. Insure++ depends on this debug information to do it's work.

    For gcc/g++ you can add -g
    For Microsoft CL, the debug flag is /Zi

  • shajabedi
    shajabedi Posts: 8
    Options

    Thank you DanielDominguez,
    It worked.