安装semacode0.7.5gem时发生错误

问题描述

从gemfile安装semacode gem时出现问题。有办法解决吗?我正在运行捆绑安装。这是我的机器问题还是宝石问题?当我尝试在本地运行应用程序时,此问题确实在我的计算机上第一次发生。

使用https://github.com/toretore/semacode.git中的信号代码0.7.5(位于master @ 4e31e0b)

Gem::Ext::BuildError: ERROR: Failed to build gem native extension.



make "DESTDIR=" clean

.rbenv/versions/2.3.5/lib/ruby/gems/2.3.0/bundler/gems/semacode-4e31e0b79a1a/ext
make "DESTDIR="
compiling reedsol.c
compiling semacode.c
semacode.c:61:3: error: implicit declaration of function 'iec16022init' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
  iec16022init(&semacode->width,&semacode->height,message);
  ^
semacode.c:96:28: warning: 'bzero' call operates on objects of type 'semacode_t' (aka 'struct semacode_t') while the size is based on a different type 'semacode_t *' (aka 'struct
semacode_t *') [-Wsizeof-pointer-memaccess]
    bzero(semacode,sizeof(semacode));
          ~~~~~~~~         ^~~~~~~~
semacode.c:96:28: note: did you mean to dereference the argument to 'sizeof' (and multiply it by the number of elements)?
    bzero(semacode,sizeof(semacode));
                           ^~~~~~~~
semacode.c:129:27: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32]
  encode_string(semacode,StringValueLen(message),StringValuePtr(message));
  ~~~~~~~~~~~~~           ^~~~~~~~~~~~~~~~~~~~~~~
./semacode.h:26:27: note: expanded from macro 'StringValueLen'
#define StringValueLen(s) RSTRING_LEN(RB_STRING_VALUE(s))
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

     RSTRING_EMbed_LEN(str) : \
     ^~~~~~~~~~~~~~~~~~~~~~

     (long)((RBASIC(str)->flags >> RSTRING_EMbed_LEN_SHIFT) & \
     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
semacode.c:129:27: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32]
  encode_string(semacode,StringValuePtr(message));
  ~~~~~~~~~~~~~           ^~~~~~~~~~~~~~~~~~~~~~~
./semacode.h:26:27: note: expanded from macro 'StringValueLen'
#define StringValueLen(s) RSTRING_LEN(RB_STRING_VALUE(s))
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-2.3.0/ruby/ruby.h:995:28: note: expanded from macro 'RSTRING_LEN'
     RSTRING(str)->as.heap.len)
     ~~~~~~~~~~~~~~~~~~~~~~^~~
semacode.c:239:20: warning: equality comparison result unused [-Wunused-comparison]
    semacode->data == NULL;
    ~~~~~~~~~~~~~~~^~~~~~~
semacode.c:239:20: note: use '=' to turn this equality comparison into an assignment
    semacode->data == NULL;
                   ^~
                   =
semacode.c:243:44: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32]
  DATA_PTR(self) = encode_string(semacode,StringValuePtr(message));
                   ~~~~~~~~~~~~~           ^~~~~~~~~~~~~~~~~~~~~~~
./semacode.h:26:27: note: expanded from macro 'StringValueLen'
#define StringValueLen(s) RSTRING_LEN(RB_STRING_VALUE(s))
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.rbenv/versions/2.3.5/include/ruby-2.3.0/ruby/ruby.h:994:6: note: expanded from macro 'RSTRING_LEN'
     RSTRING_EMbed_LEN(str) : \
     ^~~~~~~~~~~~~~~~~~~~~~
.rbenv/versions/2.3.5/include/ruby-2.3.0/ruby/ruby.h:990:6: note: expanded from macro 'RSTRING_EMbed_LEN'
     (long)((RBASIC(str)->flags >> RSTRING_EMbed_LEN_SHIFT) & \
     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
semacode.c:243:44: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32]
  DATA_PTR(self) = encode_string(semacode,StringValuePtr(message));
                   ~~~~~~~~~~~~~           ^~~~~~~~~~~~~~~~~~~~~~~
./semacode.h:26:27: note: expanded from macro 'StringValueLen'
#define StringValueLen(s) RSTRING_LEN(RB_STRING_VALUE(s))
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.rbenv/versions/2.3.5/include/ruby-2.3.0/ruby/ruby.h:995:28: note: expanded from macro 'RSTRING_LEN'
     RSTRING(str)->as.heap.len)
     ~~~~~~~~~~~~~~~~~~~~~~^~~
6 warnings and 1 error generated.
make: *** [semacode.o] Error 1

make Failed,exit code 2

Gem files will remain installed in .rbenv/versions/2.3.5/lib/ruby/gems/2.3.0/bundler/gems/semacode-4e31e0b79a1a for inspection.
Results logged to .rbenv/versions/2.3.5/lib/ruby/gems/2.3.0/bundler/gems/extensions/x86_64-darwin-19/2.3.0-static/semacode-4e31e0b79a1a/gem_make.out

An error occurred while installing semacode (0.7.5),and Bundler cannot continue.

In Gemfile:
  semacode

解决方法

自v12发布以来,我已经在macOS上看到了一些类似的问题。如果您有v12,则可以尝试从download.developer.apple.com/Developer_Tools/…降级到v11.5,然后重试gem安装

信用-@anothermh

,

尝试一下

gem install semacode -v 0.7.5 -- --with-cflags="-Wno-error=implicit-function-declaration"

这里是更多信息:

现在,当在为macOS构建C或Objective-C代码时使用没有显式声明的函数时,Clang报告错误(-Werror = implicit-function-declaration标志处于打开状态)。这种额外的错误检测功能使Clang在iOS / tvOS和macOS 64位目标上的行为得以统一。 (49917738)

https://developer.apple.com/documentation/xcode-release-notes/xcode-12-release-notes