Handle clang 13 warnings

This commit is contained in:
Jean Boussier 2022-01-11 13:35:18 +01:00
parent 96748096df
commit e613d86acc
1 changed files with 1 additions and 0 deletions

View File

@ -16,6 +16,7 @@ if RUBY_ENGINE == 'ruby'
$CFLAGS << ' -Wno-unused-parameter' # VALUE self has to be there but we don't care what it is.
$CFLAGS << ' -Wno-keyword-macro' # hiding return
$CFLAGS << ' -Wno-gcc-compat' # ruby.h 2.6.0 on macos 10.14, dunno
$CFLAGS << ' -Wno-compound-token-split-by-macro'
end
create_makefile("bootsnap/bootsnap")