Cyb*_*ber 13 ruby ruby-on-rails ruby-on-rails-4
我用Ruby v2和Rails v4开发了一个rails web项目.它完全在我当前的系统中工作,当我试图在另一台Linux机器(Ubuntu 12.4)中运行该项目时,我收到了一个Tidy_tds错误.
此错误在当时显示bundle install,
错误详情如下
Gem::Ext::BuildError: ERROR: Failed to build gem native extension.
/home/action/.rvm/rubies/ruby-2.1.1/bin/ruby extconf.rb
checking for iconv_open() in iconv.h... yes
checking for sybfront.h... no
-----
freetds is missing.
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.
Provided configuration options:
--with-opt-dir
--without-opt-dir
--with-opt-include
--without-opt-lib=${opt-dir}/lib
--with-make-prog
--without-make-prog
--srcdir=.
--curdir
--ruby=/home/action/.rvm/rubies/ruby-2.1.1/bin/ruby
--enable-lookup
--disable-lookup
--with-iconv-dir
--without-iconv-dir
--with-iconv-include
--without-iconv-include=${iconv-dir}/include
--with-iconv-lib
--without-iconv-lib=${iconv-dir}/lib
--with-freetds-dir
--without-freetds-dir
--with-freetds-include
--without-freetds-include=${freetds-dir}/include
--with-freetds-lib
--without-freetds-lib=${freetds-dir}/lib
extconf failed, exit code 1
Gem files will remain installed in /home/action/.rvm/gems/ruby-2.1.1/gems/tiny_tds-0.6.1 for inspection.
Results logged to /home/action/.rvm/gems/ruby-2.1.1/extensions/x86_64-linux/2.1.0/tiny_tds-0.6.1/gem_make.out
An error occurred while installing tiny_tds (0.6.1), and Bundler cannot continue.
Make sure that `gem install tiny_tds -v '0.6.1'` succeeds before bundling.
Run Code Online (Sandbox Code Playgroud)
我也尝试过单独安装tiny_tds,但我仍然遇到同样的问题
gem install tiny_tds -v '0.6.1'
Run Code Online (Sandbox Code Playgroud)
我的宝石文件,
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.0.2'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.0'
gem 'tiny_tds'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
gem 'jquery-ui-rails' # jquery ui
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.2'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
# Use sqlserver as the database for Active Record
gem 'activerecord-sqlserver-adapter', :git => 'https://github.com/nextgearcapital/activerecord-sqlserver-adapter.git'
gem "therubyracer"
gem "less-rails"
gem "twitter-bootstrap-rails"
gem 'bootstrap-datepicker-rails'
gem 'will_paginate'
gem 'sqlite3'
gem 'formtastic'
Run Code Online (Sandbox Code Playgroud)
为什么会出现此错误以及如何解决此问题.
任何帮助表示赞赏
小智 25
看起来你没有在这台机器上安装freetds:
sudo apt-get install freetds-dev
Run Code Online (Sandbox Code Playgroud)
如果你看到freetds-dev包的细节,你会发现它有丢失的文件sybfront.h
我知道没有宝石,freetds构建tiny_tds宝石需要它编译.但是,您应该可以使用构建自己的gem版本MiniPortile.
gem install您需要克隆tiny_tdsGitHub,然后为您的环境构建本机gem,而不是使用常规机制.此过程将包括下载freetds用于编译gem 的特定版本.
这应该可以解决无法安装freetds-dev软件包的问题,但确实有一个缺点,即如果tiny_tds将来更新gem,您每次都需要重复此过程 - 您不能简单地利用它bundle update.
你需要遵循的详细步骤这里.
| 归档时间: |
|
| 查看次数: |
12708 次 |
| 最近记录: |