On Wed, Oct 21, 2020 at 02:13:19PM +0800, Yu Chuan wrote:
On Wed, Oct 21, 2020 at 11:42:49AM +0800, Li Yuanchao wrote:
Emm... Does it really need so mush change log for this patch?
I just paste the original stdout here, but it looks no need to do that,
It's fine to do that.
I'll take care of this next time. Thanks.
As long as it's not a big effort. Not a big deal.
Thanks, Fengguang
On Wed, Oct 21, 2020 at 11:34:51AM +0800, Yu Chuan wrote:
[Why]
- param: '-y'
- ./sbin/install-dependencies.sh
...Omit... Total download size: 3.7 M Installed size: 18 M Is this ok [y/N]:
- pkgs: gcc, gcc-c++, make
ERROR: Error installing rest-client: ERROR: Failed to build gem native extension.
current directory: /usr/local/share/gems/gems/unf_ext-0.0.7.7/ext/unf_ext
/usr/bin/ruby -r ./siteconf20201020-5195-h45kpd.rb extconf.rb checking for -lstdc++... *** extconf.rb failed *** Could not create Makefile due to some reason, probably lack of necessary libraries and/or headers. Check the mkmf.log file for more details. You may need configuration options. ...Omit... /usr/share/ruby/mkmf.rb:456:in `try_do': The compiler failed to generate an executable file. (RuntimeError) You have to install development tools first. ...Omit...
- pkg: ruby-devel
ERROR: Error installing rest-client: ERROR: Failed to build gem native extension.
current directory: /usr/local/share/gems/gems/unf_ext-0.0.7.7/ext/unf_ext
/usr/bin/ruby -r ./siteconf20201020-5371-1gqrhar.rb extconf.rb mkmf.rb can't find header files for ruby at /usr/share/include/ruby.h
extconf failed, exit code 1
Gem files will remain installed in /usr/local/share/gems/gems/unf_ext-0.0.7.7 for inspection. Results logged to /usr/local/lib64/gems/ruby/unf_ext-0.0.7.7/gem_make.out
- pkg: git
- {LKP_SRC}/sbin/submit test-tools.yaml
/usr/local/share/gems/gems/git-1.7.0/lib/git/lib.rb:989:in `command': git '-c' 'color.ui=false' version 2>&1:sh: git: command not found (Git::GitExecuteError)
Signed-off-by: Yu Chuan 13186087857@163.com
sbin/install-dependencies.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sbin/install-dependencies.sh b/sbin/install-dependencies.sh index 48457d4c61cc..5673f7a773a3 100644 --- a/sbin/install-dependencies.sh +++ b/sbin/install-dependencies.sh @@ -14,9 +14,9 @@ ubuntu|debian) ;; openEuler|fedora|rhel|centos) if type dnf > /dev/null 2>&1; then
dnf install --skip-broken ruby rubygems
elsednf install -y --skip-broken ruby rubygems gcc gcc-c++ make ruby-devel git
yum install --skip-broken ruby rubygems
fi gem install -f git activesupport rest-client ;;yum install -y --skip-broken ruby rubygems gcc gcc-c++ make ruby-devel git
-- 2.23.0