Skip to content

Commit

Permalink
CFLAGS in Makefile does not exist
Browse files Browse the repository at this point in the history
A quick search in GCC source code show that -Wno-incompatible-function-pointer-types does not exist as a flag.
However, there is the close flag -Wno-incompatible-pointer-types
  • Loading branch information
henri-gasc authored Oct 10, 2024
1 parent 5d5cc3d commit 0974b14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
LDFLAGS ?= ""
CFLAGS ?= "-O0 -Wno-incompatible-function-pointer-types"
CFLAGS ?= "-O0 -Wno-incompatible-pointer-types"

PYAV_PYTHON ?= python
PYAV_PIP ?= pip
Expand Down

0 comments on commit 0974b14

Please sign in to comment.