lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


This is the default of Apple for iOS, tvOS and watchOS projects. I've just created a new embedded framework project and dropped the Lua source code. :-)
Maybe Apple is being too pedantic with the warning flags?

On Fri, May 31, 2019 at 8:59 AM Roberto Ierusalimschy <roberto@inf.puc-rio.br> wrote:
> I've compiled the latest lua54-alpha-rc1 on clang, clang reported 38
> warnings. Would be nice to double check just to be sure is not a source of
> problems. (also would be nice to have no warning on clang, since we have no
> warning on gcc and MSVC).

If I understood correctly, you compiled with a lot of extra "-W*" options.
We certainly prefer no warnings on clang, but not no warnings for all
"-W*" options. After all, they are not part of '-Wall' for a reason.
What was your criteria for choosing those options?

-- Roberto