You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
printMessage("Windows 64-bit binaries currently default to the 'win64' platform. Starting with Cppcheck 2.13 they will default to 'native' instead. Please specify '--platform=win64' explicitly if you rely on this.");
1057
+
#elif defined(_WIN32)
1058
+
if (SHOW_DEF_PLATFORM_MSG && default_platform)
1059
+
printMessage("Windows 32-bit binaries currently default to the 'win32A' platform. Starting with Cppcheck 2.13 they will default to 'native' instead. Please specify '--platform=win32A' explicitly if you rely on this.");
1060
+
#endif
1061
+
1042
1062
// Print error only if we have "real" command and expect files
1043
1063
if (!mExitAfterPrint && mPathNames.empty() && mSettings->project.fileSettings.empty()) {
Copy file name to clipboardExpand all lines: releasenotes.txt
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -4,3 +4,4 @@ release notes for cppcheck-2.10
4
4
- if the file provided via "--file-list" cannot be opened it will now error out
5
5
- add command-line option "--disable=<id>" to individually disable checks
6
6
- added CMake option BUILD_CORE_DLL to build lib as cppcheck-core.dll with Visual Studio
7
+
- Windows binaries currently default to the "win32A" and "win64" platform respectively. Starting with Cppcheck 2.13 they will default to 'native' instead. Please specify '--platform=win32A' or '--platform=win64' explicitly if you rely on this.
ASSERT_EQUALS("cppcheck: Windows 64-bit binaries currently default to the 'win64' platform. Starting with Cppcheck 2.13 they will default to 'native' instead. Please specify '--platform=win64' explicitly if you rely on this.\n", GET_REDIRECT_OUTPUT);
ASSERT_EQUALS("cppcheck: Windows 32-bit binaries currently default to the 'win32A' platform. Starting with Cppcheck 2.13 they will default to 'native' instead. Please specify '--platform=win32A' explicitly if you rely on this.\n", GET_REDIRECT_OUTPUT);
0 commit comments