Caphyon / clang-power-tools

Bringing clang-tidy magic to Visual Studio C++ developers.
http://www.clangpowertools.com
Apache License 2.0
493 stars 56 forks source link

[REOPEN] clang-tidy Error: no checks enabled. #691

Closed Nelson-numerical-software closed 4 years ago

Nelson-numerical-software commented 5 years ago

After a clean install vs 2019 and Clang-power-tools LLVM installed with file:///F:/Downloads/LLVM-8.0.0-win64.exe

VS solution available here: https://github.com/Nelson-numerical-software/nelson

What did I miss ?


--- CLANG TIDY-FIX STARTED ---

PROJECT: D:\Developpements\Github\nelson\modules\integer\src\c\nlsInteger.vcxproj
1: D:\Developpements\Github\nelson\modules\integer\src\cpp\ToInteger.cpp
Error: no checks enabled.
USAGE: clang-tidy.exe [options] <source0> [... <sourceN>]
OPTIONS:
Generic Options:
  -help                         - Display available options (-help-hidden for more)
  -version                      - Display the version of this program
clang-tidy options:
  -checks=<string>              - 
                                  Comma-separated list of globs with optional '-'
                                  prefix. Globs are processed in order of
                                  appearance in the list. Globs without '-'
                                  prefix add checks with matching names to the
                                  set, globs with the '-' prefix remove checks
                                  with matching names from the set of enabled
                                  checks. This option's value is appended to the
                                  value of the 'Checks' option in .clang-tidy
                                  file, if any.
  -config=<string>              - 
                                  Specifies a configuration in YAML/JSON format:
                                    -config="{Checks: '*',
                                              CheckOptions: [{key: x,
                                                              value: y}]}"
                                  When the value is empty, clang-tidy will
                                  attempt to find a file named .clang-tidy for
                                  each source file in its parent directories.
  -dump-config                  - 
                                  Dumps configuration in the YAML format to
                                  stdout. This option can be used along with a
                                  file name (and '--' if the file is outside of a
                                  project with configured compilation database).
                                  The configuration used for this file will be
                                  printed.
                                  Use along with -checks=* to include
                                  configuration of all checks.
  -enable-check-profile         - 
                                  Enable per-check timing profiles, and print a
                                  report to stderr.
  -explain-config               - 
                                  For each enabled check explains, where it is
                                  enabled, i.e. in clang-tidy binary, command
                                  line or a specific configuration file.
  -export-fixes=<filename>      - 
                                  YAML file to store suggested fixes in. The
                                  stored fixes can be applied to the input source
                                  code with clang-apply-replacements.
  -extra-arg=<string>           - Additional argument to append to the compiler command line
  -extra-arg-before=<string>    - Additional argument to prepend to the compiler command line
  -fix                          - 
                                  Apply suggested fixes. Without -fix-errors
                                  clang-tidy will bail out if any compilation
                                  errors were found.
  -fix-errors                   - 
                                  Apply suggested fixes even if compilation
                                  errors were found. If compiler errors have
                                  attached fix-its, clang-tidy will apply them as
                                  well.
  -format-style=<string>        - 
                                  Style for formatting code around applied fixes:
                                    - 'none' (default) turns off formatting
                                    - 'file' (literally 'file', not a placeholder)
                                      uses .clang-format file in the closest parent
                                      directory
                                    - '{ <json> }' specifies options inline, e.g.
                                      -format-style='{BasedOnStyle: llvm, IndentWidth: 8}'
                                    - 'llvm', 'google', 'webkit', 'mozilla'
                                  See clang-format documentation for the up-to-date
                                  information about formatting styles and options.
                                  This option overrides the 'FormatStyle` option in
                                  .clang-tidy file, if any.
  -header-filter=<string>       - 
                                  Regular expression matching the names of the
                                  headers to output diagnostics from. Diagnostics
                                  from the main file of each translation unit are
                                  always displayed.
                                  Can be used together with -line-filter.
                                  This option overrides the 'HeaderFilter' option
                                  in .clang-tidy file, if any.
  -line-filter=<string>         - 
                                  List of files with line ranges to filter the
                                  warnings. Can be used together with
                                  -header-filter. The format of the list is a
                                  JSON array of objects:
                                    [
                                      {"name":"file1.cpp","lines":[[1,3],[5,7]]},
                                      {"name":"file2.h"}
                                    ]
  -list-checks                  - 
                                  List all enabled checks and exit. Use with
                                  -checks=* to list all available checks.
  -p=<string>                   - Build path
  -quiet                        - 
                                  Run clang-tidy in quiet mode. This suppresses
                                  printing statistics about ignored warnings and
                                  warnings treated as errors if the respective
                                  options are specified.
  -store-check-profile=<prefix> - 
                                  By default reports are printed in tabulated
                                  format to stderr. When this option is passed,
                                  these per-TU profiles are instead stored as JSON.
  -system-headers               - Display the errors from system headers.
  -vfsoverlay=<filename>        - 
                                  Overlay the virtual filesystem described by file
                                  over the real file system.
  -warnings-as-errors=<string>  - 
                                  Upgrades warnings to errors. Same format as
                                  '-checks'.
                                  This option's value is appended to the value of
                                  the 'WarningsAsErrors' option in .clang-tidy
                                  file, if any.

Got errors.

--- CLANG TIDY-FIX FINISHED ---
hero101111 commented 5 years ago

Hello,

We've grabbed Nelson from github and are unable to reproduce this particular scenario.

Are you invoking Clang Power Tools from Visual Studio? If so, please enable Verbose Logging from CPT Options and paste the log here.

If invoking directly from PowerShell, you can add -verbose to the invocation command and obtain the verbose log as well.

Nelson-numerical-software commented 5 years ago

--- CLANG TIDY-FIX STARTED ---

COMMENTAIRESÿ: clang-build.ps1 invocation args: 
  aVcxprojToCompile = D:\Developpements\Github\nelson\modules\webtools\src\c\nlsWebtools.vcxproj 
  aVcxprojConfigPlatform = Debug|x64 
  aClangCompileFlags = -Wall -fms-compatibility-version=19.10 -Wmicrosoft -Wno-invalid-token-paste -Wno-unknown-pragmas
 -Wno-unused-value 
  Verbose = True 
  aTidyFixFlags = -*, 
  aTidyHeaderFilter = .* 
  aVisualStudioVersion = 2019 
  aVisualStudioSku = Professional 
  aSolutionsPath = D:\Developpements\Github\nelson\NelSon.sln 
COMMENTAIRESÿ: CPU logical core count: 8
COMMENTAIRESÿ: Scanning for solution files
COMMENTAIRESÿ: Caching solution file D:\Developpements\Github\nelson\NelSon.sln
COMMENTAIRESÿ: Solution full path: D:\Developpements\Github\nelson\NelSon.sln
COMMENTAIRESÿ: Solution data length: 108322
COMMENTAIRESÿ: Solution file paths:
COMMENTAIRESÿ:   D:\Developpements\Github\nelson\NelSon.sln
COMMENTAIRESÿ: 
COMMENTAIRESÿ: Source directory: D:\Developpements\Github\nelson\
COMMENTAIRESÿ: Scanning for project files
COMMENTAIRESÿ: Retrieving project list for solution D:\Developpements\Github\nelson\NelSon.sln
COMMENTAIRESÿ: Solution directory: D:\Developpements\Github\nelson\
COMMENTAIRESÿ: Intermediate solution project matches count: 124
COMMENTAIRESÿ: modules\main\nelson_gui\NelSon-gui.vcxproj
COMMENTAIRESÿ: modules\main\nelson_adv_cli\NelSon-adv-cli.vcxproj
COMMENTAIRESÿ: modules\main\nelson_cli\NelSon-cli.vcxproj
COMMENTAIRESÿ: modules\interpreter\src\c\nlsInterpreter.vcxproj
COMMENTAIRESÿ: modules\elementary_mathematics\src\c\nlsElementary_mathematics.vcxproj
COMMENTAIRESÿ: modules\error_manager\src\c\nlsError_manager.vcxproj
COMMENTAIRESÿ: modules\stream_manager\src\c\nlsStream_manager.vcxproj
COMMENTAIRESÿ: modules\types\src\c\nlsTypes.vcxproj
COMMENTAIRESÿ: modules\terminal\src\c\nlsTerminal.vcxproj
COMMENTAIRESÿ: modules\engine\src\c\nlsEngine.vcxproj
COMMENTAIRESÿ: modules\elementary_functions\src\c\nlsElementary_functions.vcxproj
COMMENTAIRESÿ: modules\sparse\src\c\nlsSparse.vcxproj
COMMENTAIRESÿ: modules\time\src\c\nlsTime.vcxproj
COMMENTAIRESÿ: modules\time\builtin\c\nlsTime_builtin.vcxproj
COMMENTAIRESÿ: modules\constructors_functions\src\c\nlsConstructors_functions.vcxproj
COMMENTAIRESÿ: modules\constructors_functions\builtin\c\nlsConstructors_functions_builtin.vcxproj
COMMENTAIRESÿ: modules\types\builtin\c\nlsTypes_builtin.vcxproj
COMMENTAIRESÿ: modules\double\builtin\c\nlsDouble_builtin.vcxproj
COMMENTAIRESÿ: modules\double\src\c\nlsDouble.vcxproj
COMMENTAIRESÿ: modules\data_structures\builtin\c\nlsData_structures_builtin.vcxproj
COMMENTAIRESÿ: modules\api_nelson\src\c\nlsApi_nelson.vcxproj
COMMENTAIRESÿ: modules\elementary_functions\builtin\c\nlsElementary_functions_builtin.vcxproj
COMMENTAIRESÿ: modules\single\builtin\c\nlsSingle_builtin.vcxproj
COMMENTAIRESÿ: modules\integer\builtin\c\nlsInteger_builtin.vcxproj
COMMENTAIRESÿ: modules\integer\src\c\nlsInteger.vcxproj
COMMENTAIRESÿ: modules\single\src\c\nlsSingle.vcxproj
COMMENTAIRESÿ: modules\string\src\c\nlsString.vcxproj
COMMENTAIRESÿ: modules\string\builtin\c\nlsString_builtin.vcxproj
COMMENTAIRESÿ: modules\trigonometric_functions\builtin\c\nlsTrigonometric_functions_builtin.vcxproj
COMMENTAIRESÿ: modules\trigonometric_functions\src\c\nlsTrigonometric_functions.vcxproj
COMMENTAIRESÿ: modules\sparse\builtin\c\nlsSparse_builtin.vcxproj
COMMENTAIRESÿ: modules\logical\builtin\c\nlsLogical_builtin.vcxproj
COMMENTAIRESÿ: modules\logical\src\c\nlsLogical.vcxproj
COMMENTAIRESÿ: modules\characters_encoding\src\c\nlsCharacters_encoding.vcxproj
COMMENTAIRESÿ: modules\files_folders_functions\builtin\c\nlsFiles_folders_functions_builtin.vcxproj
COMMENTAIRESÿ: modules\files_folders_functions\src\c\nlsFiles_folders_functions.vcxproj
COMMENTAIRESÿ: modules\os_functions\src\c\nlsOs_functions.vcxproj
COMMENTAIRESÿ: modules\os_functions\builtin\c\nlsOs_functions_builtin.vcxproj
COMMENTAIRESÿ: modules\core\builtin\c\nlsCore_builtin.vcxproj
COMMENTAIRESÿ: modules\core\src\c\nlsCore.vcxproj
COMMENTAIRESÿ: modules\functions_manager\builtin\c\nlsFunctions_manager_builtin.vcxproj
COMMENTAIRESÿ: modules\functions_manager\src\c\nlsFunctions_manager.vcxproj
COMMENTAIRESÿ: modules\memory_manager\builtin\c\nlsMemory_manager_builtin.vcxproj
COMMENTAIRESÿ: modules\memory_manager\src\c\nlsMemory_manager.vcxproj
COMMENTAIRESÿ: modules\console\builtin\c\nlsConsole_builtin.vcxproj
COMMENTAIRESÿ: modules\console\src\c\nlsConsole.vcxproj
COMMENTAIRESÿ: modules\stream_manager\builtin\c\nlsStream_manager_builtin.vcxproj
COMMENTAIRESÿ: modules\error_manager\builtin\c\nlsError_manager_builtin.vcxproj
COMMENTAIRESÿ: modules\overload\src\c\nlsOverload.vcxproj
COMMENTAIRESÿ: modules\data_structures\src\c\nlsData_structures.vcxproj
COMMENTAIRESÿ: modules\interpreter\builtin\c\nlsInterpreter_builtin.vcxproj
COMMENTAIRESÿ: Solution Items
COMMENTAIRESÿ: modules\dynamic_link\src\c\nlsDynamic_link.vcxproj
COMMENTAIRESÿ: modules\dynamic_link\builtin\c\nlsDynamic_link_builtin.vcxproj
COMMENTAIRESÿ: modules\modules_manager\src\c\nlsModules_manager.vcxproj
COMMENTAIRESÿ: modules\modules_manager\builtin\c\nlsModules_manager_builtin.vcxproj
COMMENTAIRESÿ: modules\overload\builtin\c\nlsOverload_builtin.vcxproj
COMMENTAIRESÿ: modules\function_handle\builtin\c\nlsFunction_handle_builtin.vcxproj
COMMENTAIRESÿ: modules\function_handle\src\c\nlsFunction_handle.vcxproj
COMMENTAIRESÿ: modules\engine\builtin\c\nlsEngine_builtin.vcxproj
COMMENTAIRESÿ: modules\random\builtin\c\nlsRandom_builtin.vcxproj
COMMENTAIRESÿ: modules\random\src\c\nlsRandom.vcxproj
COMMENTAIRESÿ: modules\gui\src\c\nlsGui.vcxproj
COMMENTAIRESÿ: modules\gui\builtin\c\nlsGui_builtin.vcxproj
COMMENTAIRESÿ: modules\history_manager\builtin\c\nlsHistory_manager_builtin.vcxproj
COMMENTAIRESÿ: modules\history_manager\src\c\nlsHistory_manager.vcxproj
COMMENTAIRESÿ: modules\help_tools\builtin\c\nlsHelp_tools_builtin.vcxproj
COMMENTAIRESÿ: modules\help_tools\src\c\nlsHelp_tools.vcxproj
COMMENTAIRESÿ: modules\localization\src\c\nlsLocalization.vcxproj
COMMENTAIRESÿ: modules\localization\builtin\c\nlsLocalization_builtin.vcxproj
COMMENTAIRESÿ: modules\i18n\src\c\nlsI18n.vcxproj
COMMENTAIRESÿ: modules\i18n\builtin\c\nlsI18n_builtin.vcxproj
COMMENTAIRESÿ: tools\gettext\generatepo\generatepo.vcxproj
COMMENTAIRESÿ: tools\gettext\generatemo\generatemo.vcxproj
COMMENTAIRESÿ: modules\help_browser\builtin\c\nlsHelp_browser_builtin.vcxproj
COMMENTAIRESÿ: modules\help_browser\src\c\nlsHelp_browser.vcxproj
COMMENTAIRESÿ: tools\buildhelp\buildhelp.vcxproj
COMMENTAIRESÿ: modules\assert_functions\src\c\nlsAssert_functions.vcxproj
COMMENTAIRESÿ: modules\assert_functions\builtin\c\nlsAssert_functions_builtin.vcxproj
COMMENTAIRESÿ: modules\tests_manager\builtin\c\nlsTests_manager_builtin.vcxproj
COMMENTAIRESÿ: modules\tests_manager\src\c\nlsTests_manager.vcxproj
COMMENTAIRESÿ: tools\tests_minimal\run_tests.vcxproj
COMMENTAIRESÿ: modules\linear_algebra\src\c\nlsLinear_algebra.vcxproj
COMMENTAIRESÿ: modules\linear_algebra\builtin\c\nlsLinear_algebra_builtin.vcxproj
COMMENTAIRESÿ: modules\handle\src\c\nlsHandle.vcxproj
COMMENTAIRESÿ: modules\handle\builtin\c\nlsHandle_builtin.vcxproj
COMMENTAIRESÿ: modules\qml_engine\src\c\nlsQml_engine.vcxproj
COMMENTAIRESÿ: modules\qml_engine\builtin\c\nlsQml_engine_builtin.vcxproj
COMMENTAIRESÿ: modules\com_engine\src\c\nlsCom_engine.vcxproj
COMMENTAIRESÿ: modules\com_engine\builtin\c\nlsCom_engine_builtin.vcxproj
COMMENTAIRESÿ: modules\fftw\src\c\nlsFftw.vcxproj
COMMENTAIRESÿ: modules\fftw\builtin\c\nlsFftw_builtin.vcxproj
COMMENTAIRESÿ: modules\f2c\src\c\f2c\nelson_f2c.vcxproj
COMMENTAIRESÿ: modules\f2c\src\c\libf2c\nlsF2c.vcxproj
COMMENTAIRESÿ: modules\slicot\builtin\c\nlsSlicot_builtin.vcxproj
COMMENTAIRESÿ: modules\text_editor\builtin\c\nlsText_editor_builtin.vcxproj
COMMENTAIRESÿ: modules\text_editor\src\c\nlsText_editor.vcxproj
COMMENTAIRESÿ: modules\text_completion\src\c\nlsText_completion.vcxproj
COMMENTAIRESÿ: modules\mpi\src\c\nlsMpi.vcxproj
COMMENTAIRESÿ: modules\mpi\builtin\c\nlsMpi_builtin.vcxproj
COMMENTAIRESÿ: modules\json\builtin\c\nlsJson_builtin.vcxproj
COMMENTAIRESÿ: modules\json\src\c\nlsJson.vcxproj
COMMENTAIRESÿ: modules\audio\src\c\nlsAudio.vcxproj
COMMENTAIRESÿ: modules\audio\builtin\c\nlsAudio_builtin.vcxproj
COMMENTAIRESÿ: modules\nelson_manager\src\c\nlsNelson_manager.vcxproj
COMMENTAIRESÿ: modules\special_functions\src\c\nlsSpecial_functions.vcxproj
COMMENTAIRESÿ: modules\special_functions\builtin\c\nlsSpecial_functions_builtin.vcxproj
COMMENTAIRESÿ: modules\debugger\src\c\nlsDebugger.vcxproj
COMMENTAIRESÿ: modules\debugger\builtin\c\nlsDebugger_builtin.vcxproj
COMMENTAIRESÿ: modules\sio_client\src\c\nlsSio_client.vcxproj
COMMENTAIRESÿ: modules\main\nelson_sio_cli\NelSon-sio-cli.vcxproj
COMMENTAIRESÿ: modules\sio_client\builtin\c\nlsSio_client_builtin.vcxproj
COMMENTAIRESÿ: modules\hdf5\src\c\nlsHdf5.vcxproj
COMMENTAIRESÿ: modules\hdf5\builtin\c\nlsHdf5_builtin.vcxproj
COMMENTAIRESÿ: modules\matio\src\c\nlsMatio.vcxproj
COMMENTAIRESÿ: modules\matio\builtin\c\nlsMatio_builtin.vcxproj
COMMENTAIRESÿ: modules\profiler\src\c\nlsProfiler.vcxproj
COMMENTAIRESÿ: modules\profiler\builtin\c\nlsProfiler_builtin.vcxproj
COMMENTAIRESÿ: modules\slicot\src\c\nlsSlicot.vcxproj
COMMENTAIRESÿ: modules\file_archiver\src\c\nlsFile_archiver.vcxproj
COMMENTAIRESÿ: modules\file_archiver\builtin\c\nlsFile_archiver_builtin.vcxproj
COMMENTAIRESÿ: modules\characters_encoding\builtin\c\nlsCharacters_encoding_builtin.vcxproj
COMMENTAIRESÿ: modules\webtools\src\c\nlsWebtools.vcxproj
COMMENTAIRESÿ: modules\webtools\builtin\c\nlsWebtools_builtin.vcxproj
COMMENTAIRESÿ: Found 123 projects
PROJECT: D:\Developpements\Github\nelson\modules\webtools\src\c\nlsWebtools.vcxproj
COMMENTAIRESÿ: Deleting variables initialized by previous project:
COMMENTAIRESÿ: 
COMMENTAIRESÿ: Importing environment variables into current scope
COMMENTAIRESÿ: SET_VAR ALLUSERSPROFILE: C:\ProgramData
COMMENTAIRESÿ: SET_VAR APPDATA: C:\Users\allan\AppData\Roaming
COMMENTAIRESÿ: SET_VAR CommonProgramFiles: C:\Program Files (x86)\Common Files
COMMENTAIRESÿ: SET_VAR CommonProgramFiles(x86): C:\Program Files (x86)\Common Files
COMMENTAIRESÿ: SET_VAR CommonProgramW6432: C:\Program Files\Common Files
COMMENTAIRESÿ: SET_VAR COMPUTERNAME: CORE-I7
COMMENTAIRESÿ: SET_VAR ComSpec: C:\Windows\system32\cmd.exe
COMMENTAIRESÿ: SET_VAR DriverData: C:\Windows\System32\Drivers\DriverData
COMMENTAIRESÿ: SET_VAR FPS_BROWSER_APP_PROFILE_STRING: Internet Explorer
COMMENTAIRESÿ: SET_VAR FPS_BROWSER_USER_PROFILE_STRING: Default
COMMENTAIRESÿ: SET_VAR HOMEDRIVE: C:
COMMENTAIRESÿ: SET_VAR HOMEPATH: \Users\allan
COMMENTAIRESÿ: SET_VAR INTEL_LICENSE_FILE: C:\Program Files (x86)\Common Files\Intel\Licenses
COMMENTAIRESÿ: SET_VAR LOCALAPPDATA: C:\Users\allan\AppData\Local
COMMENTAIRESÿ: SET_VAR LOGONSERVER: \\CORE-I7
COMMENTAIRESÿ: SET_VAR MSBuildLoadMicrosoftTargetsReadOnly: true
COMMENTAIRESÿ: SET_VAR MSMPI_BENCHMARKS: C:\Program Files\Microsoft MPI\Benchmarks\
COMMENTAIRESÿ: SET_VAR MSMPI_BIN: C:\Program Files\Microsoft MPI\Bin\
COMMENTAIRESÿ: SET_VAR NUMBER_OF_PROCESSORS: 8
COMMENTAIRESÿ: SET_VAR OneDrive: C:\Users\allan\OneDrive
COMMENTAIRESÿ: SET_VAR OneDriveConsumer: C:\Users\allan\OneDrive
COMMENTAIRESÿ: SET_VAR OS: Windows_NT
COMMENTAIRESÿ: SET_VAR Path: c:\program files (x86)\microsoft visual 
studio\2019\professional\common7\ide\commonextensions\microsoft\teamfoundation\team 
explorer\NativeBinaries\x86;C:\Program Files\Microsoft 
MPI\Bin\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows
\System32\OpenSSH\;C:\WindowsTools\Git\cmd;C:\WindowsTools\Git\mingw64\bin;C:\WindowsTools\Git\usr\bin;C:\Program 
Files\CMake\bin;C:\WindowsTools\LLVM\bin;C:\WindowsTools\Python37\Scripts\;C:\WindowsTools\Python37\;C:\Users\allan\App
Data\Local\Microsoft\WindowsApps;;C:\Users\allan\AppData\Local\Programs\Microsoft VS Code\bin
COMMENTAIRESÿ: SET_VAR PATHEXT: .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL
COMMENTAIRESÿ: SET_VAR PkgDefApplicationConfigFile: 
C:\Users\allan\AppData\Local\Microsoft\VisualStudio\16.0_c04c8306\devenv.exe.config
COMMENTAIRESÿ: SET_VAR PROCESSOR_ARCHITECTURE: x86
COMMENTAIRESÿ: SET_VAR PROCESSOR_ARCHITEW6432: AMD64
COMMENTAIRESÿ: SET_VAR PROCESSOR_IDENTIFIER: Intel64 Family 6 Model 30 Stepping 5, GenuineIntel
COMMENTAIRESÿ: SET_VAR PROCESSOR_LEVEL: 6
COMMENTAIRESÿ: SET_VAR PROCESSOR_REVISION: 1e05
COMMENTAIRESÿ: SET_VAR ProgramData: C:\ProgramData
COMMENTAIRESÿ: SET_VAR ProgramFiles: C:\Program Files (x86)
COMMENTAIRESÿ: SET_VAR ProgramFiles(x86): C:\Program Files (x86)
COMMENTAIRESÿ: SET_VAR ProgramW6432: C:\Program Files
COMMENTAIRESÿ: SET_VAR PROMPT: $P$G
COMMENTAIRESÿ: SET_VAR PSExecutionPolicyPreference: Unrestricted
COMMENTAIRESÿ: SET_VAR PSModulePath: C:\Program 
Files\WindowsPowerShell\Modules;C:\Users\allan\Documents\WindowsPowerShell\Modules;C:\Program Files 
(x86)\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules
COMMENTAIRESÿ: SET_VAR PUBLIC: C:\Users\Public
COMMENTAIRESÿ: SET_VAR QTDIR: D:\Developpements\Qt\5.13.1\msvc2017_64
COMMENTAIRESÿ: SET_VAR QTDIR32: D:\Developpements\Qt\5.13.1\msvc2017
COMMENTAIRESÿ: SET_VAR QTDIR64: D:\Developpements\Qt\5.13.1\msvc2017_64
COMMENTAIRESÿ: SET_VAR QtMsBuild: C:\Users\allan\AppData\Local\QtMsBuild
COMMENTAIRESÿ: SET_VAR ServiceHubUniqueLogDir: 98A9CBD7
COMMENTAIRESÿ: SET_VAR SESSIONNAME: Console
COMMENTAIRESÿ: SET_VAR SystemDrive: C:
COMMENTAIRESÿ: SET_VAR SystemRoot: C:\Windows
COMMENTAIRESÿ: SET_VAR TEMP: F:\TEMP
COMMENTAIRESÿ: SET_VAR ThreadedWaitDialogDpiContext: -4
COMMENTAIRESÿ: SET_VAR TMP: F:\TEMP
COMMENTAIRESÿ: SET_VAR USERDOMAIN: CORE-I7
COMMENTAIRESÿ: SET_VAR USERDOMAIN_ROAMINGPROFILE: CORE-I7
COMMENTAIRESÿ: SET_VAR USERNAME: allan
COMMENTAIRESÿ: SET_VAR USERPROFILE: C:\Users\allan
COMMENTAIRESÿ: SET_VAR VBOX_MSI_INSTALL_PATH: C:\Program Files\Oracle\VirtualBox\
COMMENTAIRESÿ: SET_VAR VisualStudioDir: C:\Users\allan\Documents\Visual Studio 2019
COMMENTAIRESÿ: SET_VAR VisualStudioEdition: Microsoft Visual Studio Professional 2019
COMMENTAIRESÿ: SET_VAR VisualStudioVersion: 16.0
COMMENTAIRESÿ: SET_VAR VS2019INSTALLDIR: C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional
COMMENTAIRESÿ: SET_VAR VSAPPIDDIR: C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\Common7\IDE\
COMMENTAIRESÿ: SET_VAR VSAPPIDNAME: devenv.exe
COMMENTAIRESÿ: SET_VAR VSLANG: 1036
COMMENTAIRESÿ: SET_VAR VSSKUEDITION: Professional
COMMENTAIRESÿ: SET_VAR windir: C:\Windows
COMMENTAIRESÿ: SET_VAR MSBuildProjectFullPath: 
D:\Developpements\Github\nelson\modules\webtools\src\c\nlsWebtools.vcxproj
COMMENTAIRESÿ: SET_VAR ProjectDir: D:\Developpements\Github\nelson\modules\webtools\src\c\
COMMENTAIRESÿ: SET_VAR MSBuildProjectExtension: .vcxproj
COMMENTAIRESÿ: SET_VAR MSBuildProjectFile: nlsWebtools.vcxproj
COMMENTAIRESÿ: SET_VAR MSBuildProjectName: nlsWebtools
COMMENTAIRESÿ: SET_VAR MSBuildProjectDirectory: D:\Developpements\Github\nelson\modules\webtools\src\c\
COMMENTAIRESÿ: SET_VAR MSBuildProgramFiles32: C:\Program Files (x86)
COMMENTAIRESÿ: SET_VAR ProjectName: nlsWebtools
COMMENTAIRESÿ: SET_VAR TargetName: nlsWebtools
COMMENTAIRESÿ: SET_VAR UserRootDir: C:\Users\allan\AppData\Local\Microsoft\MSBuild\v4.0
COMMENTAIRESÿ: SET_VAR VisualStudioVersion: 16.0
COMMENTAIRESÿ: SET_VAR MSBuildToolsVersion: 16.0
COMMENTAIRESÿ: Retrieving project list for solution D:\Developpements\Github\nelson\NelSon.sln
COMMENTAIRESÿ: Solution directory: D:\Developpements\Github\nelson\
COMMENTAIRESÿ: Intermediate solution project matches count: 124
COMMENTAIRESÿ: modules\main\nelson_gui\NelSon-gui.vcxproj
COMMENTAIRESÿ: modules\main\nelson_adv_cli\NelSon-adv-cli.vcxproj
COMMENTAIRESÿ: modules\main\nelson_cli\NelSon-cli.vcxproj
COMMENTAIRESÿ: modules\interpreter\src\c\nlsInterpreter.vcxproj
COMMENTAIRESÿ: modules\elementary_mathematics\src\c\nlsElementary_mathematics.vcxproj
COMMENTAIRESÿ: modules\error_manager\src\c\nlsError_manager.vcxproj
COMMENTAIRESÿ: modules\stream_manager\src\c\nlsStream_manager.vcxproj
COMMENTAIRESÿ: modules\types\src\c\nlsTypes.vcxproj
COMMENTAIRESÿ: modules\terminal\src\c\nlsTerminal.vcxproj
COMMENTAIRESÿ: modules\engine\src\c\nlsEngine.vcxproj
COMMENTAIRESÿ: modules\elementary_functions\src\c\nlsElementary_functions.vcxproj
COMMENTAIRESÿ: modules\sparse\src\c\nlsSparse.vcxproj
COMMENTAIRESÿ: modules\time\src\c\nlsTime.vcxproj
COMMENTAIRESÿ: modules\time\builtin\c\nlsTime_builtin.vcxproj
COMMENTAIRESÿ: modules\constructors_functions\src\c\nlsConstructors_functions.vcxproj
COMMENTAIRESÿ: modules\constructors_functions\builtin\c\nlsConstructors_functions_builtin.vcxproj
COMMENTAIRESÿ: modules\types\builtin\c\nlsTypes_builtin.vcxproj
COMMENTAIRESÿ: modules\double\builtin\c\nlsDouble_builtin.vcxproj
COMMENTAIRESÿ: modules\double\src\c\nlsDouble.vcxproj
COMMENTAIRESÿ: modules\data_structures\builtin\c\nlsData_structures_builtin.vcxproj
COMMENTAIRESÿ: modules\api_nelson\src\c\nlsApi_nelson.vcxproj
COMMENTAIRESÿ: modules\elementary_functions\builtin\c\nlsElementary_functions_builtin.vcxproj
COMMENTAIRESÿ: modules\single\builtin\c\nlsSingle_builtin.vcxproj
COMMENTAIRESÿ: modules\integer\builtin\c\nlsInteger_builtin.vcxproj
COMMENTAIRESÿ: modules\integer\src\c\nlsInteger.vcxproj
COMMENTAIRESÿ: modules\single\src\c\nlsSingle.vcxproj
COMMENTAIRESÿ: modules\string\src\c\nlsString.vcxproj
COMMENTAIRESÿ: modules\string\builtin\c\nlsString_builtin.vcxproj
COMMENTAIRESÿ: modules\trigonometric_functions\builtin\c\nlsTrigonometric_functions_builtin.vcxproj
COMMENTAIRESÿ: modules\trigonometric_functions\src\c\nlsTrigonometric_functions.vcxproj
COMMENTAIRESÿ: modules\sparse\builtin\c\nlsSparse_builtin.vcxproj
COMMENTAIRESÿ: modules\logical\builtin\c\nlsLogical_builtin.vcxproj
COMMENTAIRESÿ: modules\logical\src\c\nlsLogical.vcxproj
COMMENTAIRESÿ: modules\characters_encoding\src\c\nlsCharacters_encoding.vcxproj
COMMENTAIRESÿ: modules\files_folders_functions\builtin\c\nlsFiles_folders_functions_builtin.vcxproj
COMMENTAIRESÿ: modules\files_folders_functions\src\c\nlsFiles_folders_functions.vcxproj
COMMENTAIRESÿ: modules\os_functions\src\c\nlsOs_functions.vcxproj
COMMENTAIRESÿ: modules\os_functions\builtin\c\nlsOs_functions_builtin.vcxproj
COMMENTAIRESÿ: modules\core\builtin\c\nlsCore_builtin.vcxproj
COMMENTAIRESÿ: modules\core\src\c\nlsCore.vcxproj
COMMENTAIRESÿ: modules\functions_manager\builtin\c\nlsFunctions_manager_builtin.vcxproj
COMMENTAIRESÿ: modules\functions_manager\src\c\nlsFunctions_manager.vcxproj
COMMENTAIRESÿ: modules\memory_manager\builtin\c\nlsMemory_manager_builtin.vcxproj
COMMENTAIRESÿ: modules\memory_manager\src\c\nlsMemory_manager.vcxproj
COMMENTAIRESÿ: modules\console\builtin\c\nlsConsole_builtin.vcxproj
COMMENTAIRESÿ: modules\console\src\c\nlsConsole.vcxproj
COMMENTAIRESÿ: modules\stream_manager\builtin\c\nlsStream_manager_builtin.vcxproj
COMMENTAIRESÿ: modules\error_manager\builtin\c\nlsError_manager_builtin.vcxproj
COMMENTAIRESÿ: modules\overload\src\c\nlsOverload.vcxproj
COMMENTAIRESÿ: modules\data_structures\src\c\nlsData_structures.vcxproj
COMMENTAIRESÿ: modules\interpreter\builtin\c\nlsInterpreter_builtin.vcxproj
COMMENTAIRESÿ: Solution Items
COMMENTAIRESÿ: modules\dynamic_link\src\c\nlsDynamic_link.vcxproj
COMMENTAIRESÿ: modules\dynamic_link\builtin\c\nlsDynamic_link_builtin.vcxproj
COMMENTAIRESÿ: modules\modules_manager\src\c\nlsModules_manager.vcxproj
COMMENTAIRESÿ: modules\modules_manager\builtin\c\nlsModules_manager_builtin.vcxproj
COMMENTAIRESÿ: modules\overload\builtin\c\nlsOverload_builtin.vcxproj
COMMENTAIRESÿ: modules\function_handle\builtin\c\nlsFunction_handle_builtin.vcxproj
COMMENTAIRESÿ: modules\function_handle\src\c\nlsFunction_handle.vcxproj
COMMENTAIRESÿ: modules\engine\builtin\c\nlsEngine_builtin.vcxproj
COMMENTAIRESÿ: modules\random\builtin\c\nlsRandom_builtin.vcxproj
COMMENTAIRESÿ: modules\random\src\c\nlsRandom.vcxproj
COMMENTAIRESÿ: modules\gui\src\c\nlsGui.vcxproj
COMMENTAIRESÿ: modules\gui\builtin\c\nlsGui_builtin.vcxproj
COMMENTAIRESÿ: modules\history_manager\builtin\c\nlsHistory_manager_builtin.vcxproj
COMMENTAIRESÿ: modules\history_manager\src\c\nlsHistory_manager.vcxproj
COMMENTAIRESÿ: modules\help_tools\builtin\c\nlsHelp_tools_builtin.vcxproj
COMMENTAIRESÿ: modules\help_tools\src\c\nlsHelp_tools.vcxproj
COMMENTAIRESÿ: modules\localization\src\c\nlsLocalization.vcxproj
COMMENTAIRESÿ: modules\localization\builtin\c\nlsLocalization_builtin.vcxproj
COMMENTAIRESÿ: modules\i18n\src\c\nlsI18n.vcxproj
COMMENTAIRESÿ: modules\i18n\builtin\c\nlsI18n_builtin.vcxproj
COMMENTAIRESÿ: tools\gettext\generatepo\generatepo.vcxproj
COMMENTAIRESÿ: tools\gettext\generatemo\generatemo.vcxproj
COMMENTAIRESÿ: modules\help_browser\builtin\c\nlsHelp_browser_builtin.vcxproj
COMMENTAIRESÿ: modules\help_browser\src\c\nlsHelp_browser.vcxproj
COMMENTAIRESÿ: tools\buildhelp\buildhelp.vcxproj
COMMENTAIRESÿ: modules\assert_functions\src\c\nlsAssert_functions.vcxproj
COMMENTAIRESÿ: modules\assert_functions\builtin\c\nlsAssert_functions_builtin.vcxproj
COMMENTAIRESÿ: modules\tests_manager\builtin\c\nlsTests_manager_builtin.vcxproj
COMMENTAIRESÿ: modules\tests_manager\src\c\nlsTests_manager.vcxproj
COMMENTAIRESÿ: tools\tests_minimal\run_tests.vcxproj
COMMENTAIRESÿ: modules\linear_algebra\src\c\nlsLinear_algebra.vcxproj
COMMENTAIRESÿ: modules\linear_algebra\builtin\c\nlsLinear_algebra_builtin.vcxproj
COMMENTAIRESÿ: modules\handle\src\c\nlsHandle.vcxproj
COMMENTAIRESÿ: modules\handle\builtin\c\nlsHandle_builtin.vcxproj
COMMENTAIRESÿ: modules\qml_engine\src\c\nlsQml_engine.vcxproj
COMMENTAIRESÿ: modules\qml_engine\builtin\c\nlsQml_engine_builtin.vcxproj
COMMENTAIRESÿ: modules\com_engine\src\c\nlsCom_engine.vcxproj
COMMENTAIRESÿ: modules\com_engine\builtin\c\nlsCom_engine_builtin.vcxproj
COMMENTAIRESÿ: modules\fftw\src\c\nlsFftw.vcxproj
COMMENTAIRESÿ: modules\fftw\builtin\c\nlsFftw_builtin.vcxproj
COMMENTAIRESÿ: modules\f2c\src\c\f2c\nelson_f2c.vcxproj
COMMENTAIRESÿ: modules\f2c\src\c\libf2c\nlsF2c.vcxproj
COMMENTAIRESÿ: modules\slicot\builtin\c\nlsSlicot_builtin.vcxproj
COMMENTAIRESÿ: modules\text_editor\builtin\c\nlsText_editor_builtin.vcxproj
COMMENTAIRESÿ: modules\text_editor\src\c\nlsText_editor.vcxproj
COMMENTAIRESÿ: modules\text_completion\src\c\nlsText_completion.vcxproj
COMMENTAIRESÿ: modules\mpi\src\c\nlsMpi.vcxproj
COMMENTAIRESÿ: modules\mpi\builtin\c\nlsMpi_builtin.vcxproj
COMMENTAIRESÿ: modules\json\builtin\c\nlsJson_builtin.vcxproj
COMMENTAIRESÿ: modules\json\src\c\nlsJson.vcxproj
COMMENTAIRESÿ: modules\audio\src\c\nlsAudio.vcxproj
COMMENTAIRESÿ: modules\audio\builtin\c\nlsAudio_builtin.vcxproj
COMMENTAIRESÿ: modules\nelson_manager\src\c\nlsNelson_manager.vcxproj
COMMENTAIRESÿ: modules\special_functions\src\c\nlsSpecial_functions.vcxproj
COMMENTAIRESÿ: modules\special_functions\builtin\c\nlsSpecial_functions_builtin.vcxproj
COMMENTAIRESÿ: modules\debugger\src\c\nlsDebugger.vcxproj
COMMENTAIRESÿ: modules\debugger\builtin\c\nlsDebugger_builtin.vcxproj
COMMENTAIRESÿ: modules\sio_client\src\c\nlsSio_client.vcxproj
COMMENTAIRESÿ: modules\main\nelson_sio_cli\NelSon-sio-cli.vcxproj
COMMENTAIRESÿ: modules\sio_client\builtin\c\nlsSio_client_builtin.vcxproj
COMMENTAIRESÿ: modules\hdf5\src\c\nlsHdf5.vcxproj
COMMENTAIRESÿ: modules\hdf5\builtin\c\nlsHdf5_builtin.vcxproj
COMMENTAIRESÿ: modules\matio\src\c\nlsMatio.vcxproj
COMMENTAIRESÿ: modules\matio\builtin\c\nlsMatio_builtin.vcxproj
COMMENTAIRESÿ: modules\profiler\src\c\nlsProfiler.vcxproj
COMMENTAIRESÿ: modules\profiler\builtin\c\nlsProfiler_builtin.vcxproj
COMMENTAIRESÿ: modules\slicot\src\c\nlsSlicot.vcxproj
COMMENTAIRESÿ: modules\file_archiver\src\c\nlsFile_archiver.vcxproj
COMMENTAIRESÿ: modules\file_archiver\builtin\c\nlsFile_archiver_builtin.vcxproj
COMMENTAIRESÿ: modules\characters_encoding\builtin\c\nlsCharacters_encoding_builtin.vcxproj
COMMENTAIRESÿ: modules\webtools\src\c\nlsWebtools.vcxproj
COMMENTAIRESÿ: modules\webtools\builtin\c\nlsWebtools_builtin.vcxproj
COMMENTAIRESÿ: SET_VAR SolutionDir: D:\Developpements\Github\nelson\
COMMENTAIRESÿ: SET_VAR SolutionName: NelSon
COMMENTAIRESÿ: 
Sanitizing D:\Developpements\Github\nelson\modules\webtools\src\c\nlsWebtools.vcxproj
COMMENTAIRESÿ: SET_VAR MSBuildThisFileFullPath: 
D:\Developpements\Github\nelson\modules\webtools\src\c\nlsWebtools.vcxproj
COMMENTAIRESÿ: SET_VAR MSBuildThisFileExtension: .vcxproj
COMMENTAIRESÿ: SET_VAR MSBuildThisFile: nlsWebtools.vcxproj
COMMENTAIRESÿ: SET_VAR MSBuildThisFileName: nlsWebtools
COMMENTAIRESÿ: SET_VAR MSBuildThisFileDirectory: D:\Developpements\Github\nelson\modules\webtools\src\c\
COMMENTAIRESÿ: [CONTEXT] item namespace = @(ProjectConfiguration)
COMMENTAIRESÿ: SET_VAR CPT_PROJITEM_ProjectConfiguration: 
COMMENTAIRESÿ: [CONTEXT] item namespace = @()
COMMENTAIRESÿ: SET_VAR Configuration: Debug
COMMENTAIRESÿ: SET_VAR Platform: x64
COMMENTAIRESÿ: SET_VAR ProjectGuid: {F6495DD9-6FF5-485B-9393-767327A4DD79}
COMMENTAIRESÿ: SET_VAR Keyword: Win32Proj
COMMENTAIRESÿ: SET_VAR RootNamespace: nlsWebtools
COMMENTAIRESÿ: SET_VAR WindowsTargetPlatformVersion: 10.0
COMMENTAIRESÿ: Could not find property sheet \Microsoft.Cpp.Default.props
COMMENTAIRESÿ: SET_VAR ConfigurationType: DynamicLibrary
COMMENTAIRESÿ: SET_VAR UseDebugLibraries: true
COMMENTAIRESÿ: SET_VAR PlatformToolset: v142
COMMENTAIRESÿ: SET_VAR CharacterSet: Unicode
COMMENTAIRESÿ: Could not find property sheet \Microsoft.Cpp.props
COMMENTAIRESÿ: SET_VAR TargetName: libnlsWebtools
COMMENTAIRESÿ: SET_VAR LinkIncremental: true
COMMENTAIRESÿ: SET_VAR OutDir: D:\Developpements\Github\nelson\bin//
COMMENTAIRESÿ: [CONTEXT] item namespace = @(ClCompile)
COMMENTAIRESÿ: [CONTEXT] propSet: PrecompiledHeader = 
COMMENTAIRESÿ: [CONTEXT] propSet: WarningLevel = Level3
COMMENTAIRESÿ: [CONTEXT] propSet: Optimization = Disabled
COMMENTAIRESÿ: [CONTEXT] propSet: PreprocessorDefinitions = WIN32;_DEBUG;_WINDOWS;_USRDLL;NLSWEBTOOLS_EXPORTS;
COMMENTAIRESÿ: [CONTEXT] propSet: SDLCheck = true
COMMENTAIRESÿ: [CONTEXT] propSet: AdditionalIncludeDirectories = 
D:\Developpements\Github\nelson\modules/webtools/src/include;D:\Developpements\Github\nelson\modules/webtools/src/c;D:\
Developpements\Github\nelson\modules/dynamic_link/src/include;D:\Developpements\Github\nelson\modules/characters_encodi
ng/src/include;D:\Developpements\Github\nelson\modules/interpreter/src/include;D:\Developpements\Github\nelson\modules/
types/src/include;D:\Developpements\Github\nelson\modules/stream_manager/src/include;D:\Developpements\Github\nelson\mo
dules/elementary_functions/src/include;D:\Developpements\Github\nelson\modules/elementary_mathematics/src/include;D:\De
veloppements\Github\nelson\modules/nelson_manager/src/include;D:\Developpements\Github\nelson\modules/error_manager/src
/include;D:\Developpements\Github\nelson\modules/i18n/src/include;D:\Developpements\Github\nelson\../NelSon-thirdparty-
/Eigen;D:\Developpements\Github\nelson\../NelSon-thirdparty-/Boost;D:\Developpements\Github\nelson\../NelSon-thirdparty
-/curl/include;D:\Developpements\Github\nelson\../NelSon-thirdparty-/libgit2/include
COMMENTAIRESÿ: [CONTEXT] propSet: OpenMPSupport = true
COMMENTAIRESÿ: [CONTEXT] item namespace = @()
COMMENTAIRESÿ: [CONTEXT] item namespace = @(Link)
COMMENTAIRESÿ: [CONTEXT] propSet: SubSystem = Windows
COMMENTAIRESÿ: [CONTEXT] propSet: GenerateDebugInformation = true
COMMENTAIRESÿ: [CONTEXT] propSet: AdditionalLibraryDirectories = 
D:\Developpements\Github\nelson\../NelSon-thirdparty-/Boost/lib;D:\Developpements\Github\nelson\../NelSon-thirdparty-/c
url/lib;D:\Developpements\Github\nelson\../NelSon-thirdparty-/libgit2/lib
COMMENTAIRESÿ: [CONTEXT] item namespace = @()
COMMENTAIRESÿ: [CONTEXT] item namespace = @(ProjectReference)
COMMENTAIRESÿ: SET_VAR CPT_PROJITEM_ProjectReference: 
COMMENTAIRESÿ: [CONTEXT] item namespace = @()
COMMENTAIRESÿ: [CONTEXT] item namespace = @(Text)
COMMENTAIRESÿ: SET_VAR CPT_PROJITEM_Text: 
COMMENTAIRESÿ: [CONTEXT] item namespace = @()
COMMENTAIRESÿ: [CONTEXT] item namespace = @(None)
COMMENTAIRESÿ: SET_VAR CPT_PROJITEM_None: 
COMMENTAIRESÿ: [CONTEXT] item namespace = @()
COMMENTAIRESÿ: [CONTEXT] item namespace = @(ResourceCompile)
COMMENTAIRESÿ: SET_VAR CPT_PROJITEM_ResourceCompile: 
COMMENTAIRESÿ: [CONTEXT] item namespace = @()
COMMENTAIRESÿ: [CONTEXT] item namespace = @(ClCompile)
COMMENTAIRESÿ: SET_VAR CPT_PROJITEM_ClCompile: 
COMMENTAIRESÿ: [CONTEXT] item namespace = @()
COMMENTAIRESÿ: [CONTEXT] item namespace = @(ClInclude)
COMMENTAIRESÿ: SET_VAR CPT_PROJITEM_ClInclude: 
COMMENTAIRESÿ: [CONTEXT] item namespace = @()
COMMENTAIRESÿ: Could not find property sheet \Microsoft.Cpp.targets
COMMENTAIRESÿ: Platform toolset: v142
COMMENTAIRESÿ: [CONTEXT] item namespace = @(ClCompile)
COMMENTAIRESÿ: Force includes:
COMMENTAIRESÿ:   
COMMENTAIRESÿ: 
COMMENTAIRESÿ: Preprocessor definitions:
COMMENTAIRESÿ:   "-DUNICODE"
COMMENTAIRESÿ:   "-D_UNICODE"
COMMENTAIRESÿ:   "-D_MT"
COMMENTAIRESÿ:   "-D_DLL"
COMMENTAIRESÿ:   "-DWIN32"
COMMENTAIRESÿ:   "-D_DEBUG"
COMMENTAIRESÿ:   "-D_WINDOWS"
COMMENTAIRESÿ:   "-D_USRDLL"
COMMENTAIRESÿ:   "-DNLSWEBTOOLS_EXPORTS"
COMMENTAIRESÿ:   "-D_DEBUG_FUNCTIONAL_MACHINERY"
COMMENTAIRESÿ: 
COMMENTAIRESÿ: Additional include directories:
COMMENTAIRESÿ:   D:\Developpements\Github\nelson\modules/webtools/src/include
COMMENTAIRESÿ:   D:\Developpements\Github\nelson\modules/webtools/src/c
COMMENTAIRESÿ:   D:\Developpements\Github\nelson\modules/dynamic_link/src/include
COMMENTAIRESÿ:   D:\Developpements\Github\nelson\modules/characters_encoding/src/include
COMMENTAIRESÿ:   D:\Developpements\Github\nelson\modules/interpreter/src/include
COMMENTAIRESÿ:   D:\Developpements\Github\nelson\modules/types/src/include
COMMENTAIRESÿ:   D:\Developpements\Github\nelson\modules/stream_manager/src/include
COMMENTAIRESÿ:   D:\Developpements\Github\nelson\modules/elementary_functions/src/include
COMMENTAIRESÿ:   D:\Developpements\Github\nelson\modules/elementary_mathematics/src/include
COMMENTAIRESÿ:   D:\Developpements\Github\nelson\modules/nelson_manager/src/include
COMMENTAIRESÿ:   D:\Developpements\Github\nelson\modules/error_manager/src/include
COMMENTAIRESÿ:   D:\Developpements\Github\nelson\modules/i18n/src/include
COMMENTAIRESÿ: 
COMMENTAIRESÿ: Detected (vswhere) VisualStudio installation path: C:\Program Files (x86)\Microsoft Visual 
Studio\2019\Professional
COMMENTAIRESÿ: Visual Studio location: C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional
COMMENTAIRESÿ: Detected (vswhere) VisualStudio installation path: C:\Program Files (x86)\Microsoft Visual 
Studio\2019\Professional
COMMENTAIRESÿ: MSCVER: 14.23.28105
COMMENTAIRESÿ: WinSDK version: 10.0
COMMENTAIRESÿ: Include directories:
COMMENTAIRESÿ:   C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\VC\Tools\MSVC\14.23.28105\include
COMMENTAIRESÿ:   C:\Program Files (x86)\Microsoft Visual 
Studio\2019\Professional\VC\Tools\MSVC\14.23.28105\atlmfc\include
COMMENTAIRESÿ:   C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\VC\Auxiliary\VS\include
COMMENTAIRESÿ:   C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt
COMMENTAIRESÿ:   C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\um
COMMENTAIRESÿ:   C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\shared
COMMENTAIRESÿ:   C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\winrt
COMMENTAIRESÿ:   C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\cppwinrt
COMMENTAIRESÿ: 
COMMENTAIRESÿ: PCH not enabled for this project!
COMMENTAIRESÿ: Processing 6 cpps
COMMENTAIRESÿ: INVOKE: "\clang-tidy.exe" "D:\Developpements\Github\nelson\modules\webtools\src\cpp\WebOptions.cpp" 
-checks=-*, -header-filter=".*" -quiet -fix-errors -- -isystem"C:\Program Files (x86)\Microsoft Visual 
Studio\2019\Professional\VC\Tools\MSVC\14.23.28105\include" -isystem"C:\Program Files (x86)\Microsoft Visual 
Studio\2019\Professional\VC\Tools\MSVC\14.23.28105\atlmfc\include" -isystem"C:\Program Files (x86)\Microsoft Visual 
Studio\2019\Professional\VC\Auxiliary\VS\include" -isystem"C:\Program Files (x86)\Windows 
Kits\10\Include\10.0.18362.0\ucrt" -isystem"C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\um" 
-isystem"C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\shared" -isystem"C:\Program Files (x86)\Windows 
Kits\10\Include\10.0.18362.0\winrt" -isystem"C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\cppwinrt" 
-I"D:\Developpements\Github\nelson\modules/webtools/src/include" 
-I"D:\Developpements\Github\nelson\modules/webtools/src/c" 
-I"D:\Developpements\Github\nelson\modules/dynamic_link/src/include" 
-I"D:\Developpements\Github\nelson\modules/characters_encoding/src/include" 
-I"D:\Developpements\Github\nelson\modules/interpreter/src/include" 
-I"D:\Developpements\Github\nelson\modules/types/src/include" 
-I"D:\Developpements\Github\nelson\modules/stream_manager/src/include" 
-I"D:\Developpements\Github\nelson\modules/elementary_functions/src/include" 
-I"D:\Developpements\Github\nelson\modules/elementary_mathematics/src/include" 
-I"D:\Developpements\Github\nelson\modules/nelson_manager/src/include" 
-I"D:\Developpements\Github\nelson\modules/error_manager/src/include" 
-I"D:\Developpements\Github\nelson\modules/i18n/src/include" -std=c++14 -Wall -fms-compatibility-version=19.10 
-Wmicrosoft -Wno-invalid-token-paste -Wno-unknown-pragmas -Wno-unused-value "-DUNICODE" "-D_UNICODE" "-D_MT" "-D_DLL" 
"-DWIN32" "-D_DEBUG" "-D_WINDOWS" "-D_USRDLL" "-DNLSWEBTOOLS_EXPORTS" "-D_DEBUG_FUNCTIONAL_MACHINERY" -x c++
6: D:\Developpements\Github\nelson\modules\webtools\src\cpp\WebOptions.cpp
Error: no checks enabled.
USAGE: clang-tidy.exe [options] <source0> [... <sourceN>]
OPTIONS:
Generic Options:
  -help                         - Display available options (-help-hidden for more)
  -version                      - Display the version of this program
clang-tidy options:
  -checks=<string>              - 
                                  Comma-separated list of globs with optional '-'
                                  prefix. Globs are processed in order of
                                  appearance in the list. Globs without '-'
                                  prefix add checks with matching names to the
                                  set, globs with the '-' prefix remove checks
                                  with matching names from the set of enabled
                                  checks. This option's value is appended to the
                                  value of the 'Checks' option in .clang-tidy
                                  file, if any.
  -config=<string>              - 
                                  Specifies a configuration in YAML/JSON format:
                                    -config="{Checks: '*',
                                              CheckOptions: [{key: x,
                                                              value: y}]}"
                                  When the value is empty, clang-tidy will
                                  attempt to find a file named .clang-tidy for
                                  each source file in its parent directories.
  -dump-config                  - 
                                  Dumps configuration in the YAML format to
                                  stdout. This option can be used along with a
                                  file name (and '--' if the file is outside of a
                                  project with configured compilation database).
                                  The configuration used for this file will be
                                  printed.
                                  Use along with -checks=* to include
                                  configuration of all checks.
  -enable-check-profile         - 
                                  Enable per-check timing profiles, and print a
                                  report to stderr.
  -explain-config               - 
                                  For each enabled check explains, where it is
                                  enabled, i.e. in clang-tidy binary, command
                                  line or a specific configuration file.
  -export-fixes=<filename>      - 
                                  YAML file to store suggested fixes in. The
                                  stored fixes can be applied to the input source
                                  code with clang-apply-replacements.
  -extra-arg=<string>           - Additional argument to append to the compiler command line
  -extra-arg-before=<string>    - Additional argument to prepend to the compiler command line
  -fix                          - 
                                  Apply suggested fixes. Without -fix-errors
                                  clang-tidy will bail out if any compilation
                                  errors were found.
  -fix-errors                   - 
                                  Apply suggested fixes even if compilation
                                  errors were found. If compiler errors have
                                  attached fix-its, clang-tidy will apply them as
                                  well.
  -format-style=<string>        - 
                                  Style for formatting code around applied fixes:
                                    - 'none' (default) turns off formatting
                                    - 'file' (literally 'file', not a placeholder)
                                      uses .clang-format file in the closest parent
                                      directory
                                    - '{ <json> }' specifies options inline, e.g.
                                      -format-style='{BasedOnStyle: llvm, IndentWidth: 8}'
                                    - 'llvm', 'google', 'webkit', 'mozilla'
                                  See clang-format documentation for the up-to-date
                                  information about formatting styles and options.
                                  This option overrides the 'FormatStyle` option in
                                  .clang-tidy file, if any.
  -header-filter=<string>       - 
                                  Regular expression matching the names of the
                                  headers to output diagnostics from. Diagnostics
                                  from the main file of each translation unit are
                                  always displayed.
                                  Can be used together with -line-filter.
                                  This option overrides the 'HeaderFilter' option
                                  in .clang-tidy file, if any.
  -line-filter=<string>         - 
                                  List of files with line ranges to filter the
                                  warnings. Can be used together with
                                  -header-filter. The format of the list is a
                                  JSON array of objects:
                                    [
                                      {"name":"file1.cpp","lines":[[1,3],[5,7]]},
                                      {"name":"file2.h"}
                                    ]
  -list-checks                  - 
                                  List all enabled checks and exit. Use with
                                  -checks=* to list all available checks.
  -p=<string>                   - Build path
  -quiet                        - 
                                  Run clang-tidy in quiet mode. This suppresses
                                  printing statistics about ignored warnings and
                                  warnings treated as errors if the respective
                                  options are specified.
  -store-check-profile=<prefix> - 
                                  By default reports are printed in tabulated
                                  format to stderr. When this option is passed,
                                  these per-TU profiles are instead stored as JSON.
  -system-headers               - Display the errors from system headers.
  -vfsoverlay=<filename>        - 
                                  Overlay the virtual filesystem described by file
                                  over the real file system.
  -warnings-as-errors=<string>  - 
                                  Upgrades warnings to errors. Same format as
                                  '-checks'.
                                  This option's value is appended to the value of
                                  the 'WarningsAsErrors' option in .clang-tidy
                                  file, if any.

Got errors.
COMMENTAIRESÿ: Cleaning up PCH temporaries:
COMMENTAIRESÿ: 

--- CLANG TIDY-FIX FINISHED ---
hero101111 commented 5 years ago

Thank you for the provided log. We are investigating the issue and will return to this thread with updated information.

Regards, Gabriel.

Enache-Ionut commented 5 years ago

Hi,

This issue was fixed and it is available in the new version of Clang Power Tools v5.3. Please check for updates.

Thank you for taking the time to help us to make a better product.

Regards, ~Ionut

Nelson-numerical-software commented 5 years ago

Sorry but I updated with 5.3 and this trouble is always here:


--- CLANG TIDY-FIX STARTED ---

COMMENTAIRESÿ: clang-build.ps1 invocation args: 
  aVcxprojToCompile = D:\Developpements\Github\nelson\modules\string\src\c\nlsString.vcxproj 
  aVcxprojConfigPlatform = Debug|x64 
  aClangCompileFlags = -Wall -fms-compatibility-version=19.10 -Wmicrosoft -Wno-invalid-token-paste -Wno-unknown-pragmas
 -Wno-unused-value 
  Verbose = True 
  aTidyFixFlags = -*, 
  aTidyHeaderFilter = .* 
  aVisualStudioVersion = 2019 
  aVisualStudioSku = Professional 
  aSolutionsPath = D:\Developpements\Github\nelson\NelSon.sln 
COMMENTAIRESÿ: CPU logical core count: 8
COMMENTAIRESÿ: Scanning for solution files
COMMENTAIRESÿ: Caching solution file D:\Developpements\Github\nelson\NelSon.sln
COMMENTAIRESÿ: Solution full path: D:\Developpements\Github\nelson\NelSon.sln
COMMENTAIRESÿ: Solution data length: 108322
COMMENTAIRESÿ: Solution file paths:
COMMENTAIRESÿ:   D:\Developpements\Github\nelson\NelSon.sln
COMMENTAIRESÿ: 
COMMENTAIRESÿ: Source directory: D:\Developpements\Github\nelson\
COMMENTAIRESÿ: Scanning for project files
COMMENTAIRESÿ: Retrieving project list for solution D:\Developpements\Github\nelson\NelSon.sln
COMMENTAIRESÿ: Solution directory: D:\Developpements\Github\nelson\
COMMENTAIRESÿ: Intermediate solution project matches count: 124
COMMENTAIRESÿ: modules\main\nelson_gui\NelSon-gui.vcxproj
COMMENTAIRESÿ: modules\main\nelson_adv_cli\NelSon-adv-cli.vcxproj
COMMENTAIRESÿ: modules\main\nelson_cli\NelSon-cli.vcxproj
COMMENTAIRESÿ: modules\interpreter\src\c\nlsInterpreter.vcxproj
COMMENTAIRESÿ: modules\elementary_mathematics\src\c\nlsElementary_mathematics.vcxproj
COMMENTAIRESÿ: modules\error_manager\src\c\nlsError_manager.vcxproj
COMMENTAIRESÿ: modules\stream_manager\src\c\nlsStream_manager.vcxproj
COMMENTAIRESÿ: modules\types\src\c\nlsTypes.vcxproj
COMMENTAIRESÿ: modules\terminal\src\c\nlsTerminal.vcxproj
COMMENTAIRESÿ: modules\engine\src\c\nlsEngine.vcxproj
COMMENTAIRESÿ: modules\elementary_functions\src\c\nlsElementary_functions.vcxproj
COMMENTAIRESÿ: modules\sparse\src\c\nlsSparse.vcxproj
COMMENTAIRESÿ: modules\time\src\c\nlsTime.vcxproj
COMMENTAIRESÿ: modules\time\builtin\c\nlsTime_builtin.vcxproj
COMMENTAIRESÿ: modules\constructors_functions\src\c\nlsConstructors_functions.vcxproj
COMMENTAIRESÿ: modules\constructors_functions\builtin\c\nlsConstructors_functions_builtin.vcxproj
COMMENTAIRESÿ: modules\types\builtin\c\nlsTypes_builtin.vcxproj
COMMENTAIRESÿ: modules\double\builtin\c\nlsDouble_builtin.vcxproj
COMMENTAIRESÿ: modules\double\src\c\nlsDouble.vcxproj
COMMENTAIRESÿ: modules\data_structures\builtin\c\nlsData_structures_builtin.vcxproj
COMMENTAIRESÿ: modules\api_nelson\src\c\nlsApi_nelson.vcxproj
COMMENTAIRESÿ: modules\elementary_functions\builtin\c\nlsElementary_functions_builtin.vcxproj
COMMENTAIRESÿ: modules\single\builtin\c\nlsSingle_builtin.vcxproj
COMMENTAIRESÿ: modules\integer\builtin\c\nlsInteger_builtin.vcxproj
COMMENTAIRESÿ: modules\integer\src\c\nlsInteger.vcxproj
COMMENTAIRESÿ: modules\single\src\c\nlsSingle.vcxproj
COMMENTAIRESÿ: modules\string\src\c\nlsString.vcxproj
COMMENTAIRESÿ: modules\string\builtin\c\nlsString_builtin.vcxproj
COMMENTAIRESÿ: modules\trigonometric_functions\builtin\c\nlsTrigonometric_functions_builtin.vcxproj
COMMENTAIRESÿ: modules\trigonometric_functions\src\c\nlsTrigonometric_functions.vcxproj
COMMENTAIRESÿ: modules\sparse\builtin\c\nlsSparse_builtin.vcxproj
COMMENTAIRESÿ: modules\logical\builtin\c\nlsLogical_builtin.vcxproj
COMMENTAIRESÿ: modules\logical\src\c\nlsLogical.vcxproj
COMMENTAIRESÿ: modules\characters_encoding\src\c\nlsCharacters_encoding.vcxproj
COMMENTAIRESÿ: modules\files_folders_functions\builtin\c\nlsFiles_folders_functions_builtin.vcxproj
COMMENTAIRESÿ: modules\files_folders_functions\src\c\nlsFiles_folders_functions.vcxproj
COMMENTAIRESÿ: modules\os_functions\src\c\nlsOs_functions.vcxproj
COMMENTAIRESÿ: modules\os_functions\builtin\c\nlsOs_functions_builtin.vcxproj
COMMENTAIRESÿ: modules\core\builtin\c\nlsCore_builtin.vcxproj
COMMENTAIRESÿ: modules\core\src\c\nlsCore.vcxproj
COMMENTAIRESÿ: modules\functions_manager\builtin\c\nlsFunctions_manager_builtin.vcxproj
COMMENTAIRESÿ: modules\functions_manager\src\c\nlsFunctions_manager.vcxproj
COMMENTAIRESÿ: modules\memory_manager\builtin\c\nlsMemory_manager_builtin.vcxproj
COMMENTAIRESÿ: modules\memory_manager\src\c\nlsMemory_manager.vcxproj
COMMENTAIRESÿ: modules\console\builtin\c\nlsConsole_builtin.vcxproj
COMMENTAIRESÿ: modules\console\src\c\nlsConsole.vcxproj
COMMENTAIRESÿ: modules\stream_manager\builtin\c\nlsStream_manager_builtin.vcxproj
COMMENTAIRESÿ: modules\error_manager\builtin\c\nlsError_manager_builtin.vcxproj
COMMENTAIRESÿ: modules\overload\src\c\nlsOverload.vcxproj
COMMENTAIRESÿ: modules\data_structures\src\c\nlsData_structures.vcxproj
COMMENTAIRESÿ: modules\interpreter\builtin\c\nlsInterpreter_builtin.vcxproj
COMMENTAIRESÿ: Solution Items
COMMENTAIRESÿ: modules\dynamic_link\src\c\nlsDynamic_link.vcxproj
COMMENTAIRESÿ: modules\dynamic_link\builtin\c\nlsDynamic_link_builtin.vcxproj
COMMENTAIRESÿ: modules\modules_manager\src\c\nlsModules_manager.vcxproj
COMMENTAIRESÿ: modules\modules_manager\builtin\c\nlsModules_manager_builtin.vcxproj
COMMENTAIRESÿ: modules\overload\builtin\c\nlsOverload_builtin.vcxproj
COMMENTAIRESÿ: modules\function_handle\builtin\c\nlsFunction_handle_builtin.vcxproj
COMMENTAIRESÿ: modules\function_handle\src\c\nlsFunction_handle.vcxproj
COMMENTAIRESÿ: modules\engine\builtin\c\nlsEngine_builtin.vcxproj
COMMENTAIRESÿ: modules\random\builtin\c\nlsRandom_builtin.vcxproj
COMMENTAIRESÿ: modules\random\src\c\nlsRandom.vcxproj
COMMENTAIRESÿ: modules\gui\src\c\nlsGui.vcxproj
COMMENTAIRESÿ: modules\gui\builtin\c\nlsGui_builtin.vcxproj
COMMENTAIRESÿ: modules\history_manager\builtin\c\nlsHistory_manager_builtin.vcxproj
COMMENTAIRESÿ: modules\history_manager\src\c\nlsHistory_manager.vcxproj
COMMENTAIRESÿ: modules\help_tools\builtin\c\nlsHelp_tools_builtin.vcxproj
COMMENTAIRESÿ: modules\help_tools\src\c\nlsHelp_tools.vcxproj
COMMENTAIRESÿ: modules\localization\src\c\nlsLocalization.vcxproj
COMMENTAIRESÿ: modules\localization\builtin\c\nlsLocalization_builtin.vcxproj
COMMENTAIRESÿ: modules\i18n\src\c\nlsI18n.vcxproj
COMMENTAIRESÿ: modules\i18n\builtin\c\nlsI18n_builtin.vcxproj
COMMENTAIRESÿ: tools\gettext\generatepo\generatepo.vcxproj
COMMENTAIRESÿ: tools\gettext\generatemo\generatemo.vcxproj
COMMENTAIRESÿ: modules\help_browser\builtin\c\nlsHelp_browser_builtin.vcxproj
COMMENTAIRESÿ: modules\help_browser\src\c\nlsHelp_browser.vcxproj
COMMENTAIRESÿ: tools\buildhelp\buildhelp.vcxproj
COMMENTAIRESÿ: modules\assert_functions\src\c\nlsAssert_functions.vcxproj
COMMENTAIRESÿ: modules\assert_functions\builtin\c\nlsAssert_functions_builtin.vcxproj
COMMENTAIRESÿ: modules\tests_manager\builtin\c\nlsTests_manager_builtin.vcxproj
COMMENTAIRESÿ: modules\tests_manager\src\c\nlsTests_manager.vcxproj
COMMENTAIRESÿ: tools\tests_minimal\run_tests.vcxproj
COMMENTAIRESÿ: modules\linear_algebra\src\c\nlsLinear_algebra.vcxproj
COMMENTAIRESÿ: modules\linear_algebra\builtin\c\nlsLinear_algebra_builtin.vcxproj
COMMENTAIRESÿ: modules\handle\src\c\nlsHandle.vcxproj
COMMENTAIRESÿ: modules\handle\builtin\c\nlsHandle_builtin.vcxproj
COMMENTAIRESÿ: modules\qml_engine\src\c\nlsQml_engine.vcxproj
COMMENTAIRESÿ: modules\qml_engine\builtin\c\nlsQml_engine_builtin.vcxproj
COMMENTAIRESÿ: modules\com_engine\src\c\nlsCom_engine.vcxproj
COMMENTAIRESÿ: modules\com_engine\builtin\c\nlsCom_engine_builtin.vcxproj
COMMENTAIRESÿ: modules\fftw\src\c\nlsFftw.vcxproj
COMMENTAIRESÿ: modules\fftw\builtin\c\nlsFftw_builtin.vcxproj
COMMENTAIRESÿ: modules\f2c\src\c\f2c\nelson_f2c.vcxproj
COMMENTAIRESÿ: modules\f2c\src\c\libf2c\nlsF2c.vcxproj
COMMENTAIRESÿ: modules\slicot\builtin\c\nlsSlicot_builtin.vcxproj
COMMENTAIRESÿ: modules\text_editor\builtin\c\nlsText_editor_builtin.vcxproj
COMMENTAIRESÿ: modules\text_editor\src\c\nlsText_editor.vcxproj
COMMENTAIRESÿ: modules\text_completion\src\c\nlsText_completion.vcxproj
COMMENTAIRESÿ: modules\mpi\src\c\nlsMpi.vcxproj
COMMENTAIRESÿ: modules\mpi\builtin\c\nlsMpi_builtin.vcxproj
COMMENTAIRESÿ: modules\json\builtin\c\nlsJson_builtin.vcxproj
COMMENTAIRESÿ: modules\json\src\c\nlsJson.vcxproj
COMMENTAIRESÿ: modules\audio\src\c\nlsAudio.vcxproj
COMMENTAIRESÿ: modules\audio\builtin\c\nlsAudio_builtin.vcxproj
COMMENTAIRESÿ: modules\nelson_manager\src\c\nlsNelson_manager.vcxproj
COMMENTAIRESÿ: modules\special_functions\src\c\nlsSpecial_functions.vcxproj
COMMENTAIRESÿ: modules\special_functions\builtin\c\nlsSpecial_functions_builtin.vcxproj
COMMENTAIRESÿ: modules\debugger\src\c\nlsDebugger.vcxproj
COMMENTAIRESÿ: modules\debugger\builtin\c\nlsDebugger_builtin.vcxproj
COMMENTAIRESÿ: modules\sio_client\src\c\nlsSio_client.vcxproj
COMMENTAIRESÿ: modules\main\nelson_sio_cli\NelSon-sio-cli.vcxproj
COMMENTAIRESÿ: modules\sio_client\builtin\c\nlsSio_client_builtin.vcxproj
COMMENTAIRESÿ: modules\hdf5\src\c\nlsHdf5.vcxproj
COMMENTAIRESÿ: modules\hdf5\builtin\c\nlsHdf5_builtin.vcxproj
COMMENTAIRESÿ: modules\matio\src\c\nlsMatio.vcxproj
COMMENTAIRESÿ: modules\matio\builtin\c\nlsMatio_builtin.vcxproj
COMMENTAIRESÿ: modules\profiler\src\c\nlsProfiler.vcxproj
COMMENTAIRESÿ: modules\profiler\builtin\c\nlsProfiler_builtin.vcxproj
COMMENTAIRESÿ: modules\slicot\src\c\nlsSlicot.vcxproj
COMMENTAIRESÿ: modules\file_archiver\src\c\nlsFile_archiver.vcxproj
COMMENTAIRESÿ: modules\file_archiver\builtin\c\nlsFile_archiver_builtin.vcxproj
COMMENTAIRESÿ: modules\characters_encoding\builtin\c\nlsCharacters_encoding_builtin.vcxproj
COMMENTAIRESÿ: modules\webtools\src\c\nlsWebtools.vcxproj
COMMENTAIRESÿ: modules\webtools\builtin\c\nlsWebtools_builtin.vcxproj
COMMENTAIRESÿ: Found 123 projects
PROJECT: D:\Developpements\Github\nelson\modules\string\src\c\nlsString.vcxproj
COMMENTAIRESÿ: Deleting variables initialized by previous project:
COMMENTAIRESÿ: 
COMMENTAIRESÿ: Importing environment variables into current scope
COMMENTAIRESÿ: SET_VAR ALLUSERSPROFILE: C:\ProgramData
COMMENTAIRESÿ: SET_VAR APPDATA: C:\Users\allan\AppData\Roaming
COMMENTAIRESÿ: SET_VAR CommonProgramFiles: C:\Program Files (x86)\Common Files
COMMENTAIRESÿ: SET_VAR CommonProgramFiles(x86): C:\Program Files (x86)\Common Files
COMMENTAIRESÿ: SET_VAR CommonProgramW6432: C:\Program Files\Common Files
COMMENTAIRESÿ: SET_VAR COMPUTERNAME: CORE-I7
COMMENTAIRESÿ: SET_VAR ComSpec: C:\Windows\system32\cmd.exe
COMMENTAIRESÿ: SET_VAR DriverData: C:\Windows\System32\Drivers\DriverData
COMMENTAIRESÿ: SET_VAR FPS_BROWSER_APP_PROFILE_STRING: Internet Explorer
COMMENTAIRESÿ: SET_VAR FPS_BROWSER_USER_PROFILE_STRING: Default
COMMENTAIRESÿ: SET_VAR HOMEDRIVE: C:
COMMENTAIRESÿ: SET_VAR HOMEPATH: \Users\allan
COMMENTAIRESÿ: SET_VAR INTEL_LICENSE_FILE: C:\Program Files (x86)\Common Files\Intel\Licenses
COMMENTAIRESÿ: SET_VAR LOCALAPPDATA: C:\Users\allan\AppData\Local
COMMENTAIRESÿ: SET_VAR LOGONSERVER: \\CORE-I7
COMMENTAIRESÿ: SET_VAR MSBuildLoadMicrosoftTargetsReadOnly: true
COMMENTAIRESÿ: SET_VAR MSMPI_BENCHMARKS: C:\Program Files\Microsoft MPI\Benchmarks\
COMMENTAIRESÿ: SET_VAR MSMPI_BIN: C:\Program Files\Microsoft MPI\Bin\
COMMENTAIRESÿ: SET_VAR NUMBER_OF_PROCESSORS: 8
COMMENTAIRESÿ: SET_VAR OneDrive: C:\Users\allan\OneDrive
COMMENTAIRESÿ: SET_VAR OneDriveConsumer: C:\Users\allan\OneDrive
COMMENTAIRESÿ: SET_VAR OS: Windows_NT
COMMENTAIRESÿ: SET_VAR Path: C:\Program Files\Microsoft 
MPI\Bin\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows
\System32\OpenSSH\;C:\WindowsTools\Git\cmd;C:\WindowsTools\Git\mingw64\bin;C:\WindowsTools\Git\usr\bin;C:\Program 
Files\CMake\bin;C:\WindowsTools\LLVM\bin;C:\WindowsTools\Python37\Scripts\;C:\WindowsTools\Python37\;C:\Users\allan\App
Data\Local\Microsoft\WindowsApps;;C:\Users\allan\AppData\Local\Programs\Microsoft VS Code\bin
COMMENTAIRESÿ: SET_VAR PATHEXT: .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL
COMMENTAIRESÿ: SET_VAR PkgDefApplicationConfigFile: 
C:\Users\allan\AppData\Local\Microsoft\VisualStudio\16.0_c04c8306\devenv.exe.config
COMMENTAIRESÿ: SET_VAR PROCESSOR_ARCHITECTURE: x86
COMMENTAIRESÿ: SET_VAR PROCESSOR_ARCHITEW6432: AMD64
COMMENTAIRESÿ: SET_VAR PROCESSOR_IDENTIFIER: Intel64 Family 6 Model 30 Stepping 5, GenuineIntel
COMMENTAIRESÿ: SET_VAR PROCESSOR_LEVEL: 6
COMMENTAIRESÿ: SET_VAR PROCESSOR_REVISION: 1e05
COMMENTAIRESÿ: SET_VAR ProgramData: C:\ProgramData
COMMENTAIRESÿ: SET_VAR ProgramFiles: C:\Program Files (x86)
COMMENTAIRESÿ: SET_VAR ProgramFiles(x86): C:\Program Files (x86)
COMMENTAIRESÿ: SET_VAR ProgramW6432: C:\Program Files
COMMENTAIRESÿ: SET_VAR PROMPT: $P$G
COMMENTAIRESÿ: SET_VAR PSExecutionPolicyPreference: Unrestricted
COMMENTAIRESÿ: SET_VAR PSModulePath: C:\Program 
Files\WindowsPowerShell\Modules;C:\Users\allan\Documents\WindowsPowerShell\Modules;C:\Program Files 
(x86)\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules
COMMENTAIRESÿ: SET_VAR PUBLIC: C:\Users\Public
COMMENTAIRESÿ: SET_VAR QTDIR: D:\Developpements\Qt\5.13.1\msvc2017_64
COMMENTAIRESÿ: SET_VAR QTDIR32: D:\Developpements\Qt\5.13.1\msvc2017
COMMENTAIRESÿ: SET_VAR QTDIR64: D:\Developpements\Qt\5.13.1\msvc2017_64
COMMENTAIRESÿ: SET_VAR QtMsBuild: C:\Users\allan\AppData\Local\QtMsBuild
COMMENTAIRESÿ: SET_VAR ServiceHubUniqueLogDir: 062DC841
COMMENTAIRESÿ: SET_VAR SESSIONNAME: Console
COMMENTAIRESÿ: SET_VAR SystemDrive: C:
COMMENTAIRESÿ: SET_VAR SystemRoot: C:\Windows
COMMENTAIRESÿ: SET_VAR TEMP: F:\TEMP
COMMENTAIRESÿ: SET_VAR ThreadedWaitDialogDpiContext: -4
COMMENTAIRESÿ: SET_VAR TMP: F:\TEMP
COMMENTAIRESÿ: SET_VAR USERDOMAIN: CORE-I7
COMMENTAIRESÿ: SET_VAR USERDOMAIN_ROAMINGPROFILE: CORE-I7
COMMENTAIRESÿ: SET_VAR USERNAME: allan
COMMENTAIRESÿ: SET_VAR USERPROFILE: C:\Users\allan
COMMENTAIRESÿ: SET_VAR VBOX_MSI_INSTALL_PATH: C:\Program Files\Oracle\VirtualBox\
COMMENTAIRESÿ: SET_VAR VisualStudioDir: C:\Users\allan\Documents\Visual Studio 2019
COMMENTAIRESÿ: SET_VAR VisualStudioEdition: Microsoft Visual Studio Professional 2019
COMMENTAIRESÿ: SET_VAR VisualStudioVersion: 16.0
COMMENTAIRESÿ: SET_VAR VS2019INSTALLDIR: C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional
COMMENTAIRESÿ: SET_VAR VSAPPIDDIR: C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\Common7\IDE\
COMMENTAIRESÿ: SET_VAR VSAPPIDNAME: devenv.exe
COMMENTAIRESÿ: SET_VAR VSLANG: 1036
COMMENTAIRESÿ: SET_VAR VSSKUEDITION: Professional
COMMENTAIRESÿ: SET_VAR windir: C:\Windows
COMMENTAIRESÿ: SET_VAR MSBuildProjectFullPath: D:\Developpements\Github\nelson\modules\string\src\c\nlsString.vcxproj
COMMENTAIRESÿ: SET_VAR ProjectDir: D:\Developpements\Github\nelson\modules\string\src\c\
COMMENTAIRESÿ: SET_VAR MSBuildProjectExtension: .vcxproj
COMMENTAIRESÿ: SET_VAR MSBuildProjectFile: nlsString.vcxproj
COMMENTAIRESÿ: SET_VAR MSBuildProjectName: nlsString
COMMENTAIRESÿ: SET_VAR MSBuildProjectDirectory: D:\Developpements\Github\nelson\modules\string\src\c\
COMMENTAIRESÿ: SET_VAR MSBuildProgramFiles32: C:\Program Files (x86)
COMMENTAIRESÿ: SET_VAR ProjectName: nlsString
COMMENTAIRESÿ: SET_VAR TargetName: nlsString
COMMENTAIRESÿ: SET_VAR UserRootDir: C:\Users\allan\AppData\Local\Microsoft\MSBuild\v4.0
COMMENTAIRESÿ: SET_VAR VisualStudioVersion: 16.0
COMMENTAIRESÿ: SET_VAR MSBuildToolsVersion: 16.0
COMMENTAIRESÿ: Retrieving project list for solution D:\Developpements\Github\nelson\NelSon.sln
COMMENTAIRESÿ: Solution directory: D:\Developpements\Github\nelson\
COMMENTAIRESÿ: Intermediate solution project matches count: 124
COMMENTAIRESÿ: modules\main\nelson_gui\NelSon-gui.vcxproj
COMMENTAIRESÿ: modules\main\nelson_adv_cli\NelSon-adv-cli.vcxproj
COMMENTAIRESÿ: modules\main\nelson_cli\NelSon-cli.vcxproj
COMMENTAIRESÿ: modules\interpreter\src\c\nlsInterpreter.vcxproj
COMMENTAIRESÿ: modules\elementary_mathematics\src\c\nlsElementary_mathematics.vcxproj
COMMENTAIRESÿ: modules\error_manager\src\c\nlsError_manager.vcxproj
COMMENTAIRESÿ: modules\stream_manager\src\c\nlsStream_manager.vcxproj
COMMENTAIRESÿ: modules\types\src\c\nlsTypes.vcxproj
COMMENTAIRESÿ: modules\terminal\src\c\nlsTerminal.vcxproj
COMMENTAIRESÿ: modules\engine\src\c\nlsEngine.vcxproj
COMMENTAIRESÿ: modules\elementary_functions\src\c\nlsElementary_functions.vcxproj
COMMENTAIRESÿ: modules\sparse\src\c\nlsSparse.vcxproj
COMMENTAIRESÿ: modules\time\src\c\nlsTime.vcxproj
COMMENTAIRESÿ: modules\time\builtin\c\nlsTime_builtin.vcxproj
COMMENTAIRESÿ: modules\constructors_functions\src\c\nlsConstructors_functions.vcxproj
COMMENTAIRESÿ: modules\constructors_functions\builtin\c\nlsConstructors_functions_builtin.vcxproj
COMMENTAIRESÿ: modules\types\builtin\c\nlsTypes_builtin.vcxproj
COMMENTAIRESÿ: modules\double\builtin\c\nlsDouble_builtin.vcxproj
COMMENTAIRESÿ: modules\double\src\c\nlsDouble.vcxproj
COMMENTAIRESÿ: modules\data_structures\builtin\c\nlsData_structures_builtin.vcxproj
COMMENTAIRESÿ: modules\api_nelson\src\c\nlsApi_nelson.vcxproj
COMMENTAIRESÿ: modules\elementary_functions\builtin\c\nlsElementary_functions_builtin.vcxproj
COMMENTAIRESÿ: modules\single\builtin\c\nlsSingle_builtin.vcxproj
COMMENTAIRESÿ: modules\integer\builtin\c\nlsInteger_builtin.vcxproj
COMMENTAIRESÿ: modules\integer\src\c\nlsInteger.vcxproj
COMMENTAIRESÿ: modules\single\src\c\nlsSingle.vcxproj
COMMENTAIRESÿ: modules\string\src\c\nlsString.vcxproj
COMMENTAIRESÿ: modules\string\builtin\c\nlsString_builtin.vcxproj
COMMENTAIRESÿ: modules\trigonometric_functions\builtin\c\nlsTrigonometric_functions_builtin.vcxproj
COMMENTAIRESÿ: modules\trigonometric_functions\src\c\nlsTrigonometric_functions.vcxproj
COMMENTAIRESÿ: modules\sparse\builtin\c\nlsSparse_builtin.vcxproj
COMMENTAIRESÿ: modules\logical\builtin\c\nlsLogical_builtin.vcxproj
COMMENTAIRESÿ: modules\logical\src\c\nlsLogical.vcxproj
COMMENTAIRESÿ: modules\characters_encoding\src\c\nlsCharacters_encoding.vcxproj
COMMENTAIRESÿ: modules\files_folders_functions\builtin\c\nlsFiles_folders_functions_builtin.vcxproj
COMMENTAIRESÿ: modules\files_folders_functions\src\c\nlsFiles_folders_functions.vcxproj
COMMENTAIRESÿ: modules\os_functions\src\c\nlsOs_functions.vcxproj
COMMENTAIRESÿ: modules\os_functions\builtin\c\nlsOs_functions_builtin.vcxproj
COMMENTAIRESÿ: modules\core\builtin\c\nlsCore_builtin.vcxproj
COMMENTAIRESÿ: modules\core\src\c\nlsCore.vcxproj
COMMENTAIRESÿ: modules\functions_manager\builtin\c\nlsFunctions_manager_builtin.vcxproj
COMMENTAIRESÿ: modules\functions_manager\src\c\nlsFunctions_manager.vcxproj
COMMENTAIRESÿ: modules\memory_manager\builtin\c\nlsMemory_manager_builtin.vcxproj
COMMENTAIRESÿ: modules\memory_manager\src\c\nlsMemory_manager.vcxproj
COMMENTAIRESÿ: modules\console\builtin\c\nlsConsole_builtin.vcxproj
COMMENTAIRESÿ: modules\console\src\c\nlsConsole.vcxproj
COMMENTAIRESÿ: modules\stream_manager\builtin\c\nlsStream_manager_builtin.vcxproj
COMMENTAIRESÿ: modules\error_manager\builtin\c\nlsError_manager_builtin.vcxproj
COMMENTAIRESÿ: modules\overload\src\c\nlsOverload.vcxproj
COMMENTAIRESÿ: modules\data_structures\src\c\nlsData_structures.vcxproj
COMMENTAIRESÿ: modules\interpreter\builtin\c\nlsInterpreter_builtin.vcxproj
COMMENTAIRESÿ: Solution Items
COMMENTAIRESÿ: modules\dynamic_link\src\c\nlsDynamic_link.vcxproj
COMMENTAIRESÿ: modules\dynamic_link\builtin\c\nlsDynamic_link_builtin.vcxproj
COMMENTAIRESÿ: modules\modules_manager\src\c\nlsModules_manager.vcxproj
COMMENTAIRESÿ: modules\modules_manager\builtin\c\nlsModules_manager_builtin.vcxproj
COMMENTAIRESÿ: modules\overload\builtin\c\nlsOverload_builtin.vcxproj
COMMENTAIRESÿ: modules\function_handle\builtin\c\nlsFunction_handle_builtin.vcxproj
COMMENTAIRESÿ: modules\function_handle\src\c\nlsFunction_handle.vcxproj
COMMENTAIRESÿ: modules\engine\builtin\c\nlsEngine_builtin.vcxproj
COMMENTAIRESÿ: modules\random\builtin\c\nlsRandom_builtin.vcxproj
COMMENTAIRESÿ: modules\random\src\c\nlsRandom.vcxproj
COMMENTAIRESÿ: modules\gui\src\c\nlsGui.vcxproj
COMMENTAIRESÿ: modules\gui\builtin\c\nlsGui_builtin.vcxproj
COMMENTAIRESÿ: modules\history_manager\builtin\c\nlsHistory_manager_builtin.vcxproj
COMMENTAIRESÿ: modules\history_manager\src\c\nlsHistory_manager.vcxproj
COMMENTAIRESÿ: modules\help_tools\builtin\c\nlsHelp_tools_builtin.vcxproj
COMMENTAIRESÿ: modules\help_tools\src\c\nlsHelp_tools.vcxproj
COMMENTAIRESÿ: modules\localization\src\c\nlsLocalization.vcxproj
COMMENTAIRESÿ: modules\localization\builtin\c\nlsLocalization_builtin.vcxproj
COMMENTAIRESÿ: modules\i18n\src\c\nlsI18n.vcxproj
COMMENTAIRESÿ: modules\i18n\builtin\c\nlsI18n_builtin.vcxproj
COMMENTAIRESÿ: tools\gettext\generatepo\generatepo.vcxproj
COMMENTAIRESÿ: tools\gettext\generatemo\generatemo.vcxproj
COMMENTAIRESÿ: modules\help_browser\builtin\c\nlsHelp_browser_builtin.vcxproj
COMMENTAIRESÿ: modules\help_browser\src\c\nlsHelp_browser.vcxproj
COMMENTAIRESÿ: tools\buildhelp\buildhelp.vcxproj
COMMENTAIRESÿ: modules\assert_functions\src\c\nlsAssert_functions.vcxproj
COMMENTAIRESÿ: modules\assert_functions\builtin\c\nlsAssert_functions_builtin.vcxproj
COMMENTAIRESÿ: modules\tests_manager\builtin\c\nlsTests_manager_builtin.vcxproj
COMMENTAIRESÿ: modules\tests_manager\src\c\nlsTests_manager.vcxproj
COMMENTAIRESÿ: tools\tests_minimal\run_tests.vcxproj
COMMENTAIRESÿ: modules\linear_algebra\src\c\nlsLinear_algebra.vcxproj
COMMENTAIRESÿ: modules\linear_algebra\builtin\c\nlsLinear_algebra_builtin.vcxproj
COMMENTAIRESÿ: modules\handle\src\c\nlsHandle.vcxproj
COMMENTAIRESÿ: modules\handle\builtin\c\nlsHandle_builtin.vcxproj
COMMENTAIRESÿ: modules\qml_engine\src\c\nlsQml_engine.vcxproj
COMMENTAIRESÿ: modules\qml_engine\builtin\c\nlsQml_engine_builtin.vcxproj
COMMENTAIRESÿ: modules\com_engine\src\c\nlsCom_engine.vcxproj
COMMENTAIRESÿ: modules\com_engine\builtin\c\nlsCom_engine_builtin.vcxproj
COMMENTAIRESÿ: modules\fftw\src\c\nlsFftw.vcxproj
COMMENTAIRESÿ: modules\fftw\builtin\c\nlsFftw_builtin.vcxproj
COMMENTAIRESÿ: modules\f2c\src\c\f2c\nelson_f2c.vcxproj
COMMENTAIRESÿ: modules\f2c\src\c\libf2c\nlsF2c.vcxproj
COMMENTAIRESÿ: modules\slicot\builtin\c\nlsSlicot_builtin.vcxproj
COMMENTAIRESÿ: modules\text_editor\builtin\c\nlsText_editor_builtin.vcxproj
COMMENTAIRESÿ: modules\text_editor\src\c\nlsText_editor.vcxproj
COMMENTAIRESÿ: modules\text_completion\src\c\nlsText_completion.vcxproj
COMMENTAIRESÿ: modules\mpi\src\c\nlsMpi.vcxproj
COMMENTAIRESÿ: modules\mpi\builtin\c\nlsMpi_builtin.vcxproj
COMMENTAIRESÿ: modules\json\builtin\c\nlsJson_builtin.vcxproj
COMMENTAIRESÿ: modules\json\src\c\nlsJson.vcxproj
COMMENTAIRESÿ: modules\audio\src\c\nlsAudio.vcxproj
COMMENTAIRESÿ: modules\audio\builtin\c\nlsAudio_builtin.vcxproj
COMMENTAIRESÿ: modules\nelson_manager\src\c\nlsNelson_manager.vcxproj
COMMENTAIRESÿ: modules\special_functions\src\c\nlsSpecial_functions.vcxproj
COMMENTAIRESÿ: modules\special_functions\builtin\c\nlsSpecial_functions_builtin.vcxproj
COMMENTAIRESÿ: modules\debugger\src\c\nlsDebugger.vcxproj
COMMENTAIRESÿ: modules\debugger\builtin\c\nlsDebugger_builtin.vcxproj
COMMENTAIRESÿ: modules\sio_client\src\c\nlsSio_client.vcxproj
COMMENTAIRESÿ: modules\main\nelson_sio_cli\NelSon-sio-cli.vcxproj
COMMENTAIRESÿ: modules\sio_client\builtin\c\nlsSio_client_builtin.vcxproj
COMMENTAIRESÿ: modules\hdf5\src\c\nlsHdf5.vcxproj
COMMENTAIRESÿ: modules\hdf5\builtin\c\nlsHdf5_builtin.vcxproj
COMMENTAIRESÿ: modules\matio\src\c\nlsMatio.vcxproj
COMMENTAIRESÿ: modules\matio\builtin\c\nlsMatio_builtin.vcxproj
COMMENTAIRESÿ: modules\profiler\src\c\nlsProfiler.vcxproj
COMMENTAIRESÿ: modules\profiler\builtin\c\nlsProfiler_builtin.vcxproj
COMMENTAIRESÿ: modules\slicot\src\c\nlsSlicot.vcxproj
COMMENTAIRESÿ: modules\file_archiver\src\c\nlsFile_archiver.vcxproj
COMMENTAIRESÿ: modules\file_archiver\builtin\c\nlsFile_archiver_builtin.vcxproj
COMMENTAIRESÿ: modules\characters_encoding\builtin\c\nlsCharacters_encoding_builtin.vcxproj
COMMENTAIRESÿ: modules\webtools\src\c\nlsWebtools.vcxproj
COMMENTAIRESÿ: modules\webtools\builtin\c\nlsWebtools_builtin.vcxproj
COMMENTAIRESÿ: SET_VAR SolutionDir: D:\Developpements\Github\nelson\
COMMENTAIRESÿ: SET_VAR SolutionName: NelSon
COMMENTAIRESÿ: SET_VAR Configuration: Debug
COMMENTAIRESÿ: SET_VAR Platform: x64
COMMENTAIRESÿ: 
Sanitizing D:\Developpements\Github\nelson\modules\string\src\c\nlsString.vcxproj
COMMENTAIRESÿ: SET_VAR MSBuildThisFileFullPath: D:\Developpements\Github\nelson\modules\string\src\c\nlsString.vcxproj
COMMENTAIRESÿ: SET_VAR MSBuildThisFileExtension: .vcxproj
COMMENTAIRESÿ: SET_VAR MSBuildThisFile: nlsString.vcxproj
COMMENTAIRESÿ: SET_VAR MSBuildThisFileName: nlsString
COMMENTAIRESÿ: SET_VAR MSBuildThisFileDirectory: D:\Developpements\Github\nelson\modules\string\src\c\
COMMENTAIRESÿ: [CONTEXT] item namespace = @(ProjectConfiguration)
COMMENTAIRESÿ: SET_VAR CPT_PROJITEM_ProjectConfiguration: 
COMMENTAIRESÿ: [CONTEXT] item namespace = @()
COMMENTAIRESÿ: SET_VAR Configuration: Debug
COMMENTAIRESÿ: SET_VAR Platform: x64
COMMENTAIRESÿ: SET_VAR ProjectGuid: {601EBA38-309B-4B7B-919E-E736690A82B5}
COMMENTAIRESÿ: SET_VAR Keyword: Win32Proj
COMMENTAIRESÿ: SET_VAR RootNamespace: nlsString
COMMENTAIRESÿ: SET_VAR WindowsTargetPlatformVersion: 10.0
COMMENTAIRESÿ: Could not find property sheet \Microsoft.Cpp.Default.props
COMMENTAIRESÿ: SET_VAR ConfigurationType: DynamicLibrary
COMMENTAIRESÿ: SET_VAR UseDebugLibraries: true
COMMENTAIRESÿ: SET_VAR PlatformToolset: v142
COMMENTAIRESÿ: SET_VAR CharacterSet: Unicode
COMMENTAIRESÿ: Could not find property sheet \Microsoft.Cpp.props
COMMENTAIRESÿ: SET_VAR TargetName: libnlsString
COMMENTAIRESÿ: SET_VAR LinkIncremental: true
COMMENTAIRESÿ: SET_VAR OutDir: D:\Developpements\Github\nelson\bin//
COMMENTAIRESÿ: [CONTEXT] item namespace = @(ClCompile)
COMMENTAIRESÿ: [CONTEXT] propSet: PrecompiledHeader = 
COMMENTAIRESÿ: [CONTEXT] propSet: WarningLevel = Level3
COMMENTAIRESÿ: [CONTEXT] propSet: Optimization = Disabled
COMMENTAIRESÿ: [CONTEXT] propSet: PreprocessorDefinitions = WIN32;_DEBUG;_WINDOWS;_USRDLL;NLSSTRING_EXPORTS;
COMMENTAIRESÿ: [CONTEXT] propSet: SDLCheck = true
COMMENTAIRESÿ: [CONTEXT] propSet: AdditionalIncludeDirectories = 
D:\Developpements\Github\nelson\modules/string/src/include;D:\Developpements\Github\nelson\modules/interpreter/src/incl
ude;D:\Developpements\Github\nelson\modules/types/src/include;D:\Developpements\Github\nelson\modules/stream_manager/sr
c/include;D:\Developpements\Github\nelson\modules/elementary_functions/src/include;D:\Developpements\Github\nelson\modu
les/elementary_mathematics/src/include;D:\Developpements\Github\nelson\modules/error_manager/src/include;D:\Developpeme
nts\Github\nelson\modules/data_structures/src/include;D:\Developpements\Github\nelson\modules/characters_encoding/src/i
nclude;D:\Developpements\Github\nelson\modules/i18n/src/include;D:\Developpements\Github\nelson\../NelSon-thirdparty-/E
igen;D:\Developpements\Github\nelson\../NelSon-thirdparty-/Boost
COMMENTAIRESÿ: [CONTEXT] propSet: OpenMPSupport = true
COMMENTAIRESÿ: [CONTEXT] item namespace = @()
COMMENTAIRESÿ: [CONTEXT] item namespace = @(Link)
COMMENTAIRESÿ: [CONTEXT] propSet: SubSystem = Windows
COMMENTAIRESÿ: [CONTEXT] propSet: GenerateDebugInformation = true
COMMENTAIRESÿ: [CONTEXT] propSet: AdditionalLibraryDirectories = 
D:\Developpements\Github\nelson\../NelSon-thirdparty-/Boost/lib
COMMENTAIRESÿ: [CONTEXT] item namespace = @()
COMMENTAIRESÿ: [CONTEXT] item namespace = @(ClCompile)
COMMENTAIRESÿ: SET_VAR CPT_PROJITEM_ClCompile: 
COMMENTAIRESÿ: [CONTEXT] item namespace = @()
COMMENTAIRESÿ: [CONTEXT] item namespace = @(ClInclude)
COMMENTAIRESÿ: SET_VAR CPT_PROJITEM_ClInclude: 
COMMENTAIRESÿ: [CONTEXT] item namespace = @()
COMMENTAIRESÿ: [CONTEXT] item namespace = @(ProjectReference)
COMMENTAIRESÿ: SET_VAR CPT_PROJITEM_ProjectReference: 
COMMENTAIRESÿ: [CONTEXT] item namespace = @()
COMMENTAIRESÿ: [CONTEXT] item namespace = @(Text)
COMMENTAIRESÿ: SET_VAR CPT_PROJITEM_Text: 
COMMENTAIRESÿ: [CONTEXT] item namespace = @()
COMMENTAIRESÿ: [CONTEXT] item namespace = @(None)
COMMENTAIRESÿ: SET_VAR CPT_PROJITEM_None: 
COMMENTAIRESÿ: [CONTEXT] item namespace = @()
COMMENTAIRESÿ: [CONTEXT] item namespace = @(ResourceCompile)
COMMENTAIRESÿ: SET_VAR CPT_PROJITEM_ResourceCompile: 
COMMENTAIRESÿ: [CONTEXT] item namespace = @()
COMMENTAIRESÿ: Could not find property sheet \Microsoft.Cpp.targets
COMMENTAIRESÿ: Platform toolset: v142
COMMENTAIRESÿ: [CONTEXT] item namespace = @(ClCompile)
COMMENTAIRESÿ: Force includes:
COMMENTAIRESÿ:   
COMMENTAIRESÿ: 
COMMENTAIRESÿ: Preprocessor definitions:
COMMENTAIRESÿ:   "-DUNICODE"
COMMENTAIRESÿ:   "-D_UNICODE"
COMMENTAIRESÿ:   "-D_MT"
COMMENTAIRESÿ:   "-D_DLL"
COMMENTAIRESÿ:   "-DWIN32"
COMMENTAIRESÿ:   "-D_DEBUG"
COMMENTAIRESÿ:   "-D_WINDOWS"
COMMENTAIRESÿ:   "-D_USRDLL"
COMMENTAIRESÿ:   "-DNLSSTRING_EXPORTS"
COMMENTAIRESÿ:   "-D_DEBUG_FUNCTIONAL_MACHINERY"
COMMENTAIRESÿ: 
COMMENTAIRESÿ: Additional include directories:
COMMENTAIRESÿ:   D:\Developpements\Github\nelson\modules/string/src/include
COMMENTAIRESÿ:   D:\Developpements\Github\nelson\modules/interpreter/src/include
COMMENTAIRESÿ:   D:\Developpements\Github\nelson\modules/types/src/include
COMMENTAIRESÿ:   D:\Developpements\Github\nelson\modules/stream_manager/src/include
COMMENTAIRESÿ:   D:\Developpements\Github\nelson\modules/elementary_functions/src/include
COMMENTAIRESÿ:   D:\Developpements\Github\nelson\modules/elementary_mathematics/src/include
COMMENTAIRESÿ:   D:\Developpements\Github\nelson\modules/error_manager/src/include
COMMENTAIRESÿ:   D:\Developpements\Github\nelson\modules/data_structures/src/include
COMMENTAIRESÿ:   D:\Developpements\Github\nelson\modules/characters_encoding/src/include
COMMENTAIRESÿ:   D:\Developpements\Github\nelson\modules/i18n/src/include
COMMENTAIRESÿ: 
COMMENTAIRESÿ: Detected (vswhere) VisualStudio installation path: C:\Program Files (x86)\Microsoft Visual 
Studio\2019\Professional
COMMENTAIRESÿ: Visual Studio location: C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional
COMMENTAIRESÿ: Detected (vswhere) VisualStudio installation path: C:\Program Files (x86)\Microsoft Visual 
Studio\2019\Professional
COMMENTAIRESÿ: MSCVER: 14.23.28105
COMMENTAIRESÿ: WinSDK version: 10.0
COMMENTAIRESÿ: Include directories:
COMMENTAIRESÿ:   C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\VC\Tools\MSVC\14.23.28105\include
COMMENTAIRESÿ:   C:\Program Files (x86)\Microsoft Visual 
Studio\2019\Professional\VC\Tools\MSVC\14.23.28105\atlmfc\include
COMMENTAIRESÿ:   C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\VC\Auxiliary\VS\include
COMMENTAIRESÿ:   C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt
COMMENTAIRESÿ:   C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\um
COMMENTAIRESÿ:   C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\shared
COMMENTAIRESÿ:   C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\winrt
COMMENTAIRESÿ:   C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\cppwinrt
COMMENTAIRESÿ: 
COMMENTAIRESÿ: PCH not enabled for this project!
COMMENTAIRESÿ: Processing 23 cpps
COMMENTAIRESÿ: INVOKE: "\clang-tidy.exe" 
"D:\Developpements\Github\nelson\modules\string\src\cpp\ConvertStringsToChars.cpp" -checks=-*, -header-filter=".*" 
-quiet -fix-errors -- -isystem"C:\Program Files (x86)\Microsoft Visual 
Studio\2019\Professional\VC\Tools\MSVC\14.23.28105\include" -isystem"C:\Program Files (x86)\Microsoft Visual 
Studio\2019\Professional\VC\Tools\MSVC\14.23.28105\atlmfc\include" -isystem"C:\Program Files (x86)\Microsoft Visual 
Studio\2019\Professional\VC\Auxiliary\VS\include" -isystem"C:\Program Files (x86)\Windows 
Kits\10\Include\10.0.18362.0\ucrt" -isystem"C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\um" 
-isystem"C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\shared" -isystem"C:\Program Files (x86)\Windows 
Kits\10\Include\10.0.18362.0\winrt" -isystem"C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\cppwinrt" 
-I"D:\Developpements\Github\nelson\modules/string/src/include" 
-I"D:\Developpements\Github\nelson\modules/interpreter/src/include" 
-I"D:\Developpements\Github\nelson\modules/types/src/include" 
-I"D:\Developpements\Github\nelson\modules/stream_manager/src/include" 
-I"D:\Developpements\Github\nelson\modules/elementary_functions/src/include" 
-I"D:\Developpements\Github\nelson\modules/elementary_mathematics/src/include" 
-I"D:\Developpements\Github\nelson\modules/error_manager/src/include" 
-I"D:\Developpements\Github\nelson\modules/data_structures/src/include" 
-I"D:\Developpements\Github\nelson\modules/characters_encoding/src/include" 
-I"D:\Developpements\Github\nelson\modules/i18n/src/include" -std=c++14 -Wall -fms-compatibility-version=19.10 
-Wmicrosoft -Wno-invalid-token-paste -Wno-unknown-pragmas -Wno-unused-value "-DUNICODE" "-D_UNICODE" "-D_MT" "-D_DLL" 
"-DWIN32" "-D_DEBUG" "-D_WINDOWS" "-D_USRDLL" "-DNLSSTRING_EXPORTS" "-D_DEBUG_FUNCTIONAL_MACHINERY" -x c++
23: D:\Developpements\Github\nelson\modules\string\src\cpp\ConvertStringsToChars.cpp
Error: no checks enabled.
USAGE: clang-tidy.exe [options] <source0> [... <sourceN>]
OPTIONS:
Generic Options:
  -help                         - Display available options (-help-hidden for more)
  -version                      - Display the version of this program
clang-tidy options:
  -checks=<string>              - 
                                  Comma-separated list of globs with optional '-'
                                  prefix. Globs are processed in order of
                                  appearance in the list. Globs without '-'
                                  prefix add checks with matching names to the
                                  set, globs with the '-' prefix remove checks
                                  with matching names from the set of enabled
                                  checks. This option's value is appended to the
                                  value of the 'Checks' option in .clang-tidy
                                  file, if any.
  -config=<string>              - 
                                  Specifies a configuration in YAML/JSON format:
                                    -config="{Checks: '*',
                                              CheckOptions: [{key: x,
                                                              value: y}]}"
                                  When the value is empty, clang-tidy will
                                  attempt to find a file named .clang-tidy for
                                  each source file in its parent directories.
  -dump-config                  - 
                                  Dumps configuration in the YAML format to
                                  stdout. This option can be used along with a
                                  file name (and '--' if the file is outside of a
                                  project with configured compilation database).
                                  The configuration used for this file will be
                                  printed.
                                  Use along with -checks=* to include
                                  configuration of all checks.
  -enable-check-profile         - 
                                  Enable per-check timing profiles, and print a
                                  report to stderr.
  -explain-config               - 
                                  For each enabled check explains, where it is
                                  enabled, i.e. in clang-tidy binary, command
                                  line or a specific configuration file.
  -export-fixes=<filename>      - 
                                  YAML file to store suggested fixes in. The
                                  stored fixes can be applied to the input source
                                  code with clang-apply-replacements.
  -extra-arg=<string>           - Additional argument to append to the compiler command line
  -extra-arg-before=<string>    - Additional argument to prepend to the compiler command line
  -fix                          - 
                                  Apply suggested fixes. Without -fix-errors
                                  clang-tidy will bail out if any compilation
                                  errors were found.
  -fix-errors                   - 
                                  Apply suggested fixes even if compilation
                                  errors were found. If compiler errors have
                                  attached fix-its, clang-tidy will apply them as
                                  well.
  -format-style=<string>        - 
                                  Style for formatting code around applied fixes:
                                    - 'none' (default) turns off formatting
                                    - 'file' (literally 'file', not a placeholder)
                                      uses .clang-format file in the closest parent
                                      directory
                                    - '{ <json> }' specifies options inline, e.g.
                                      -format-style='{BasedOnStyle: llvm, IndentWidth: 8}'
                                    - 'llvm', 'google', 'webkit', 'mozilla'
                                  See clang-format documentation for the up-to-date
                                  information about formatting styles and options.
                                  This option overrides the 'FormatStyle` option in
                                  .clang-tidy file, if any.
  -header-filter=<string>       - 
                                  Regular expression matching the names of the
                                  headers to output diagnostics from. Diagnostics
                                  from the main file of each translation unit are
                                  always displayed.
                                  Can be used together with -line-filter.
                                  This option overrides the 'HeaderFilter' option
                                  in .clang-tidy file, if any.
  -line-filter=<string>         - 
                                  List of files with line ranges to filter the
                                  warnings. Can be used together with
                                  -header-filter. The format of the list is a
                                  JSON array of objects:
                                    [
                                      {"name":"file1.cpp","lines":[[1,3],[5,7]]},
                                      {"name":"file2.h"}
                                    ]
  -list-checks                  - 
                                  List all enabled checks and exit. Use with
                                  -checks=* to list all available checks.
  -p=<string>                   - Build path
  -quiet                        - 
                                  Run clang-tidy in quiet mode. This suppresses
                                  printing statistics about ignored warnings and
                                  warnings treated as errors if the respective
                                  options are specified.
  -store-check-profile=<prefix> - 
                                  By default reports are printed in tabulated
                                  format to stderr. When this option is passed,
                                  these per-TU profiles are instead stored as JSON.
  -system-headers               - Display the errors from system headers.
  -vfsoverlay=<filename>        - 
                                  Overlay the virtual filesystem described by file
                                  over the real file system.
  -warnings-as-errors=<string>  - 
                                  Upgrades warnings to errors. Same format as
                                  '-checks'.
                                  This option's value is appended to the value of
                                  the 'WarningsAsErrors' option in .clang-tidy
                                  file, if any.

Got errors.
COMMENTAIRESÿ: Cleaning up PCH temporaries:
COMMENTAIRESÿ: 

--- CLANG TIDY-FIX FINISHED ---
hero101111 commented 5 years ago

Hello again,

We are sorry to hear that the issue is still manifesting. We're looking into what went wrong in the fix... In the meantime, you should be able to workaround the bug by just opening the Settings > Tidy > Predefined Checks [Select] window and simply closing it.

Let us know if this unblocks your scenario. We'll update the thread as we make progress regarding the fix.

Warm regards, Gabriel.

Nelson-numerical-software commented 5 years ago

Hello again,

We are sorry to hear that the issue is still manifesting. We're looking into what went wrong in the fix... In the meantime, you should be able to workaround the bug by just opening the Settings > Tidy > Predefined Checks [Select] window and simply closing it.

Let us know if this unblocks your scenario. We'll update the thread as we make progress regarding the fix.

Warm regards, Gabriel.

Thanks for your workaround :) It is enough for me until a true fix. Thanks for your usefull plugin

hprica commented 4 years ago

The issue was fixed in v5.4 https://clangpowertools.com/CHANGELOG.html

bo3b commented 2 years ago

I'm seeing this error as well. Running version 8.4.0.148 of Clang Power Tools.

Deleted entire ClangPowerTools under %appdata%

Redownload and Set LLVM to 12.0.1

Setting UseChecksFrom: PredefinedChecks does not fix it. The drop down changes to TidyFile, but I still get the error.

.clang-tidy file is one directory higher than the file being Tidied.

--- CLANG TIDY STARTED ---

VERBOSE: Current Clang Power Tools VSIX version: 8.4.0.148
VERBOSE: Loaded assembly C:\Program Files (x86)\Microsoft Visual 
Studio\2019\Community\MSBuild\Current\Bin\Microsoft.Build.Utilities.Core.dll
VERBOSE: clang-build.ps1 invocation args: 
  aVcxprojToCompile = C:\Users\bo3b\Documents\code\geo-11\DirectX11\DirectX11.vcxproj 
  aCppToCompile = C:\Users\bo3b\Documents\code\geo-11\DirectX11\HackerDevice.cpp 
  aVcxprojConfigPlatform = Release|x64 
  aClangCompileFlags = -Wall -fms-compatibility-version=19.10 -Wmicrosoft -Wno-invalid-token-paste -Wno-unknown-pragmas
 -Wno-unused-value 
  Verbose = True 
  aTidyFlags = .clang-tidy 
  aTidyHeaderFilter = .* 
  aVisualStudioVersion = 2019 
  aSolutionsPath = C:\Users\bo3b\Documents\code\geo-11\StereovisionHacks.sln 
VERBOSE: CPU logical core count: 8
VERBOSE: Scanning for solution files
VERBOSE: Caching solution file \\?\C:\Users\bo3b\Documents\code\geo-11\StereovisionHacks.sln
VERBOSE: Solution full path: C:\Users\bo3b\Documents\code\geo-11\StereovisionHacks.sln
VERBOSE: Solution data length: 13298
VERBOSE: Solution file paths:
VERBOSE:   C:\Users\bo3b\Documents\code\geo-11\StereovisionHacks.sln
VERBOSE: 
VERBOSE: Source directory: C:\Users\bo3b\Documents\code\geo-11\
VERBOSE: Scanning for project files
VERBOSE: Retrieving project list for solution C:\Users\bo3b\Documents\code\geo-11\StereovisionHacks.sln
VERBOSE: Solution directory: C:\Users\bo3b\Documents\code\geo-11\
VERBOSE: Intermediate solution project matches count: 16
VERBOSE: DirectX11\DirectX11.vcxproj
VERBOSE: DirectX9\DirectX9.vcxproj
VERBOSE: DirectX10\DirectX10.vcxproj
VERBOSE: DirectXGI\DirectXGI.vcxproj
VERBOSE: NVAPI\NVAPI.vcxproj
VERBOSE: D3DCompiler_46\D3DCompiler_46.vcxproj
VERBOSE: BinaryDecompiler\BinaryDecompiler.vcxproj
VERBOSE: Solution Items
VERBOSE: D3D_Shaders\D3D_Shaders.vcxproj
VERBOSE: Nektra
VERBOSE: HLSLDecompiler\cmd_Decompiler\cmd_Decompiler.vcxproj
VERBOSE: Build Tools
VERBOSE: Dependencies
VERBOSE: pcre2
VERBOSE: DirectXTK\DirectXTK_Desktop_2017.vcxproj
VERBOSE: Injector\Injector.vcxproj
VERBOSE: Resolved project paths for solution C:\Users\bo3b\Documents\code\geo-11\StereovisionHacks.sln:
VERBOSE:   C:\Users\bo3b\Documents\code\geo-11\DirectX11\DirectX11.vcxproj
VERBOSE:   C:\Users\bo3b\Documents\code\geo-11\DirectX9\DirectX9.vcxproj
VERBOSE:   C:\Users\bo3b\Documents\code\geo-11\DirectX10\DirectX10.vcxproj
VERBOSE:   C:\Users\bo3b\Documents\code\geo-11\DirectXGI\DirectXGI.vcxproj
VERBOSE:   C:\Users\bo3b\Documents\code\geo-11\NVAPI\NVAPI.vcxproj
VERBOSE:   C:\Users\bo3b\Documents\code\geo-11\D3DCompiler_46\D3DCompiler_46.vcxproj
VERBOSE:   C:\Users\bo3b\Documents\code\geo-11\BinaryDecompiler\BinaryDecompiler.vcxproj
VERBOSE:   C:\Users\bo3b\Documents\code\geo-11\D3D_Shaders\D3D_Shaders.vcxproj
VERBOSE:   C:\Users\bo3b\Documents\code\geo-11\HLSLDecompiler\cmd_Decompiler\cmd_Decompiler.vcxproj
VERBOSE:   C:\Users\bo3b\Documents\code\geo-11\DirectXTK\DirectXTK_Desktop_2017.vcxproj
VERBOSE:   C:\Users\bo3b\Documents\code\geo-11\Injector\Injector.vcxproj
VERBOSE: 
VERBOSE: Found 11 projects
VERBOSE: Deleting variables initialized by previous project:
VERBOSE: 
VERBOSE: Importing environment variables into current scope
VERBOSE: SET_VAR ALLUSERSPROFILE: C:\ProgramData
VERBOSE: SET_VAR APPDATA: C:\Users\bo3b\AppData\Roaming
VERBOSE: SET_VAR CommonProgramFiles: C:\Program Files (x86)\Common Files
VERBOSE: SET_VAR CommonProgramFiles(x86): C:\Program Files (x86)\Common Files
VERBOSE: SET_VAR CommonProgramW6432: C:\Program Files\Common Files
VERBOSE: SET_VAR COMPUTERNAME: BOLLAGINK
VERBOSE: SET_VAR ComSpec: C:\Windows\system32\cmd.exe
VERBOSE: SET_VAR DriverData: C:\Windows\System32\Drivers\DriverData
VERBOSE: SET_VAR DXSDK_DIR: W:\Tools\DirectX9\
VERBOSE: SET_VAR FACADES_4.5.0.0: C:\Program Files (x86)\Reference 
Assemblies\Microsoft\Framework\.NETFramework\v4.5\Facades
VERBOSE: SET_VAR FACADES_4.5.1.0: C:\Program Files (x86)\Reference 
Assemblies\Microsoft\Framework\.NETFramework\v4.5.1\Facades
VERBOSE: SET_VAR FACADES_4.5.2.0: C:\Program Files (x86)\Reference 
Assemblies\Microsoft\Framework\.NETFramework\v4.5.2\Facades
VERBOSE: SET_VAR FACADES_4.6.0.0: C:\Program Files (x86)\Reference 
Assemblies\Microsoft\Framework\.NETFramework\v4.6\Facades
VERBOSE: SET_VAR FACADES_4.6.1.0: C:\Program Files (x86)\Reference 
Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\Facades
VERBOSE: SET_VAR FACADES_4.6.2.0: C:\Program Files (x86)\Reference 
Assemblies\Microsoft\Framework\.NETFramework\v4.6.2\Facades
VERBOSE: SET_VAR FACADES_4.7.1.0: C:\Program Files (x86)\Reference 
Assemblies\Microsoft\Framework\.NETFramework\v4.7.1\Facades
VERBOSE: SET_VAR FACADES_4.7.2.0: C:\Program Files (x86)\Reference 
Assemblies\Microsoft\Framework\.NETFramework\v4.7.2\Facades
VERBOSE: SET_VAR ForceIdentityAuthenticationType: Embedded
VERBOSE: SET_VAR FPS_BROWSER_APP_PROFILE_STRING: Internet Explorer
VERBOSE: SET_VAR FPS_BROWSER_USER_PROFILE_STRING: Default
VERBOSE: SET_VAR HOMEDRIVE: C:
VERBOSE: SET_VAR HOMEPATH: \Users\bo3b
VERBOSE: SET_VAR LOCALAPPDATA: C:\Users\bo3b\AppData\Local
VERBOSE: SET_VAR LOGONSERVER: \\BOLLAGINK
VERBOSE: SET_VAR MSBuildLoadMicrosoftTargetsReadOnly: true
VERBOSE: SET_VAR NUMBER_OF_PROCESSORS: 8
VERBOSE: SET_VAR OneDrive: C:\Users\bo3b\OneDrive
VERBOSE: SET_VAR OS: Windows_NT
VERBOSE: SET_VAR Path: 
C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32
\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program 
Files\dotnet\;C:\Users\bo3b\AppData\Local\Microsoft\WindowsApps;C:\Users\bo3b\.dotnet\tools;C:\Users\bo3b\AppData\Roami
ng\ClangPowerTools\LLVM\LLVM12.0.1\bin
VERBOSE: SET_VAR PATHEXT: .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL
VERBOSE: SET_VAR PkgDefApplicationConfigFile: 
C:\Users\bo3b\AppData\Local\Microsoft\VisualStudio\16.0_337686a5\devenv.exe.config
VERBOSE: SET_VAR PROCESSOR_ARCHITECTURE: x86
VERBOSE: SET_VAR PROCESSOR_ARCHITEW6432: AMD64
VERBOSE: SET_VAR PROCESSOR_IDENTIFIER: Intel64 Family 6 Model 158 Stepping 13, GenuineIntel
VERBOSE: SET_VAR PROCESSOR_LEVEL: 6
VERBOSE: SET_VAR PROCESSOR_REVISION: 9e0d
VERBOSE: SET_VAR ProgramData: C:\ProgramData
VERBOSE: SET_VAR ProgramFiles: C:\Program Files (x86)
VERBOSE: SET_VAR ProgramFiles(x86): C:\Program Files (x86)
VERBOSE: SET_VAR ProgramW6432: C:\Program Files
VERBOSE: SET_VAR PSExecutionPolicyPreference: Unrestricted
VERBOSE: SET_VAR PSModulePath: C:\Program 
Files\WindowsPowerShell\Modules;C:\Users\bo3b\Documents\WindowsPowerShell\Modules;C:\Program Files 
(x86)\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules
VERBOSE: SET_VAR PUBLIC: C:\Users\Public
VERBOSE: SET_VAR ServiceHubLogSessionKey: FCE47DD5
VERBOSE: SET_VAR SESSIONNAME: Console
VERBOSE: SET_VAR SignInWithHomeTenantOnly: False
VERBOSE: SET_VAR SystemDrive: C:
VERBOSE: SET_VAR SystemRoot: C:\Windows
VERBOSE: SET_VAR TEMP: C:\Users\bo3b\AppData\Local\Temp
VERBOSE: SET_VAR ThreadedWaitDialogDpiContext: -4
VERBOSE: SET_VAR TMP: C:\Users\bo3b\AppData\Local\Temp
VERBOSE: SET_VAR USERDOMAIN: BOLLAGINK
VERBOSE: SET_VAR USERDOMAIN_ROAMINGPROFILE: BOLLAGINK
VERBOSE: SET_VAR USERNAME: bo3b
VERBOSE: SET_VAR USERPROFILE: C:\Users\bo3b
VERBOSE: SET_VAR VisualStudioDir: C:\Users\bo3b\Documents\Visual Studio 2019
VERBOSE: SET_VAR VisualStudioEdition: Microsoft Visual Studio Community 2019
VERBOSE: SET_VAR VisualStudioVersion: 16.0
VERBOSE: SET_VAR VSAPPIDDIR: C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE\
VERBOSE: SET_VAR VSAPPIDNAME: devenv.exe
VERBOSE: SET_VAR VSLANG: 1033
VERBOSE: SET_VAR VSSKUEDITION: Community
VERBOSE: SET_VAR windir: C:\Windows
VERBOSE: SET_VAR MSBuildProjectFullPath: C:\Users\bo3b\Documents\code\geo-11\DirectX11\DirectX11.vcxproj
VERBOSE: SET_VAR ProjectDir: C:\Users\bo3b\Documents\code\geo-11\DirectX11\
VERBOSE: SET_VAR MSBuildProjectExtension: .vcxproj
VERBOSE: SET_VAR MSBuildProjectFile: DirectX11.vcxproj
VERBOSE: SET_VAR MSBuildProjectName: DirectX11
VERBOSE: SET_VAR MSBuildProjectDirectory: C:\Users\bo3b\Documents\code\geo-11\DirectX11\
VERBOSE: SET_VAR MSBuildProgramFiles32: C:\Program Files (x86)
VERBOSE: SET_VAR ProjectName: DirectX11
VERBOSE: SET_VAR TargetName: DirectX11
VERBOSE: SET_VAR UserRootDir: C:\Users\bo3b\AppData\Local\Microsoft\MSBuild\v4.0
VERBOSE: SET_VAR VisualStudioVersion: 16.0
VERBOSE: SET_VAR MSBuildToolsVersion: 16.0
VERBOSE: Retrieving project list for solution C:\Users\bo3b\Documents\code\geo-11\StereovisionHacks.sln
VERBOSE: Solution directory: C:\Users\bo3b\Documents\code\geo-11\
VERBOSE: Intermediate solution project matches count: 16
VERBOSE: DirectX11\DirectX11.vcxproj
VERBOSE: DirectX9\DirectX9.vcxproj
VERBOSE: DirectX10\DirectX10.vcxproj
VERBOSE: DirectXGI\DirectXGI.vcxproj
VERBOSE: NVAPI\NVAPI.vcxproj
VERBOSE: D3DCompiler_46\D3DCompiler_46.vcxproj
VERBOSE: BinaryDecompiler\BinaryDecompiler.vcxproj
VERBOSE: Solution Items
VERBOSE: D3D_Shaders\D3D_Shaders.vcxproj
VERBOSE: Nektra
VERBOSE: HLSLDecompiler\cmd_Decompiler\cmd_Decompiler.vcxproj
VERBOSE: Build Tools
VERBOSE: Dependencies
VERBOSE: pcre2
VERBOSE: DirectXTK\DirectXTK_Desktop_2017.vcxproj
VERBOSE: Injector\Injector.vcxproj
VERBOSE: Resolved project paths for solution C:\Users\bo3b\Documents\code\geo-11\StereovisionHacks.sln:
VERBOSE:   C:\Users\bo3b\Documents\code\geo-11\DirectX11\DirectX11.vcxproj
VERBOSE:   C:\Users\bo3b\Documents\code\geo-11\DirectX9\DirectX9.vcxproj
VERBOSE:   C:\Users\bo3b\Documents\code\geo-11\DirectX10\DirectX10.vcxproj
VERBOSE:   C:\Users\bo3b\Documents\code\geo-11\DirectXGI\DirectXGI.vcxproj
VERBOSE:   C:\Users\bo3b\Documents\code\geo-11\NVAPI\NVAPI.vcxproj
VERBOSE:   C:\Users\bo3b\Documents\code\geo-11\D3DCompiler_46\D3DCompiler_46.vcxproj
VERBOSE:   C:\Users\bo3b\Documents\code\geo-11\BinaryDecompiler\BinaryDecompiler.vcxproj
VERBOSE:   C:\Users\bo3b\Documents\code\geo-11\D3D_Shaders\D3D_Shaders.vcxproj
VERBOSE:   C:\Users\bo3b\Documents\code\geo-11\HLSLDecompiler\cmd_Decompiler\cmd_Decompiler.vcxproj
VERBOSE:   C:\Users\bo3b\Documents\code\geo-11\DirectXTK\DirectXTK_Desktop_2017.vcxproj
VERBOSE:   C:\Users\bo3b\Documents\code\geo-11\Injector\Injector.vcxproj
VERBOSE: 
VERBOSE: SET_VAR SolutionDir: C:\Users\bo3b\Documents\code\geo-11\
VERBOSE: SET_VAR SolutionName: StereovisionHacks
VERBOSE: SET_VAR Configuration: Release
VERBOSE: SET_VAR Platform: x64
VERBOSE: 
Sanitizing C:\Users\bo3b\Documents\code\geo-11\DirectX11\DirectX11.vcxproj
VERBOSE: SET_VAR MSBuildThisFileFullPath: C:\Users\bo3b\Documents\code\geo-11\DirectX11\DirectX11.vcxproj
VERBOSE: SET_VAR MSBuildThisFileExtension: .vcxproj
VERBOSE: SET_VAR MSBuildThisFile: DirectX11.vcxproj
VERBOSE: SET_VAR MSBuildThisFileName: DirectX11
VERBOSE: SET_VAR MSBuildThisFileDirectory: C:\Users\bo3b\Documents\code\geo-11\DirectX11\
VERBOSE: [CONTEXT] item namespace = @(ProjectConfiguration)
VERBOSE: SET_VAR CPT_PROJITEM_ProjectConfiguration: 
VERBOSE: [CONTEXT] item namespace = @()
VERBOSE: SET_VAR Configuration: Release
VERBOSE: SET_VAR Platform: x64
VERBOSE: [CONTEXT] item namespace = @(ProjectReference)
VERBOSE: SET_VAR CPT_PROJITEM_ProjectReference: 
VERBOSE: [CONTEXT] item namespace = @()
VERBOSE: [CONTEXT] item namespace = @(ClCompile)
VERBOSE: SET_VAR CPT_PROJITEM_ClCompile: 
VERBOSE: [CONTEXT] item namespace = @()
VERBOSE: [CONTEXT] item namespace = @(None)
VERBOSE: SET_VAR CPT_PROJITEM_None: 
VERBOSE: [CONTEXT] item namespace = @()
VERBOSE: [CONTEXT] item namespace = @(ClInclude)
VERBOSE: SET_VAR CPT_PROJITEM_ClInclude: 
VERBOSE: [CONTEXT] item namespace = @()
VERBOSE: [CONTEXT] item namespace = @(ResourceCompile)
VERBOSE: SET_VAR CPT_PROJITEM_ResourceCompile: 
VERBOSE: [CONTEXT] item namespace = @()
VERBOSE: SET_VAR ProjectGuid: {92A679C7-A67F-4B16-B055-7A2F4C23DD80}
VERBOSE: SET_VAR Keyword: Win32Proj
VERBOSE: SET_VAR RootNamespace: DirectX11
VERBOSE: SET_VAR WindowsTargetPlatformVersion: 10.0.17763.0
VERBOSE: Could not find property sheet \Microsoft.Cpp.Default.props
VERBOSE: SET_VAR ConfigurationType: DynamicLibrary
VERBOSE: SET_VAR UseDebugLibraries: false
VERBOSE: SET_VAR PlatformToolset: v141
VERBOSE: SET_VAR WholeProgramOptimization: true
VERBOSE: SET_VAR CharacterSet: Unicode
VERBOSE: Could not find property sheet \Microsoft.Cpp.props
VERBOSE: Property sheet: C:\Users\bo3b\AppData\Local\Microsoft\MSBuild\v4.0\Microsoft.Cpp.x64.user.props
VERBOSE: 
Sanitizing C:\Users\bo3b\AppData\Local\Microsoft\MSBuild\v4.0\Microsoft.Cpp.x64.user.props
VERBOSE: SET_VAR MSBuildThisFileFullPath: 
C:\Users\bo3b\AppData\Local\Microsoft\MSBuild\v4.0\Microsoft.Cpp.x64.user.props
VERBOSE: SET_VAR MSBuildThisFileExtension: .props
VERBOSE: SET_VAR MSBuildThisFile: Microsoft.Cpp.x64.user.props
VERBOSE: SET_VAR MSBuildThisFileName: Microsoft.Cpp.x64.user
VERBOSE: SET_VAR MSBuildThisFileDirectory: C:\Users\bo3b\AppData\Local\Microsoft\MSBuild\v4.0\
VERBOSE: [INFO] Restoring project file properties localstate to parent file
VERBOSE: SET_VAR MSBuildThisFileFullPath: C:\Users\bo3b\Documents\code\geo-11\DirectX11\DirectX11.vcxproj
VERBOSE: SET_VAR MSBuildThisFileExtension: .vcxproj
VERBOSE: SET_VAR MSBuildThisFile: DirectX11.vcxproj
VERBOSE: SET_VAR MSBuildThisFileName: DirectX11
VERBOSE: SET_VAR MSBuildThisFileDirectory: C:\Users\bo3b\Documents\code\geo-11\DirectX11\
VERBOSE: SET_VAR LinkIncremental: false
VERBOSE: SET_VAR TargetName: d3d11
VERBOSE: SET_VAR IncludePath: 
C:\Users\bo3b\Documents\code\geo-11\crc32c-hw-1.0.5\include;C:\Users\bo3b\Documents\code\geo-11\BinaryDecompiler;C:\Use
rs\bo3b\Documents\code\geo-11\BinaryDecompiler\include;;
VERBOSE: SET_VAR LibraryPath: ;
VERBOSE: SET_VAR OutDir: C:\Users\bo3b\Documents\code\geo-11\x64\Release\
VERBOSE: SET_VAR IntDir: C:\Users\bo3b\Documents\code\geo-11\DirectX11\x64\Release\
VERBOSE: [CONTEXT] item namespace = @(ClCompile)
VERBOSE: [CONTEXT] propSet: WarningLevel = Level3
VERBOSE: [CONTEXT] propSet: PrecompiledHeader = NotUsing
VERBOSE: [CONTEXT] propSet: Optimization = MaxSpeed
VERBOSE: [CONTEXT] propSet: FunctionLevelLinking = true
VERBOSE: [CONTEXT] propSet: IntrinsicFunctions = true
VERBOSE: [CONTEXT] propSet: PreprocessorDefinitions = 
CRC32C_STATIC=1;PCRE2_STATIC;PCRE2_CODE_UNIT_WIDTH=8;_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES=1;_CRT_SECURE_CPP_OVERLOAD
_STANDARD_NAMES_COUNT=1;_WINDOWS;_USRDLL;MIGOTO_DX=11;NDEBUG;
VERBOSE: [CONTEXT] propSet: ExceptionHandling = Async
VERBOSE: [CONTEXT] propSet: RuntimeLibrary = MultiThreaded
VERBOSE: [CONTEXT] propSet: AdditionalIncludeDirectories = 
C:\Users\bo3b\Documents\code\geo-11\;C:\Users\bo3b\Documents\code\geo-11\HLSLDecompiler;C:\Users\bo3b\Documents\code\ge
o-11\DirectXTK\Inc;C:\Users\bo3b\Documents\code\geo-11\D3D_Shaders;C:\Users\bo3b\Documents\code\geo-11\pcre2
VERBOSE: [CONTEXT] propSet: FavorSizeOrSpeed = Speed
VERBOSE: [CONTEXT] propSet: BufferSecurityCheck = false
VERBOSE: [CONTEXT] propSet: MultiProcessorCompilation = true
VERBOSE: [CONTEXT] item namespace = @()
VERBOSE: [CONTEXT] item namespace = @(Link)
VERBOSE: [CONTEXT] propSet: SubSystem = Windows
VERBOSE: [CONTEXT] propSet: GenerateDebugInformation = true
VERBOSE: [CONTEXT] propSet: EnableCOMDATFolding = true
VERBOSE: [CONTEXT] propSet: OptimizeReferences = true
VERBOSE: [CONTEXT] propSet: ModuleDefinitionFile = d3d11Wrapper.def
VERBOSE: [CONTEXT] propSet: AdditionalDependencies = 
..\Nektra\NktHookLib64.lib;..\pcre2\pcre2-8-64.lib;C:\Users\bo3b\Documents\code\geo-11\x64\Release\nvapi64.lib;..\nvapi
64.lib;XINPUT9_1_0.lib;d3dcompiler.lib;DXGI.lib;Shlwapi.lib;Dbghelp.lib;
VERBOSE: [CONTEXT] propSet: ForceSymbolReferences = CreateDXGIFactory
VERBOSE: [CONTEXT] item namespace = @()
VERBOSE: [CONTEXT] item namespace = @(PostBuildEvent)
VERBOSE: [CONTEXT] propSet: Command = xcopy "redist\d3d\x64\d3dcompiler_47.dll" "" /E /Y
xcopy "C:\Users\bo3b\Documents\code\geo-11\Dependencies\*.*" ""  /S /Y
VERBOSE: [CONTEXT] propSet: Message = Copy all Dependencies to target directory.
VERBOSE: [CONTEXT] item namespace = @()
VERBOSE: Could not find property sheet \Microsoft.Cpp.targets
PROJECT: C:\Users\bo3b\Documents\code\geo-11\DirectX11\DirectX11.vcxproj [Release|x64]
VERBOSE: Platform toolset: v141
VERBOSE: Detected (vswhere) VisualStudio installation path: C:\Program Files (x86)\Microsoft Visual 
Studio\2019\Community
VERBOSE: [ INFO ] Detected project using older toolset (141)
VERBOSE: Loading using Visual Studio 16.0 with toolset 141
VERBOSE: [CONTEXT] item namespace = @(ClCompile)
VERBOSE: Force includes:
VERBOSE:   
VERBOSE: 
VERBOSE: Preprocessor definitions:
VERBOSE:   "-DUNICODE"
VERBOSE:   "-D_UNICODE"
VERBOSE:   "-D_MT"
VERBOSE:   "-DCRC32C_STATIC=1"
VERBOSE:   "-DPCRE2_STATIC"
VERBOSE:   "-DPCRE2_CODE_UNIT_WIDTH=8"
VERBOSE:   "-D_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES=1"
VERBOSE:   "-D_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES_COUNT=1"
VERBOSE:   "-D_WINDOWS"
VERBOSE:   "-D_USRDLL"
VERBOSE:   "-DMIGOTO_DX=11"
VERBOSE:   "-DNDEBUG"
VERBOSE:   "-D_DEBUG_FUNCTIONAL_MACHINERY"
VERBOSE: 
VERBOSE: Additional include directories:
VERBOSE:   C:\Users\bo3b\Documents\code\geo-11
VERBOSE:   C:\Users\bo3b\Documents\code\geo-11\HLSLDecompiler
VERBOSE:   C:\Users\bo3b\Documents\code\geo-11\DirectXTK\Inc
VERBOSE:   C:\Users\bo3b\Documents\code\geo-11\D3D_Shaders
VERBOSE:   C:\Users\bo3b\Documents\code\geo-11\pcre2
VERBOSE: 
VERBOSE: Detected (vswhere) VisualStudio installation path: C:\Program Files (x86)\Microsoft Visual 
Studio\2019\Community
VERBOSE: Visual Studio location: C:\Program Files (x86)\Microsoft Visual Studio\2019\Community
VERBOSE: Detected (vswhere) VisualStudio installation path: C:\Program Files (x86)\Microsoft Visual 
Studio\2019\Community
VERBOSE: MSCVER: 14.29.30133
VERBOSE: WinSDK version: 10.0.17763.0
VERBOSE: Include directories:
VERBOSE:   C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include
VERBOSE:   C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\atlmfc\include
VERBOSE:   C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\VS\include
VERBOSE:   C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt
VERBOSE:   C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\um
VERBOSE:   C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\shared
VERBOSE:   C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\winrt
VERBOSE:   C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\cppwinrt
VERBOSE:   C:\Users\bo3b\Documents\code\geo-11\crc32c-hw-1.0.5\include
VERBOSE:   C:\Users\bo3b\Documents\code\geo-11\BinaryDecompiler
VERBOSE:   C:\Users\bo3b\Documents\code\geo-11\BinaryDecompiler\include
VERBOSE: 
VERBOSE: PCH not enabled for this project!
VERBOSE: Processing 1 cpps
VERBOSE: INVOKE: clang-tidy.exe "C:\Users\bo3b\Documents\code\geo-11\DirectX11\HackerDevice.cpp" -header-filter=".*" 
-quiet -- -isystem"C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include" 
-isystem"C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\atlmfc\include" 
-isystem"C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\VS\include" -isystem"C:\Program 
Files (x86)\Windows Kits\10\Include\10.0.17763.0\ucrt" -isystem"C:\Program Files (x86)\Windows 
Kits\10\Include\10.0.17763.0\um" -isystem"C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\shared" 
-isystem"C:\Program Files (x86)\Windows Kits\10\Include\10.0.17763.0\winrt" -isystem"C:\Program Files (x86)\Windows 
Kits\10\Include\10.0.17763.0\cppwinrt" -isystem"C:\Users\bo3b\Documents\code\geo-11\crc32c-hw-1.0.5\include" 
-isystem"C:\Users\bo3b\Documents\code\geo-11\BinaryDecompiler" 
-isystem"C:\Users\bo3b\Documents\code\geo-11\BinaryDecompiler\include" -I"C:\Users\bo3b\Documents\code\geo-11" 
-I"C:\Users\bo3b\Documents\code\geo-11\HLSLDecompiler" -I"C:\Users\bo3b\Documents\code\geo-11\DirectXTK\Inc" 
-I"C:\Users\bo3b\Documents\code\geo-11\D3D_Shaders" -I"C:\Users\bo3b\Documents\code\geo-11\pcre2" -std=c++14 -Wall 
-fms-compatibility-version=19.10 -Wmicrosoft -Wno-invalid-token-paste -Wno-unknown-pragmas -Wno-unused-value 
"-DUNICODE" "-D_UNICODE" "-D_MT" "-DCRC32C_STATIC=1" "-DPCRE2_STATIC" "-DPCRE2_CODE_UNIT_WIDTH=8" 
"-D_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES=1" "-D_CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES_COUNT=1" "-D_WINDOWS" 
"-D_USRDLL" "-DMIGOTO_DX=11" "-DNDEBUG" "-D_DEBUG_FUNCTIONAL_MACHINERY" -x c++
1: C:\Users\bo3b\Documents\code\geo-11\DirectX11\HackerDevice.cpp
Error: no checks enabled.
USAGE: clang-tidy.exe [options] <source0> [... <sourceN>]
OPTIONS:
Generic Options:
  --help                         - Display available options (--help-hidden for more)
  --version                      - Display the version of this program
clang-tidy options:
  --checks=<string>              - 
                                   Comma-separated list of globs with optional '-'
                                   prefix. Globs are processed in order of
                                   appearance in the list. Globs without '-'
                                   prefix add checks with matching names to the
                                   set, globs with the '-' prefix remove checks
                                   with matching names from the set of enabled
                                   checks. This option's value is appended to the
                                   value of the 'Checks' option in .clang-tidy
                                   file, if any.
  --config=<string>              - 
                                   Specifies a configuration in YAML/JSON format:
                                     -config="{Checks: '*',
                                               CheckOptions: [{key: x,
                                                               value: y}]}"
                                   When the value is empty, clang-tidy will
                                   attempt to find a file named .clang-tidy for
                                   each source file in its parent directories.
  --config-file=<string>         - 
                                   Specify the path of .clang-tidy or custom config file:
                                    e.g. --config-file=/some/path/myTidyConfigFile
                                   This option internally works exactly the same way as
                                    --config option after reading specified config file.
                                   Use either --config-file or --config, not both.
  --dump-config                  - 
                                   Dumps configuration in the YAML format to
                                   stdout. This option can be used along with a
                                   file name (and '--' if the file is outside of a
                                   project with configured compilation database).
                                   The configuration used for this file will be
                                   printed.
                                   Use along with -checks=* to include
                                   configuration of all checks.
  --enable-check-profile         - 
                                   Enable per-check timing profiles, and print a
                                   report to stderr.
  --explain-config               - 
                                   For each enabled check explains, where it is
                                   enabled, i.e. in clang-tidy binary, command
                                   line or a specific configuration file.
  --export-fixes=<filename>      - 
                                   YAML file to store suggested fixes in. The
                                   stored fixes can be applied to the input source
                                   code with clang-apply-replacements.
  --extra-arg=<string>           - Additional argument to append to the compiler command line
  --extra-arg-before=<string>    - Additional argument to prepend to the compiler command line
  --fix                          - 
                                   Apply suggested fixes. Without -fix-errors
                                   clang-tidy will bail out if any compilation
                                   errors were found.
  --fix-errors                   - 
                                   Apply suggested fixes even if compilation
                                   errors were found. If compiler errors have
                                   attached fix-its, clang-tidy will apply them as
                                   well.
  --format-style=<string>        - 
                                   Style for formatting code around applied fixes:
                                     - 'none' (default) turns off formatting
                                     - 'file' (literally 'file', not a placeholder)
                                       uses .clang-format file in the closest parent
                                       directory
                                     - '{ <json> }' specifies options inline, e.g.
                                       -format-style='{BasedOnStyle: llvm, IndentWidth: 8}'
                                     - 'llvm', 'google', 'webkit', 'mozilla'
                                   See clang-format documentation for the up-to-date
                                   information about formatting styles and options.
                                   This option overrides the 'FormatStyle` option in
                                   .clang-tidy file, if any.
  --header-filter=<string>       - 
                                   Regular expression matching the names of the
                                   headers to output diagnostics from. Diagnostics
                                   from the main file of each translation unit are
                                   always displayed.
                                   Can be used together with -line-filter.
                                   This option overrides the 'HeaderFilterRegex'
                                   option in .clang-tidy file, if any.
  --line-filter=<string>         - 
                                   List of files with line ranges to filter the
                                   warnings. Can be used together with
                                   -header-filter. The format of the list is a
                                   JSON array of objects:
                                     [
                                       {"name":"file1.cpp","lines":[[1,3],[5,7]]},
                                       {"name":"file2.h"}
                                     ]
  --list-checks                  - 
                                   List all enabled checks and exit. Use with
                                   -checks=* to list all available checks.
  -p=<string>                    - Build path
  --quiet                        - 
                                   Run clang-tidy in quiet mode. This suppresses
                                   printing statistics about ignored warnings and
                                   warnings treated as errors if the respective
                                   options are specified.
  --store-check-profile=<prefix> - 
                                   By default reports are printed in tabulated
                                   format to stderr. When this option is passed,
                                   these per-TU profiles are instead stored as JSON.
  --system-headers               - Display the errors from system headers.
  --use-color                    - 
                                   Use colors in diagnostics. If not set, colors
                                   will be used if the terminal connected to
                                   standard output supports colors.
                                   This option overrides the 'UseColor' option in
                                   .clang-tidy file, if any.
  --vfsoverlay=<filename>        - 
                                   Overlay the virtual filesystem described by file
                                   over the real file system.
  --warnings-as-errors=<string>  - 
                                   Upgrades warnings to errors. Same format as
                                   '-checks'.
                                   This option's value is appended to the value of
                                   the 'WarningsAsErrors' option in .clang-tidy
                                   file, if any.

Got errors.
VERBOSE: Cleaning up PCH temporaries:
VERBOSE: 

--- CLANG TIDY FINISHED ---
mariru27 commented 2 years ago

Hi @bo3b,

Can you paste here the data from .clang-tidy file?

Regards, Marina

bo3b commented 2 years ago

Hi @mariru27

---
# modernize-use-nullptr,modernize-deprecated-headers,modernize-raw-string-literal, modernize-redundant-void-arg, modernize-return-braced-init-list,modernize-use-bool-literals,modernize-use-default-member-init,modernize-use-equals-default,modernize-use-override,bugprone-reserved-identifier,bugprone-suspicious-include,bugprone-suspicious-missing-comma,bugprone-suspicious-semicolon'
Checks:            '-*,\
readability-identifier-naming'
WarningsAsErrors:  ''
HeaderFilterRegex: '.*'
FormatStyle:       'file'
# Naming to match Resharper setup
CheckOptions:
  - { key: readability-identifier-naming.ClassCase,             value: CamelCase  }
  - { key: readability-identifier-naming.ClassMethodCase,       value: CamelCase  }
  - { key: readability-identifier-naming.ClassMemberNames,      value: camelBack  }
  - { key: readability-identifier-naming.TemplateParameterCase, value: CamelCase  }
  - { key: readability-identifier-naming.MacroDefinitionCase,   value: UPPER_CASE }
  - { key: readability-identifier-naming.GlobalConstantCase,    value: lower_case }
  - { key: readability-identifier-naming.ConstantCase,          value: lower_case }
  - { key: readability-identifier-naming.GlobalFunctionCase,    value: lower_case }
  - { key: readability-identifier-naming.FunctionCase,          value: lower_case }
  - { key: readability-identifier-naming.ParameterCase,         value: lower_case }
  - { key: readability-identifier-naming.StructCase,            value: lower_case }
  - { key: readability-identifier-naming.VariableCase,          value: lower_case }
  - { key: readability-identifier-naming.UnionCase,             value: lower_case }
  - { key: readability-identifier-naming.NamespaceCase,         value: lower_case }
  - { key: readability-identifier-naming.EnumCase,              value: Camel_Snake_Case }
  - { key: readability-identifier-naming.EnumConstantCase,      value: lower_case }

This is using VS2019. And the project I'm working up is a Github open-source if that is helpful.

https://github.com/bo3b/3Dmigoto/tree/Rename_Reformat

Thanks, bo3b

mariru27 commented 2 years ago

It looks like you didn't select any Predefined Checks

Try to select on Predefined Checks -> Enable All or Defaults Then Export tidy file config.

In result, you will have more Checks in .clang-tidy file.

Example:

Checks:            '-*,clang-analyzer-core.DivideZero,clang-analyzer-core.DynamicTypePropagation,clang-analyzer-core.NonNullParamChecker,clang-analyzer-core.NonnilStringConstants,clang-analyzer-core.NullDereference,clang-analyzer-core.StackAddrEscapeBase,clang-analyzer-core.uninitialized.Branch,clang-analyzer-core.uninitialized.CapturedBlockVariable,clang-analyzer-core.uninitialized.UndefReturn,clang-analyzer-cplusplus.InnerPointer,clang-analyzer-cplusplus.Move,clang-analyzer-cplusplus.NewDelete,clang-analyzer-cplusplus.NewDeleteLeaks,clang-analyzer-cplusplus.PlacementNew,clang-analyzer-cplusplus.PureVirtualCall,clang-analyzer-cplusplus.SelfAssignment,clang-analyzer-cplusplus.SmartPtrModeling,clang-analyzer-cplusplus.VirtualCallModeling,clang-analyzer-deadcode.DeadStores,clang-analyzer-fuchsia.HandleChecker,clang-analyzer-nullability.NullPassedToNonnull,clang-analyzer-nullability.NullReturnedFromNonnull,clang-analyzer-nullability.NullabilityBase,clang-analyzer-nullability.NullableDereferenced,clang-analyzer-nullability.NullablePassedToNonnull,clang-analyzer-nullability.NullableReturnedFromNonnull,clang-analyzer-optin.cplusplus.UninitializedObject,clang-analyzer-optin.cplusplus.VirtualCall,clang-analyzer-optin.mpi.MPI-Checker,clang-analyzer-optin.osx.OSObjectCStyleCast,clang-analyzer-optin.osx.cocoa.localizability.EmptyLocalizationContextChecker,clang-analyzer-optin.osx.cocoa.localizability.NonLocalizedStringChecker,clang-analyzer-optin.performance.GCDAntipattern,clang-analyzer-optin.performance.Padding,clang-analyzer-optin.portability.UnixAPI,clang-analyzer-osx.API,clang-analyzer-osx.MIG,clang-analyzer-osx.NSOrCFErrorDerefChecker,clang-analyzer-osx.NumberObjectConversion,clang-analyzer-osx.OSObjectRetainCount,clang-analyzer-osx.ObjCProperty,clang-analyzer-osx.SecKeychainAPI,clang-analyzer-osx.cocoa.AtSync,clang-analyzer-osx.cocoa.AutoreleaseWrite,clang-analyzer-osx.cocoa.ClassRelease,clang-analyzer-osx.cocoa.Dealloc,clang-analyzer-osx.cocoa.IncompatibleMethodTypes,clang-analyzer-osx.cocoa.Loops,clang-analyzer-osx.cocoa.MissingSuperCall,clang-analyzer-osx.cocoa.NSAutoreleasePool,clang-analyzer-osx.cocoa.NSError,clang-analyzer-osx.cocoa.NilArg,clang-analyzer-osx.cocoa.NonNilReturnValue,clang-analyzer-osx.cocoa.ObjCGenerics,clang-analyzer-osx.cocoa.RetainCount,clang-analyzer-osx.cocoa.RetainCountBase,clang-analyzer-osx.cocoa.RunLoopAutoreleaseLeak,clang-analyzer-osx.cocoa.SelfInit,clang-analyzer-osx.cocoa.SuperDealloc,clang-analyzer-osx.cocoa.UnusedIvars,clang-analyzer-osx.cocoa.VariadicMethodTypes,clang-analyzer-osx.coreFoundation.CFError,clang-analyzer-osx.coreFoundation.CFNumber,clang-analyzer-osx.coreFoundation.CFRetainRelease,clang-analyzer-osx.coreFoundation.containers.OutOfBounds,clang-analyzer-osx.coreFoundation.containers.PointerSizedValues,clang-analyzer-security.FloatLoopCounter,clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling,clang-analyzer-security.insecureAPI.SecuritySyntaxChecker,clang-analyzer-security.insecureAPI.UncheckedReturn,clang-analyzer-security.insecureAPI.bcmp,clang-analyzer-security.insecureAPI.bcopy,clang-analyzer-security.insecureAPI.bzero,clang-analyzer-security.insecureAPI.decodeValueOfObjCType,clang-analyzer-security.insecureAPI.getpw,clang-analyzer-security.insecureAPI.gets,clang-analyzer-security.insecureAPI.mkstemp,clang-analyzer-security.insecureAPI.mktemp,clang-analyzer-security.insecureAPI.rand,clang-analyzer-security.insecureAPI.strcpy,clang-analyzer-security.insecureAPI.vfork,clang-analyzer-unix.API,clang-analyzer-unix.DynamicMemoryModeling,clang-analyzer-unix.Malloc,clang-analyzer-unix.MallocSizeof,clang-analyzer-unix.MismatchedDeallocator,clang-analyzer-unix.Vfork,clang-analyzer-unix.cstring.BadSizeArg,clang-analyzer-unix.cstring.CStringModeling,clang-analyzer-unix.cstring.NullArg,clang-analyzer-valist.CopyToSelf,clang-analyzer-valist.Uninitialized,clang-analyzer-valist.Unterminated,clang-analyzer-valist.ValistBase,clang-analyzer-webkit.NoUncountedMemberChecker,clang-analyzer-webkit.RefCntblBaseVirtualDtor,clang-analyzer-webkit.UncountedLambdaCapturesChecker'
WarningsAsErrors:  ''
HeaderFilterRegex: '.*'
FormatStyle:       'file'

Let me know if this works for you too

Best regards, Marina

bo3b commented 2 years ago

Actually I had those defaults enabled, but it still did not work.

However, experimenting with the output file, it looks like the problem is that the YAML parser does not handle backslash like normal.

Checks:            '-*,\
readability-identifier-naming'

Is valid YAML syntax for a string, but it looks like makes this fail. The failure mode is also not reporting the error it finds in the file, and is reporting 'no checks' instead of a parsing error.

In any case, if I put that all on a single line, it can find the file and work normally. Thanks for the help.

mariru27 commented 2 years ago

Happy that I could help you

Best regards, Marina