diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2025-01-14 16:24:46 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2025-01-14 16:24:46 -0300 |
commit | 3cdd49c94a8feed94853ba3a6adaa556fb34fd8d (patch) | |
tree | 1f552c966d1fb5f5c23e956e6d98679f02a558b3 /testes/libs | |
parent | 10e931da82268a9d190c17a9bdb9b1a4b48c2947 (diff) | |
download | lua-3cdd49c94a8feed94853ba3a6adaa556fb34fd8d.tar.gz lua-3cdd49c94a8feed94853ba3a6adaa556fb34fd8d.tar.bz2 lua-3cdd49c94a8feed94853ba3a6adaa556fb34fd8d.zip |
Fixed conversion warnings from clang
Plus some other details. (Option '-Wuninitialized' was removed from
the makefile because it is already enabled by -Wall.)
Diffstat (limited to 'testes/libs')
-rw-r--r-- | testes/libs/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testes/libs/makefile b/testes/libs/makefile index 9c0c4e3f..4e7f965e 100644 --- a/testes/libs/makefile +++ b/testes/libs/makefile | |||
@@ -5,7 +5,7 @@ LUA_DIR = ../../ | |||
5 | CC = gcc | 5 | CC = gcc |
6 | 6 | ||
7 | # compilation should generate Dynamic-Link Libraries | 7 | # compilation should generate Dynamic-Link Libraries |
8 | CFLAGS = -Wall -std=gnu99 -O2 -I$(LUA_DIR) -fPIC -shared | 8 | CFLAGS = -Wall -std=c99 -O2 -I$(LUA_DIR) -fPIC -shared |
9 | 9 | ||
10 | # libraries used by the tests | 10 | # libraries used by the tests |
11 | all: lib1.so lib11.so lib2.so lib21.so lib2-v2.so | 11 | all: lib1.so lib11.so lib2.so lib21.so lib2-v2.so |