mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Build expr with -fwrapv, since it relies on signed integer wrapping
having defined behavior. Reported by: rodrigc MFC after: 3 days
This commit is contained in:
parent
296f235de0
commit
c969922258
1 changed files with 3 additions and 0 deletions
|
|
@ -6,6 +6,9 @@ PROG= expr
|
|||
SRCS= expr.y
|
||||
YFLAGS=
|
||||
|
||||
# expr relies on signed integer wrapping
|
||||
CFLAGS+= -fwrapv
|
||||
|
||||
NO_WMISSING_VARIABLE_DECLARATIONS=
|
||||
|
||||
.if ${MK_TESTS} != "no"
|
||||
|
|
|
|||
Loading…
Reference in a new issue