Skip to content

Commit 744f901

Browse files
committed
Fix PVS-Studio integration
Without this configuration option, PVS-Studio looks for preprocessed files (*.i), but these do not exists.
1 parent 1f521a0 commit 744f901

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

win32/build/config.w32

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,7 @@ if (PHP_ANALYZER == "vs") {
215215
pvscfg.WriteLine("platform = " + (X64 ? 'x64' : 'Win32'));
216216
pvscfg.WriteLine("preprocessor = visualcpp");
217217
pvscfg.WriteLine("language = C");
218+
pvscfg.WriteLine("skip-cl-exe = no");
218219
}
219220
} else {
220221
PHP_ANALYZER = "no"

0 commit comments

Comments
 (0)