diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-11-22 19:01:07 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-11-22 19:01:07 -0800 |
commit | 76329c0206ede0a986da423e6a813ef91334f6cd (patch) | |
tree | 5a70ab28b4d10e92b0e2ca8e12efc99f2b8fd425 /src/luasocket/makefile | |
parent | e77f3eb9f9cfbd79f56c666545e96d00cb752695 (diff) | |
download | teliva-76329c0206ede0a986da423e6a813ef91334f6cd.tar.gz |
standardize warning flags everywhere
I'd like to enable -Wextra as well, but that creates some false positives. I've at least made my changes clean w.r.t. -Wextra. Now we have 4 remaining warnings with gcc 9.3 that seem genuine. Need to fix those.
Diffstat (limited to 'src/luasocket/makefile')
-rw-r--r-- | src/luasocket/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/luasocket/makefile b/src/luasocket/makefile index 688aca4..f6548d9 100644 --- a/src/luasocket/makefile +++ b/src/luasocket/makefile @@ -174,7 +174,7 @@ SO_linux=so O_linux=o CC_linux=gcc DEF_linux=-DLUASOCKET_$(DEBUG) -CFLAGS_linux=-g -O2 -Wall -Wpedantic -Wshadow -Wextra $(LUAINC:%=-I%) $(DEF) +CFLAGS_linux= -g -O2 -Wall -Wpedantic -Wshadow -Wextra $(LUAINC:%=-I%) $(DEF) LDFLAGS_linux= -o LD_linux=ld SOCKET_linux=usocket.o |