我正在尝试在 Ubuntu Saucy 上安装 gsl gem
我安装了相关的gsl包
sudo apt-get install gsl-bin libgsl0-dev
但随后安装 gem 失败
In file included from /usr/include/ruby-1.9.1/ruby.h:32:0,
from ../include/rb_gsl_array.h:34,
from wavelet.c:13:
wavelet.c: In function ‘rb_gsl_wavelet_define_const’:
wavelet.c:155:45: error: ‘forward’ undeclared (first use in this function)
rb_define_const(klass, "FORWARD", INT2FIX(forward));
^
/usr/include/ruby-1.9.1/ruby/ruby.h:225:45: note: in definition of macro ‘INT2FIX’
#define INT2FIX(i) ((VALUE)(((SIGNED_VALUE)(i))<<1 | FIXNUM_FLAG))
^
wavelet.c:155:45: note: each undeclared identifier is reported only once for each function it appears in
rb_define_const(klass, "FORWARD", INT2FIX(forward));
^
/usr/include/ruby-1.9.1/ruby/ruby.h:225:45: note: in definition of macro ‘INT2FIX’
#define INT2FIX(i) ((VALUE)(((SIGNED_VALUE)(i))<<1 | FIXNUM_FLAG))
^
wavelet.c:157:46: error: ‘backward’ undeclared (first use in this function)
rb_define_const(klass, "BACKWARD", INT2FIX(backward));
^
/usr/include/ruby-1.9.1/ruby/ruby.h:225:45: note: in definition of macro ‘INT2FIX’
#define INT2FIX(i) ((VALUE)(((SIGNED_VALUE)(i))<<1 | FIXNUM_FLAG))
^
wavelet.c: In function ‘rb_gsl_wavelet_transform0’:
wavelet.c:194:31: error: ‘forward’ undeclared (first use in this function)
gsl_wavelet_direction dir = forward;
^
wavelet.c: In function ‘rb_gsl_wavelet2d’:
wavelet.c:534:31: error: ‘forward’ undeclared (first use in this function)
gsl_wavelet_direction dir = forward;
^
make: *** [wavelet.o] Error 1
问题与此类似:Problems installed gsl gem
但是,该线程的顶级解决方案不起作用-该地址不再提供 gsl 1.14 的源包。我想这将对许多使用 Saucy 的用户有用。