We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9781d59 commit de85b00Copy full SHA for de85b00
ext/rbs_extension/extconf.rb
@@ -13,6 +13,9 @@
13
14
append_cflags ['-std=gnu99', '-Wimplicit-fallthrough', '-Wunused-result']
15
append_cflags ['-O0', '-g'] if ENV['DEBUG']
16
-$CFLAGS << " -Werror -Wc23-extensions" if ENV["TEST_NO_C23"]
+if ENV["TEST_NO_C23"]
17
+ puts "Adding -Wc23-extensions to CFLAGS"
18
+ $CFLAGS << " -Werror -Wc23-extensions"
19
+end
20
21
create_makefile 'rbs_extension'
0 commit comments