Skip to content

Instantly share code, notes, and snippets.

@luck02
Created December 17, 2013 16:37
Show Gist options
  • Save luck02/8007965 to your computer and use it in GitHub Desktop.
Save luck02/8007965 to your computer and use it in GitHub Desktop.
Vagrant-berkshelf fails to install under vagrant 1.4 First file is output from: vagrant plugin install vagrant-berkshelf --debug &> vagrantBerkshelfDebug.txt
"c:/Program Files (x86)/HashiCorp/Vagrant/embedded/bin/ruby.exe" extconf.rb
checking for rb_thread_blocking_region()... yes
checking for sys/select.h... no
checking for poll.h... no
checking for sys/epoll.h... no
checking for sys/event.h... no
checking for port.h... no
checking for sys/resource.h... no
creating Makefile
make "DESTDIR="
Makefile:237: *** multiple target patterns. Stop.
have_func: checking for rb_thread_blocking_region()... -------------------- yes
"gcc -o conftest.exe -I"c:/Program Files (x86)/HashiCorp/Vagrant/embedded/include/ruby-2.0.0/i386-mingw32" -I"c:/Program Files (x86)/HashiCorp/Vagrant/embedded/include/ruby-2.0.0"/ruby/backward -I"c:/Program Files (x86)/HashiCorp/Vagrant/embedded/include/ruby-2.0.0" -I. -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64 -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L"c:/Program Files (x86)/HashiCorp/Vagrant/embedded/lib" -L. -lmsvcrt-ruby200 -lshell32 -lws2_32 -limagehlp -lshlwapi "
checked program was:
/* begin */
1: #include "ruby.h"
2:
3: #include <winsock2.h>
4: #include <windows.h>
5: int main(int argc, char **argv)
6: {
7: return 0;
8: }
/* end */
"gcc -o conftest.exe -I"c:/Program Files (x86)/HashiCorp/Vagrant/embedded/include/ruby-2.0.0/i386-mingw32" -I"c:/Program Files (x86)/HashiCorp/Vagrant/embedded/include/ruby-2.0.0"/ruby/backward -I"c:/Program Files (x86)/HashiCorp/Vagrant/embedded/include/ruby-2.0.0" -I. -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64 -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L"c:/Program Files (x86)/HashiCorp/Vagrant/embedded/lib" -L. -lmsvcrt-ruby200 -lshell32 -lws2_32 -limagehlp -lshlwapi "
conftest.c: In function 't':
conftest.c:8:1: warning: 'rb_thread_blocking_region' is deprecated (declared at c:/Program Files (x86)/HashiCorp/Vagrant/embedded/include/ruby-2.0.0/ruby/intern.h:841) [-Wdeprecated-declarations]
conftest.c:8:32: warning: variable 'p' set but not used [-Wunused-but-set-variable]
checked program was:
/* begin */
1: #include "ruby.h"
2:
3: #include <winsock2.h>
4: #include <windows.h>
5:
6: /*top*/
7: extern int t(void);
8: int t(void) { void ((*volatile p)()); p = (void ((*)()))rb_thread_blocking_region; return 0; }
9: int main(int argc, char **argv)
10: {
11: if (argc > 1000000) {
12: printf("%p", &t);
13: }
14:
15: return 0;
16: }
/* end */
--------------------
have_header: checking for sys/select.h... -------------------- no
"gcc -E -I"c:/Program Files (x86)/HashiCorp/Vagrant/embedded/include/ruby-2.0.0/i386-mingw32" -I"c:/Program Files (x86)/HashiCorp/Vagrant/embedded/include/ruby-2.0.0"/ruby/backward -I"c:/Program Files (x86)/HashiCorp/Vagrant/embedded/include/ruby-2.0.0" -I. -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64 -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -o conftest.i"
conftest.c:5:24: fatal error: sys/select.h: No such file or directory
compilation terminated.
checked program was:
/* begin */
1: #include "ruby.h"
2:
3: #include <winsock2.h>
4: #include <windows.h>
5: #include <sys/select.h>
/* end */
--------------------
have_header: checking for poll.h... -------------------- no
"gcc -E -I"c:/Program Files (x86)/HashiCorp/Vagrant/embedded/include/ruby-2.0.0/i386-mingw32" -I"c:/Program Files (x86)/HashiCorp/Vagrant/embedded/include/ruby-2.0.0"/ruby/backward -I"c:/Program Files (x86)/HashiCorp/Vagrant/embedded/include/ruby-2.0.0" -I. -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64 -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -o conftest.i"
conftest.c:5:18: fatal error: poll.h: No such file or directory
compilation terminated.
checked program was:
/* begin */
1: #include "ruby.h"
2:
3: #include <winsock2.h>
4: #include <windows.h>
5: #include <poll.h>
/* end */
--------------------
have_header: checking for sys/epoll.h... -------------------- no
"gcc -E -I"c:/Program Files (x86)/HashiCorp/Vagrant/embedded/include/ruby-2.0.0/i386-mingw32" -I"c:/Program Files (x86)/HashiCorp/Vagrant/embedded/include/ruby-2.0.0"/ruby/backward -I"c:/Program Files (x86)/HashiCorp/Vagrant/embedded/include/ruby-2.0.0" -I. -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64 -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -o conftest.i"
conftest.c:5:23: fatal error: sys/epoll.h: No such file or directory
compilation terminated.
checked program was:
/* begin */
1: #include "ruby.h"
2:
3: #include <winsock2.h>
4: #include <windows.h>
5: #include <sys/epoll.h>
/* end */
--------------------
have_header: checking for sys/event.h... -------------------- no
"gcc -E -I"c:/Program Files (x86)/HashiCorp/Vagrant/embedded/include/ruby-2.0.0/i386-mingw32" -I"c:/Program Files (x86)/HashiCorp/Vagrant/embedded/include/ruby-2.0.0"/ruby/backward -I"c:/Program Files (x86)/HashiCorp/Vagrant/embedded/include/ruby-2.0.0" -I. -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64 -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -o conftest.i"
conftest.c:5:23: fatal error: sys/event.h: No such file or directory
compilation terminated.
checked program was:
/* begin */
1: #include "ruby.h"
2:
3: #include <winsock2.h>
4: #include <windows.h>
5: #include <sys/event.h>
/* end */
--------------------
have_header: checking for port.h... -------------------- no
"gcc -E -I"c:/Program Files (x86)/HashiCorp/Vagrant/embedded/include/ruby-2.0.0/i386-mingw32" -I"c:/Program Files (x86)/HashiCorp/Vagrant/embedded/include/ruby-2.0.0"/ruby/backward -I"c:/Program Files (x86)/HashiCorp/Vagrant/embedded/include/ruby-2.0.0" -I. -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64 -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -o conftest.i"
conftest.c:5:18: fatal error: port.h: No such file or directory
compilation terminated.
checked program was:
/* begin */
1: #include "ruby.h"
2:
3: #include <winsock2.h>
4: #include <windows.h>
5: #include <port.h>
/* end */
--------------------
have_header: checking for sys/resource.h... -------------------- no
"gcc -E -I"c:/Program Files (x86)/HashiCorp/Vagrant/embedded/include/ruby-2.0.0/i386-mingw32" -I"c:/Program Files (x86)/HashiCorp/Vagrant/embedded/include/ruby-2.0.0"/ruby/backward -I"c:/Program Files (x86)/HashiCorp/Vagrant/embedded/include/ruby-2.0.0" -I. -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0501 -D_FILE_OFFSET_BITS=64 -O3 -fno-omit-frame-pointer -fno-fast-math -g -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -o conftest.i"
conftest.c:5:26: fatal error: sys/resource.h: No such file or directory
compilation terminated.
checked program was:
/* begin */
1: #include "ruby.h"
2:
3: #include <winsock2.h>
4: #include <windows.h>
5: #include <sys/resource.h>
/* end */
--------------------
INFO global: Vagrant version: 1.4.0
INFO global: Ruby version: 2.0.0
INFO global: RubyGems version: 2.0.14
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/commands/box/plugin.rb
INFO manager: Registered plugin: box command
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/commands/destroy/plugin.rb
INFO manager: Registered plugin: destroy command
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/commands/halt/plugin.rb
INFO manager: Registered plugin: halt command
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/commands/help/plugin.rb
INFO manager: Registered plugin: help command
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/commands/init/plugin.rb
INFO manager: Registered plugin: init command
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/commands/package/plugin.rb
INFO manager: Registered plugin: package command
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/commands/plugin/plugin.rb
INFO manager: Registered plugin: plugin command
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/commands/provision/plugin.rb
INFO manager: Registered plugin: provision command
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/commands/reload/plugin.rb
INFO manager: Registered plugin: reload command
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/commands/resume/plugin.rb
INFO manager: Registered plugin: resume command
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/commands/ssh/plugin.rb
INFO manager: Registered plugin: ssh command
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/commands/ssh_config/plugin.rb
INFO manager: Registered plugin: ssh-config command
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/commands/status/plugin.rb
INFO manager: Registered plugin: status command
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/commands/suspend/plugin.rb
INFO manager: Registered plugin: suspend command
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/commands/up/plugin.rb
INFO manager: Registered plugin: up command
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/communicators/ssh/plugin.rb
INFO manager: Registered plugin: ssh communicator
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/guests/arch/plugin.rb
INFO manager: Registered plugin: Arch guest
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/guests/coreos/plugin.rb
INFO manager: Registered plugin: CoreOS guest
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/guests/darwin/plugin.rb
INFO manager: Registered plugin: Darwin guest
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/guests/debian/plugin.rb
INFO manager: Registered plugin: Debian guest
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/guests/esxi/plugin.rb
INFO manager: Registered plugin: ESXi guest.
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/guests/fedora/plugin.rb
INFO manager: Registered plugin: Fedora guest
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/guests/freebsd/plugin.rb
INFO manager: Registered plugin: FreeBSD guest
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/guests/gentoo/plugin.rb
INFO manager: Registered plugin: Gentoo guest
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/guests/linux/plugin.rb
INFO manager: Registered plugin: Linux guest.
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/guests/omnios/plugin.rb
INFO manager: Registered plugin: OmniOS guest.
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/guests/openbsd/plugin.rb
INFO manager: Registered plugin: OpenBSD guest
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/guests/pld/plugin.rb
INFO manager: Registered plugin: PLD Linux guest
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/guests/redhat/plugin.rb
INFO manager: Registered plugin: RedHat guest
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/guests/solaris/plugin.rb
INFO manager: Registered plugin: Solaris guest.
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/guests/solaris11/plugin.rb
INFO manager: Registered plugin: Solaris 11 guest.
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/guests/suse/plugin.rb
INFO manager: Registered plugin: SUSE guest
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/guests/ubuntu/plugin.rb
INFO manager: Registered plugin: Ubuntu guest
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/hosts/arch/plugin.rb
INFO manager: Registered plugin: Arch host
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/hosts/bsd/plugin.rb
INFO manager: Registered plugin: BSD host
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/hosts/freebsd/plugin.rb
INFO manager: Registered plugin: FreeBSD host
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/hosts/gentoo/plugin.rb
INFO manager: Registered plugin: Gentoo host
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/hosts/linux/plugin.rb
INFO manager: Registered plugin: Linux host
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/hosts/opensuse/plugin.rb
INFO manager: Registered plugin: OpenSUSE host
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/hosts/redhat/plugin.rb
INFO manager: Registered plugin: Red Hat host
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/hosts/slackware/plugin.rb
INFO manager: Registered plugin: Slackware host
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/hosts/windows/plugin.rb
INFO manager: Registered plugin: Windows host
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/kernel_v1/plugin.rb
INFO manager: Registered plugin: kernel
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/kernel_v2/plugin.rb
INFO manager: Registered plugin: kernel
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/providers/virtualbox/plugin.rb
INFO manager: Registered plugin: VirtualBox provider
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/provisioners/ansible/plugin.rb
INFO manager: Registered plugin: ansible
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/provisioners/cfengine/plugin.rb
INFO manager: Registered plugin: CFEngine Provisioner
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/provisioners/chef/plugin.rb
INFO manager: Registered plugin: chef
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/provisioners/docker/plugin.rb
INFO manager: Registered plugin: docker
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/provisioners/file/plugin.rb
INFO manager: Registered plugin: file
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/provisioners/puppet/plugin.rb
INFO manager: Registered plugin: puppet
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/provisioners/salt/plugin.rb
INFO manager: Registered plugin: salt
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/provisioners/shell/plugin.rb
INFO manager: Registered plugin: shell
DEBUG global: Loading core plugin: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/synced_folders/nfs/plugin.rb
INFO manager: Registered plugin: NFS synced folders
INFO vagrant: `vagrant` invoked: ["plugin", "install", "vagrant-berkshelf", "--debug"]
DEBUG vagrant: Creating Vagrant environment
INFO environment: Environment initialized (#<Vagrant::Environment:0x2893050>)
INFO environment: - cwd: c:/dev/web-PermitsAPI
INFO environment: Home path: C:/VagrantHome
INFO environment: Creating: C:/VagrantHome
INFO environment: Creating: C:/VagrantHome/boxes
INFO environment: Creating: C:/VagrantHome/data
INFO environment: Creating: C:/VagrantHome/gems
INFO environment: Creating: C:/VagrantHome/rgloader
INFO environment: Creating: C:/VagrantHome/tmp
DEBUG environment: Setting up the version file.
WARN environment: No local data path is set. Local data cannot be stored.
INFO environment: Copying private key to home directory
DEBUG environment: Loading plugins from: C:/VagrantHome/plugins.json
INFO environment: Running hook: environment_plugins_loaded
INFO runner: Running action: #<Vagrant::Action::Builder:0x3272ec8>
INFO environment: Running hook: environment_load
INFO environment: Initializing config...
INFO loader: Set :default = "c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/config/default.rb"
DEBUG loader: Populating proc cache for "c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/config/default.rb"
DEBUG loader: Load procs for pathname: c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/config/default.rb
INFO loader: Loading configuration in order: [:default, :home, :root]
DEBUG loader: Loading from: default (evaluating)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG hosts: Host path search classes: [VagrantPlugins::HostWindows::Host, VagrantPlugins::HostSlackware::Host, VagrantPlugins::HostRedHat::Host, VagrantPlugins::HostOpenSUSE::Host, VagrantPlugins::HostFreeBSD::Host, VagrantPlugins::HostGentoo::Host, VagrantPlugins::HostArch::Host, VagrantPlugins::HostBSD::Host, VagrantPlugins::HostLinux::Host]
INFO hosts: Host class: VagrantPlugins::HostWindows::Host
INFO runner: Running action: #<Vagrant::Action::Builder:0x3226320>
INFO cli: CLI: [] "plugin" ["install", "vagrant-berkshelf", "--"]
DEBUG cli: Invoking command class: VagrantPlugins::CommandPlugin::Command::Root ["install", "vagrant-berkshelf", "--"]
DEBUG root: Invoking command class: VagrantPlugins::CommandPlugin::Command::Install ["vagrant-berkshelf", "--"]
INFO runner: Running action: #<Vagrant::Action::Builder:0x3253ea8>
INFO warden: Calling IN action: #<VagrantPlugins::CommandPlugin::Action::BundlerCheck:0x34e7d70>
INFO warden: Calling IN action: #<VagrantPlugins::CommandPlugin::Action::InstallGem:0x34e7d58>
INFO interface: info: Installing the 'vagrant-berkshelf' plugin. This can take a few minutes...
Installing the 'vagrant-berkshelf' plugin. This can take a few minutes...
DEBUG gemhelper: Set GEM_* to: C:/VagrantHome/gems
ERROR warden: Error occurred: ERROR: Failed to build gem native extension.
"c:/Program Files (x86)/HashiCorp/Vagrant/embedded/bin/ruby.exe" extconf.rb
checking for rb_thread_blocking_region()... yes
checking for sys/select.h... no
checking for poll.h... no
checking for sys/epoll.h... no
checking for sys/event.h... no
checking for port.h... no
checking for sys/resource.h... no
creating Makefile
make "DESTDIR="
Makefile:237: *** multiple target patterns. Stop.
Gem files will remain installed in C:/VagrantHome/gems/gems/nio4r-0.5.0 for inspection.
Results logged to C:/VagrantHome/gems/gems/nio4r-0.5.0/ext/nio4r/gem_make.out
INFO warden: Beginning recovery process...
INFO warden: Calling recover: #<VagrantPlugins::CommandPlugin::Action::InstallGem:0x34e7d58>
INFO warden: Recovery complete.
INFO warden: Beginning recovery process...
INFO warden: Recovery complete.
INFO environment: Running hook: environment_unload
INFO runner: Running action: #<Vagrant::Action::Builder:0x5d1dc10>
c:/Program Files (x86)/HashiCorp/Vagrant/embedded/lib/ruby/2.0.0/rubygems/ext/builder.rb:62:in `run': ERROR: Failed to build gem native extension. (Gem::Installer::ExtensionBuildError)
"c:/Program Files (x86)/HashiCorp/Vagrant/embedded/bin/ruby.exe" extconf.rb
checking for rb_thread_blocking_region()... yes
checking for sys/select.h... no
checking for poll.h... no
checking for sys/epoll.h... no
checking for sys/event.h... no
checking for port.h... no
checking for sys/resource.h... no
creating Makefile
make "DESTDIR="
Makefile:237: *** multiple target patterns. Stop.
Gem files will remain installed in C:/VagrantHome/gems/gems/nio4r-0.5.0 for inspection.
Results logged to C:/VagrantHome/gems/gems/nio4r-0.5.0/ext/nio4r/gem_make.out
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/lib/ruby/2.0.0/rubygems/ext/builder.rb:35:in `block in make'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/lib/ruby/2.0.0/rubygems/ext/builder.rb:28:in `each'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/lib/ruby/2.0.0/rubygems/ext/builder.rb:28:in `make'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/lib/ruby/2.0.0/rubygems/ext/ext_conf_builder.rb:45:in `block in build'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/lib/ruby/2.0.0/tempfile.rb:324:in `open'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/lib/ruby/2.0.0/rubygems/ext/ext_conf_builder.rb:19:in `build'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/lib/ruby/2.0.0/rubygems/installer.rb:689:in `block (3 levels) in build_extensions'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/lib/ruby/2.0.0/rubygems/installer.rb:688:in `chdir'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/lib/ruby/2.0.0/rubygems/installer.rb:688:in `block (2 levels) in build_extensions'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/lib/ruby/2.0.0/rubygems/installer.rb:687:in `synchronize'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/lib/ruby/2.0.0/rubygems/installer.rb:687:in `block in build_extensions'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/lib/ruby/2.0.0/rubygems/installer.rb:662:in `each'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/lib/ruby/2.0.0/rubygems/installer.rb:662:in `build_extensions'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/lib/ruby/2.0.0/rubygems/installer.rb:227:in `install'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/lib/ruby/2.0.0/rubygems/dependency_installer.rb:379:in `block in install'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/lib/ruby/2.0.0/rubygems/dependency_installer.rb:339:in `each'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/lib/ruby/2.0.0/rubygems/dependency_installer.rb:339:in `each_with_index'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/lib/ruby/2.0.0/rubygems/dependency_installer.rb:339:in `install'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/commands/plugin/action/install_gem.rb:62:in `block in call'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/commands/plugin/gem_helper.rb:42:in `block in with_environment'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/lib/ruby/2.0.0/rubygems/user_interaction.rb:40:in `use_ui'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/commands/plugin/gem_helper.rb:41:in `with_environment'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/commands/plugin/action/install_gem.rb:52:in `call'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/lib/vagrant/action/warden.rb:34:in `call'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/commands/plugin/action/bundler_check.rb:20:in `call'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/lib/vagrant/action/warden.rb:34:in `call'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/lib/vagrant/action/builder.rb:116:in `call'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/lib/vagrant/action/runner.rb:69:in `block in run'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/lib/vagrant/util/busy.rb:19:in `busy'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/lib/vagrant/action/runner.rb:69:in `run'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/commands/plugin/command/base.rb:17:in `action'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/commands/plugin/command/install.rb:27:in `execute'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/plugins/commands/plugin/command/root.rb:56:in `execute'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/lib/vagrant/cli.rb:38:in `execute'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/lib/vagrant/environment.rb:484:in `cli'
from c:/Program Files (x86)/HashiCorp/Vagrant/embedded/gems/gems/vagrant-1.4.0/bin/vagrant:127:in `<top (required)>'
from c:/Program Files (x86)/HashiCorp/Vagrant/bin/../embedded/gems/bin/vagrant:23:in `load'
from c:/Program Files (x86)/HashiCorp/Vagrant/bin/../embedded/gems/bin/vagrant:23:in `<main>'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment