Make ruby build debuggable

pull/10676/head
Craig Tiller 8 years ago
parent 1b6097cfac
commit f85aabf659
  1. 2
      src/ruby/ext/grpc/extconf.rb

@ -84,7 +84,7 @@ unless windows
puts 'Building internal gRPC into ' + grpc_lib_dir
nproc = 4
nproc = Etc.nprocessors * 2 if Etc.respond_to? :nprocessors
system("make -j#{nproc} -C #{grpc_root} #{grpc_lib_dir}/libgrpc.a CONFIG=#{grpc_config}")
system("make -j#{nproc} -C #{grpc_root} #{grpc_lib_dir}/libgrpc.a CONFIG=#{grpc_config} Q=")
exit 1 unless $? == 0
end

Loading…
Cancel
Save