1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-29 11:41:15 +03:00

Consistently spell -Wextra

-W is a deprecated alias of -Wextra. Consistently use the new name.
This commit is contained in:
Gilles Peskine
2019-07-02 20:03:01 +02:00
parent c2d56a4446
commit 85aba47715
5 changed files with 7 additions and 7 deletions

View File

@ -2,7 +2,7 @@
# Also see "include/mbedtls/config.h"
CFLAGS ?= -O2
WARNING_CFLAGS ?= -Wall -W
WARNING_CFLAGS ?= -Wall -Wextra
LDFLAGS ?=
LOCAL_CFLAGS = $(WARNING_CFLAGS) -I../include -D_FILE_OFFSET_BITS=64