- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
当尝试安装 bson_ext 时,我看到错误...安装 json gem 工作正常,这还需要构建 native 扩展 - 我已经尝试了所有方法,但没有很好的答案
$ gem install bson_ext
Temporarily enhancing PATH to include DevKit...
Building native extensions. This could take a while...
ERROR: Error installing bson_ext:
ERROR: Failed to build gem native extension.
c:/Ruby193/bin/ruby.exe extconf.rb
checking for asprintf()... no
checking for ruby/st.h... yes
checking for ruby/regex.h... yes
checking for ruby/encoding.h... yes
creating Makefile
make
generating cbson-i386-mingw32.def
compiling bson_buffer.c
compiling cbson.c
cbson.c:25:23: fatal error: arpa/inet.h: No such file or directory
compilation terminated.
make: *** [cbson.o] Error 1
Gem files will remain installed in c:/Ruby193/lib/ruby/gems/1.9.1/gems/bson_ext-
1.11.1 for inspection.
Results logged to c:/Ruby193/lib/ruby/gems/1.9.1/gems/bson_ext-1.11.1/ext/cbson/
gem_make.out
$ gem install json
Temporarily enhancing PATH to include DevKit...
Building native extensions. This could take a while...
Successfully installed json-1.8.1
1 gem installed
Installing ri documentation for json-1.8.1...
Installing RDoc documentation for json-1.8.1...
最佳答案
根据this post <arpa/inet.h>
不是windows库,所以winsock2.h
应改为使用。
要更改此引用,我已完成以下操作**:
#include "<arpa/inet.h>"
的行#include winsock2.h
gem build bson_ext.gemspec
gem install bson_ext-1.11.1.gem --local
现在应该可以成功安装 gem。 ** 巨大的警告:我只是在运行 mongodb for rails 教程,我没有任何可运行的代码来测试它。虽然这消除了安装错误,但我无法确定此修复是否完整。此库引用是 1.11.1 版本的新引用。如果您安装版本 1.10.2,则不会出现此问题 (gem install bson_ext -v 1.10.2
)。我将由您决定哪种解决方案对您更有意义。
编辑:基于a change to the bson-ruby project在 github 上,更好的解决方法是将包含更改为如下所示:
#ifdef _WIN32
#include <winsock2.h>
#else
#include <arpa/inet.h>
#endif
关于ruby-on-rails - window : rails: error installing bson_ext,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26092541/
关于 'bson_ext' 有一个类似的问题,但它对我不起作用。 MongoMapper and bson_ext problem 我使用的是 Rails 2.3.8 + MongoId 1.9.1。
hs-mac-air:~ zuohaisu$ sudo gem install bson_ext -v '1.9.2' Building native extensions. This could
hs-mac-air:~ zuohaisu$ sudo gem install bson_ext -v '1.9.2' Building native extensions. This could
当我在 Rails 项目文件夹中执行以下命令时: gem install bson_ext 我得到这个错误: #result Building native extensions. This cou
我坚持使用 1.5.1 版本安装 bson_ext gem。我已经尝试了几乎所有我在网上找到的东西,但没有任何帮助。 我尝试重新安装 ruby、rvm 等。 我在用: RVM MacOs Cata
我无法在我的 mongo 项目目录中安装 bson_ext 1.8.2 gem。具体来说,我尝试运行 bundle install 和 gem install bson_ext -v '1.8.2'
当尝试安装 bson_ext 时,我看到错误...安装 json gem 工作正常,这还需要构建 native 扩展 - 我已经尝试了所有方法,但没有很好的答案 $ gem install bson_
OSX Lion、Xcode 4.2、GCC 4.2 安装 bson_ext 1.4.1 时出现以下错误 Building native extensions. This could take a
我正在使用 rails 4.2.4 我正在努力遵循这个教程:http://robert-reiz.com/2012/03/05/rails-mongodb-tutorial/ 为了开始将 MongoD
我是一名优秀的程序员,十分优秀!