Skip to content

Commit

Permalink
[analyzer] Ignor another unknown gcc options
Browse files Browse the repository at this point in the history
Some gcc flags have been reported as unrecognized compiler options for Clang. The following options are added to the ignore list: `-f(no-)?allow-store-data-races`, `-f(no-)?code-hoisting`, `-fmerge-constants`, `-fsanitize=bounds-strict`, `-fsched-pressure`
  • Loading branch information
cservakt committed Oct 3, 2023
1 parent 6d7351e commit 1f9a3c0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions analyzer/codechecker_analyzer/buildlog/log_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,11 @@
'-finline-local-initialisers',
'-fipa-sra',
'-fmacro-prefix-map',
'-fmerge-constants',
'-fno-aggressive-loop-optimizations',
'-f(no-)?allow-store-data-races',
'-fno-canonical-system-headers',
'-f(no-)?code-hoisting',
'-fno-delete-null-pointer-checks',
'-fno-defer-pop',
'-fno-extended-identifiers',
Expand All @@ -107,6 +110,8 @@
'-frename-registers',
'-frerun-cse-after-loop',
'-fs$',
'-fsanitize=bounds-strict',
'-fsched-pressure',
'-fsched-spec',
'-fstack-usage',
'-fstack-reuse',
Expand Down

0 comments on commit 1f9a3c0

Please sign in to comment.