0

Coverity is reporting warning for stack size usage of 10k bytes. I want to change this value to <25k> bytes.

How can i configure it in coverity ? plz help

naren
  • 49
  • 9

1 Answers1

1

Need to specify certain command line options.

./cov-analyze --dir ../tmp/cov -all --checker-option STACK_USE:max_single_base_use_bytes:<your_stack_size_in_bytes> --checker-option STACK_USE:max_total_use_bytes:<your_stack_size_in_bytes>

../tmp/cov - directory which contains output from ./cov-build

naren
  • 49
  • 9