You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compiling with warnings-as-errors is fine if your compiler doesn't change, but as new compilers are released, new warnings might pop up and fail a compilation for an end-user.
The user should be able to turn on warnings-as-errors through a CMake option, and this option should be disabled by default in the CMakeLists.txt file but enabled for all CI runs.
Compiling with warnings-as-errors is fine if your compiler doesn't change, but as new compilers are released, new warnings might pop up and fail a compilation for an end-user.
The user should be able to turn on warnings-as-errors through a CMake option, and this option should be disabled by default in the CMakeLists.txt file but enabled for all CI runs.
The associated compiler flags are
-Werror
for gcc and clang, and/WX
for MSVC compilers. These are located in https://github.com/trailofbits/pe-parse/blob/master/cmake/compilation_flags.cmakeThe text was updated successfully, but these errors were encountered: