We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f45cb0e commit 8e29422Copy full SHA for 8e29422
src/main/c/openssl/extconf.rb
@@ -16,6 +16,8 @@
16
if defined?(::TruffleRuby)
17
require 'truffle/openssl-prefix'
18
dir_config("openssl", ENV["OPENSSL_PREFIX"])
19
+ # Needed with libssl 3.0.0 and -Werror from building core C extensions
20
+ $warnflags += ' -Wno-deprecated-declarations'
21
else
22
dir_config("openssl")
23
end
test/truffle/cexts/werror/ext/werror/extconf.rb
@@ -1,4 +1,4 @@
1
require 'mkmf'
2
# No -pedantic because polyglot-impl.h fails that, and well, it's too pedantic
3
-$warnflags << ' -W -Wall -Wextra -Werror'
+$warnflags += ' -W -Wall -Wextra -Werror'
4
create_makefile('werror')
0 commit comments