mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-14 21:40:03 +00:00
Promote the warnings implicit-int, int-conversion, incompatible-pointer-types to errors (#1995)
This commit is contained in:
parent
17a88746e7
commit
c1341224f9
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -139,7 +139,7 @@ INC := -Iinclude -Iinclude/libc -Isrc -I$(BUILD_DIR) -I. -I$(EXTRACTED_DIR)
|
||||||
|
|
||||||
# Check code syntax with host compiler
|
# Check code syntax with host compiler
|
||||||
CHECK_WARNINGS := -Wall -Wextra -Wno-format-security -Wno-unknown-pragmas -Wno-unused-parameter -Wno-unused-variable -Wno-missing-braces
|
CHECK_WARNINGS := -Wall -Wextra -Wno-format-security -Wno-unknown-pragmas -Wno-unused-parameter -Wno-unused-variable -Wno-missing-braces
|
||||||
CHECK_WARNINGS += -Werror=implicit-function-declaration
|
CHECK_WARNINGS += -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=incompatible-pointer-types
|
||||||
|
|
||||||
# The `cpp` command behaves differently on macOS (it behaves as if
|
# The `cpp` command behaves differently on macOS (it behaves as if
|
||||||
# `-traditional-cpp` was passed) so we use `gcc -E` instead.
|
# `-traditional-cpp` was passed) so we use `gcc -E` instead.
|
||||||
|
|
Loading…
Reference in a new issue