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
This produces a ton of warnings, but the problem is I don't want any warnings reported for the minizip library. I can solve this by moving the minizip library into its own static library that'll get compiled in. Then I'll specify -Weverything for UnzipKit, and -Wnone for minizip. This was implemented in abbeycode/UnrarKit#56
Split minizip into its own library, linked into UnzipKit
Specify -Weverything for UnrarKit
Fix all warnings produced
The text was updated successfully, but these errors were encountered:
Turns out -Weverything was already turned on, but it was configured differently for debug and release configurations, and the minizip warnings were being ignored globally. So this turned into a simplification of the warning configuration.
This produces a ton of warnings, but the problem is I don't want any warnings reported for the
minizip
library. I can solve this by moving theminizip
library into its own static library that'll get compiled in. Then I'll specify-Weverything
forUnzipKit
, and-Wnone
forminizip
. This was implemented in abbeycode/UnrarKit#56minizip
into its own library, linked intoUnzipKit
-Weverything
forUnrarKit
The text was updated successfully, but these errors were encountered: