mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-01-02 11:16:41 +00:00
setup: turn back on reactor=poll for cygwin trial (else it runs out of fds)
This commit is contained in:
parent
5a0e98d693
commit
8aab91115a
7
Makefile
7
Makefile
@ -29,6 +29,13 @@ else
|
|||||||
REACTOR := poll
|
REACTOR := poll
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
ifeq ($(PLAT),cygwin)
|
||||||
|
# The cygwin select reactor seems to run out of fds in unit tests -- it writes "filedescriptor
|
||||||
|
# out of range in select()". Setting reactor=poll fixes that.
|
||||||
|
ifeq ($(REACTOR),)
|
||||||
|
REACTOR := poll
|
||||||
|
endif
|
||||||
|
endif
|
||||||
PYVER=$(shell $(PYTHON) misc/pyver.py)
|
PYVER=$(shell $(PYTHON) misc/pyver.py)
|
||||||
SUPPORT = $(shell pwd)/support
|
SUPPORT = $(shell pwd)/support
|
||||||
SUPPORTLIB = $(SUPPORT)/lib/$(PYVER)/site-packages
|
SUPPORTLIB = $(SUPPORT)/lib/$(PYVER)/site-packages
|
||||||
|
Loading…
Reference in New Issue
Block a user