Hi,<div><br></div><div>Here are two patches to allow Cygwin to build. 'edis' is disabled as it will not build with dynamic libraries, and libprofile also does not build on Cygwin. If anyone using Cygwin wants there functionality they will have to fix them :)</div>

<div><br></div><div>Aaron</div><div><br></div><div><br></div><div><div>Index: tools/Makefile</div><div>===================================================================</div><div>--- tools/Makefile<span class="Apple-tab-span" style="white-space:pre">    </span>(revision 97136)</div>

<div>+++ tools/Makefile<span class="Apple-tab-span" style="white-space:pre">    </span>(working copy)</div><div>@@ -44,4 +44,8 @@</div><div>   DIRS := $(filter-out lto gold, $(DIRS))</div><div> endif</div><div> </div><div>+ifeq ($(TARGET_OS), $(filter $(TARGET_OS), Cygwin))</div>

<div>+  PARALLEL_DIRS := $(filter-out edis, $(PARALLEL_DIRS))</div><div>+endif</div><div>+</div><div> include $(LEVEL)/Makefile.common</div><div>Index: runtime/Makefile</div><div>===================================================================</div>

<div>--- runtime/Makefile<span class="Apple-tab-span" style="white-space:pre">  </span>(revision 97136)</div><div>+++ runtime/Makefile<span class="Apple-tab-span" style="white-space:pre"> </span>(working copy)</div><div>@@ -20,8 +20,12 @@</div>

<div> PARALLEL_DIRS := $(filter-out libprofile, $(PARALLEL_DIRS))</div><div> endif</div><div> </div><div>+ifeq ($(OS), Cygwin)</div><div>+PARALLEL_DIRS := $(filter-out libprofile, $(PARALLEL_DIRS))</div><div> endif</div>
<div>
 </div><div>+endif</div><div>+</div><div> include $(LEVEL)/Makefile.common</div><div> </div><div> install::</div><div><br></div></div>