diff options
author | Azat Khuzhin <a3at.mail@gmail.com> | 2018-08-01 00:44:58 +0300 |
---|---|---|
committer | Azat Khuzhin <a3at.mail@gmail.com> | 2018-08-01 00:44:58 +0300 |
commit | 0f04e9a401b0ebba7863b36e2f305c664980ba79 (patch) | |
tree | 03e04ff2de0db77985bed2a4ac0746139f13fe35 /Vagrantfile | |
parent | 9cd279c753f97f87dc40da49f099c95149142083 (diff) | |
download | libevent-0f04e9a401b0ebba7863b36e2f305c664980ba79.tar.gz |
vagrant/win32: reduce amount of threads
Otherwise I got:
win: 855 [main] sh 840 fork: child -1 - CreateProcessW failed for 'C:\tools\cygwin\bin\sh.exe', errno 5
win: /bin/sh: /usr/bin/sed: Input/output error
win: /bin/sh: line 1: /bin/sh: Input/output error
win: CC bufferevent_pair.lo
win: /bin/sh: fork: Input/output error
win: make[1]: *** [Makefile:1722: buffer.lo] Error 126
win: make[1]: *** Waiting for unfinished jobs....
win: CC bufferevent_ratelim.lo
win: 176 [main] sh 2440 fork: child -1 - CreateProcessW failed for 'C:\tools\cygwin\bin\sh.exe', errno 5
win: /bin/sh: fork: Input/output error
win: 0 [main] sh 3684 fork: child -1 - CreateProcessW failed for 'C:\tools\cygwin\bin\sh.exe', errno 5
win: ./libtool: fork: Input/output error
win: make[1]: *** [Makefile:1722: bufferevent_filter.lo] Error 254
win: 0 [main] sh 1356 fork: child -1 - CreateProcessW failed for 'C:\tools\cygwin\bin\sh.exe', errno 5
win: ./libtool: fork: Input/output error
win: 0 [main] sh 3640 fork: child -1 - CreateProcessW failed for 'C:\tools\cygwin\bin\sh.exe', errno 5
win: ./libtool: line 922: /usr/bin/sed: Input/output error
win: ./libtool: fork: Input/output error
win: 0 [main] sh 3444 fork: child -1 - CreateProcessW failed for 'C:\tools\cygwin\bin\sh.exe', errno 5
win: 0 [main] sh 3796 fork: child -1 - CreateProcessW failed for 'C:\tools\cygwin\bin\sh.exe', errno 5
win: ./libtool: fork: Input/output error
win: 693 [main] sh 304 fork: child -1 - CreateProcessW failed for 'C:\tools\cygwin\bin\sh.exe', errno 5
win: ./libtool: fork: Input/output error
win: ./libtool: fork: Input/output error
win: ./libtool: line 1377: /usr/bin/sed: Input/output error
win: : error: Failed to create '.libs'
Diffstat (limited to 'Vagrantfile')
-rw-r--r-- | Vagrantfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Vagrantfile b/Vagrantfile index 0408f2e9..c131ebe6 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -393,7 +393,7 @@ Vagrant.configure("2") do |config| bash -lc "echo 'C:/OpenSSL-Win32 /ssl ntfs binary 0 0' >> /etc/fstab" bash -lc "echo 'C:/vagrant /vagrant ntfs binary 0 0' >> /etc/fstab" - bash -lc "exec 0</dev/null; exec 2>&1; cd /vagrant; bash -x ./autogen.sh && ./configure LDFLAGS='-L/ssl -L/ssl/lib -L/ssl/lib/MinGW' CFLAGS=-I/ssl/include && make -j20 verify" + bash -lc "exec 0</dev/null; exec 2>&1; cd /vagrant; bash -x ./autogen.sh && ./configure LDFLAGS='-L/ssl -L/ssl/lib -L/ssl/lib/MinGW' CFLAGS=-I/ssl/include && make verify" SHELL end end |