public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* [ANNOUNCEMENT] Updated: make-3.82.90-1
       [not found] <20100810175435.GA27225@ednor.casa.cgf.cx>
@ 2011-12-02 19:33 ` Christopher Faylor
       [not found] ` <20111202173631.GA8373@ednor.casa.cgf.cx>
  1 sibling, 0 replies; 15+ messages in thread
From: Christopher Faylor @ 2011-12-02 19:33 UTC (permalink / raw)
  To: cygwin

I've made a new version of make available for installation.  This is a
refresh against current CVS.  The appropriate contents of the NEWS file
for this snapshot are below.

Note that this version of make continues to eschew support for MS-DOS
paths as mentioned here:

http://cygwin.com/ml/cygwin/2010-08/threads.html#00223

If you need a version of make which understands MS-DOS path please check
out the MinGW project at http://mingw.org/

              *** CYGWIN-ANNOUNCE UNSUBSCRIBE INFO ***

If you want to unsubscribe from the cygwin-announce mailing list, please
use the automated form at:

http://cygwin.com/lists.html#subscribe-unsubscribe

If you need more information on unsubscribing, start reading here:

http://sourceware.org/lists.html#unsubscribe-simple

Please read *all* of the information on unsubscribing that is available
starting at this web address.
\f
Changes from make NEWS file:

Version 3.82.90

A complete list of bugs fixed in this version is available here:

http://sv.gnu.org/bugs/index.php?group=make&report_id=111&fix_release_id=101&set=custom

* WARNING: Backward-incompatibility!
  This version of make adheres to the POSIX backslash/newline handling,
  introducing the following differences:
    * Each backslash/newline in a variable value is replaced with a space;
      multiple consecutive backslash/newlines do not condense into one space.
    * In recipes, a recipe prefix following a backslash-newlines is removed.

* New feature: The "job server" capability is now supported on Windows.
  Implementation contributed by Troy Runkel <Troy.Runkel@mathworks.com>

* New feature: "!=" shell assignment operator as an alternative to the
  $(shell ...) function.  Implemented for compatibility with BSD makefiles.
  WARNING: Backward-incompatibility!
  Variables ending in "!" previously defined as "variable!= value" will now be
  interpreted as shell assignment.  Change your assignment to add whitespace
  between the "!" and "=": "variable! = value"

* New command line option: --trace enables tracing of targets.  When enabled
  the recipe to be invoked is printed even if it would otherwise be suppressed
  by .SILENT or a "@" prefix character.  Also before each recipe is run the
  makefile name and linenumber where it was defined are shown as well as the
  prerequisites that caused the target to be considered out of date.

* On failure, the makefile name and linenumber of the recipe that failed are
  shown.

* A .RECIPEPREFIX setting is remembered per-recipe and variables expanded
  in that recipe also use that recipe prefix setting.

* In -p output, .RECIPEPREFIX settings are shown and all target-specific
  variables are output as if in a makefile, instead of as comments.

\f
Version 3.82

A complete list of bugs fixed in this version is available here:

http://sv.gnu.org/bugs/index.php?group=make&report_id=111&fix_release_id=104&set=custom

* Compiling GNU make now requires a conforming ISO C 1989 compiler and
  standard runtime library.

* WARNING: Backward-incompatibility!
  The POSIX standard for make was changed in the 2008 version in a
  fundamentally incompatible way: make is required to invoke the shell as if
  the '-e' flag were provided.  Because this would break many makefiles that
  have been written to conform to the original text of the standard, the
  default behavior of GNU make remains to invoke the shell with simply '-c'.
  However, any makefile specifying the .POSIX special target will follow the
  new POSIX standard and pass '-e' to the shell.  See also .SHELLFLAGS
  below.

* WARNING: Backward-incompatibility!
  The '$?' variable now contains all prerequisites that caused the target to
  be considered out of date, even if they do not exist (previously only
  existing targets were provided in $?).

* WARNING: Backward-incompatibility!
  Wildcards were not documented as returning sorted values, but the results
  have been sorted up until this release..  If your makefiles require sorted
  results from wildcard expansions, use the $(sort ...)  function to request
  it explicitly.

* WARNING: Backward-incompatibility!
  In previous versions of make it was acceptable to list one or more explicit
  targets followed by one or more pattern targets in the same rule and it
  worked "as expected".  However, this was not documented as acceptable and if
  you listed any explicit targets AFTER the pattern targets, the entire rule
  would be mis-parsed.  This release removes this ability completely: make
  will generate an error message if you mix explicit and pattern targets in
  the same rule.

* WARNING: Backward-incompatibility!
  As a result of parser enhancements, three backward-compatibility issues
  exist: first, a prerequisite containing an "=" cannot be escaped with a
  backslash any longer.  You must create a variable containing an "=" and
  use that variable in the prerequisite.  Second, variable names can no
  longer contain whitespace, unless you put the whitespace in a variable and
  use the variable.  Third, in previous versions of make it was sometimes
  not flagged as an error for explicit and pattern targets to appear in the
  same rule.  Now this is always reported as an error.

* WARNING: Backward-incompatibility!
  The pattern-specific variables and pattern rules are now applied in the
  shortest stem first order instead of the definition order (variables
  and rules with the same stem length are still applied in the definition
  order). This produces the usually-desired behavior where more specific
  patterns are preferred. To detect this feature search for 'shortest-stem'
  in the .FEATURES special variable.

* WARNING: Backward-incompatibility!
  The library search behavior has changed to be compatible with the standard
  linker behavior. Prior to this version for prerequisites specified using
  the -lfoo syntax make first searched for libfoo.so in the current
  directory, vpath directories, and system directories. If that didn't yield
  a match, make then searched for libfoo.a in these directories. Starting
  with this version make searches first for libfoo.so and then for libfoo.a
  in each of these directories in order.

* New command line option: --eval=STRING causes STRING to be evaluated as
  makefile syntax (akin to using the $(eval ...) function).  The evaluation
  is performed after all default rules and variables are defined, but before
  any makefiles are read.

* New special variable: .RECIPEPREFIX allows you to reset the recipe
  introduction character from the default (TAB) to something else.  The
  first character of this variable value is the new recipe introduction
  character.  If the variable is set to the empty string, TAB is used again.
  It can be set and reset at will; recipes will use the value active when
  they were first parsed.  To detect this feature check the value of
  $(.RECIPEPREFIX).

* New special variable: .SHELLFLAGS allows you to change the options passed
  to the shell when it invokes recipes.  By default the value will be "-c"
  (or "-ec" if .POSIX is set).

* New special target: .ONESHELL instructs make to invoke a single instance
  of the shell and provide it with the entire recipe, regardless of how many
  lines it contains.  As a special feature to allow more straightforward
  conversion of makefiles to use .ONESHELL, any recipe line control
  characters ('@', '+', or '-') will be removed from the second and
  subsequent recipe lines.  This happens _only_ if the SHELL value is deemed
  to be a standard POSIX-style shell.  If not, then no interior line control
  characters are removed (as they may be part of the scripting language used
  with the alternate SHELL).

* New variable modifier 'private': prefixing a variable assignment with the
  modifier 'private' suppresses inheritance of that variable by
  prerequisites.  This is most useful for target- and pattern-specific
  variables.

* New make directive: 'undefine' allows you to undefine a variable so that
  it appears as if it was never set. Both $(flavor) and $(origin) functions
  will return 'undefined' for such a variable. To detect this feature search
  for 'undefine' in the .FEATURES special variable.

* The parser for variable assignments has been enhanced to allow multiple
  modifiers ('export', 'override', 'private') on the same line as variables,
  including define/endef variables, and in any order.  Also, it is possible
  to create variables and targets named as these modifiers.

* The 'define' make directive now allows a variable assignment operator
  after the variable name, to allow for simple, conditional, or appending
  multi-line variable assignment.

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [ANNOUNCEMENT] Updated: make-4.0-1 (x86 and x86_64)
       [not found] ` <20111202173631.GA8373@ednor.casa.cgf.cx>
@ 2013-10-11 17:16   ` Christopher Faylor
  2013-10-14 13:13     ` Rolf Campbell
       [not found]   ` <20131011171208.GA3094@ednor.casa.cgf.cx>
  1 sibling, 1 reply; 15+ messages in thread
From: Christopher Faylor @ 2013-10-11 17:16 UTC (permalink / raw)
  To: cygwin

I've made a new version of make available for installation.  This is a
refresh against the newly released make-4.0.  The appropriate contents
of the NEWS file for this snapshot are below.

Note that this version of make continues to eschew support for MS-DOS
paths as mentioned here:

http://cygwin.com/ml/cygwin/2010-08/threads.html#00223

If you need a version of make which understands MS-DOS path please check
out the MinGW project at http://mingw.org/

                              ********

Version 4.0 (09 Oct 2013)

A complete list of bugs fixed in this version is available here:

http://sv.gnu.org/bugs/index.php?group=make&report_id=111&fix_release_id=101&set=custom

* WARNING: Backward-incompatibility!
  If .POSIX is specified, then make adheres to the POSIX backslash/newline
  handling requirements, which introduces the following changes to the
  standard backslash/newline handling in non-recipe lines:
  * Any trailing space before the backslash is preserved
  * Each backslash/newline (plus subsequent whitespace) is converted to a
    single space

* New feature: GNU Guile integration
  This version of GNU make can be compiled with GNU Guile integration.
  GNU Guile serves as an embedded extension language for make.
  See the "Guile Function" section in the GNU Make manual for details.
  Currently GNU Guile 1.8 and 2.0+ are supported.  In Guile 1.8 there is no
  support for internationalized character sets.  In Guile 2.0+, scripts can be
  encoded in UTF-8.

* New command line option: --output-sync (-O) enables grouping of output by
  target or by recursive make.  This is useful during parallel builds to avoid
  mixing output from different jobs together giving hard-to-understand
  results.  Original implementation by David Boyce <dsb@boyski.com>.
  Reworked and enhanced by Frank Heckenbach <f.heckenbach@fh-soft.de>.
  Windows support by Eli Zaretskii <eliz@gnu.org>.

* New command line option: --trace enables tracing of targets.  When enabled
  the recipe to be invoked is printed even if it would otherwise be suppressed
  by .SILENT or a "@" prefix character.  Also before each recipe is run the
  makefile name and linenumber where it was defined are shown as well as the
  prerequisites that caused the target to be considered out of date.

* New command line option argument: --debug now accepts a "n" (none) flag
  which disables all debugging settings that are currently enabled.

* New feature: The "job server" capability is now supported on Windows.
  Implementation contributed by Troy Runkel <Troy.Runkel@mathworks.com>

* New feature: The .ONESHELL capability is now supported on Windows.  Support
  added by Eli Zaretskii <eliz@gnu.org>.

* New feature: "!=" shell assignment operator as an alternative to the
  $(shell ...) function.  Implemented for compatibility with BSD makefiles.
  Note there are subtle differences between "!=" and $(shell ...).  See the
  description in the GNU make manual.
  WARNING: Backward-incompatibility!
  Variables ending in "!" previously defined as "variable!= value" will now be
  interpreted as shell assignment.  Change your assignment to add whitespace
  between the "!" and "=": "variable! = value"

* New feature: "::=" simple assignment operator as defined by POSIX in 2012.
  This operator has identical functionality to ":=" in GNU make, but will be
  portable to any implementation of make conforming to a sufficiently new
  version of POSIX (see http://austingroupbugs.net/view.php?id=330).  It is
  not necessary to define the .POSIX target to access this operator.

* New feature: Loadable objects
  This version of GNU make contains a "technology preview": the ability to
  load dynamic objects into the make runtime.  These objects can be created by
  the user and can add extended functionality, usable by makefiles.

* New function: $(file ...) writes to a file.

* New variable: $(GNUMAKEFLAGS) will be parsed for make flags, just like
  MAKEFLAGS is.  It can be set in the environment or the makefile, containing
  GNU make-specific flags to allow your makefile to be portable to other
  versions of make.  Once this variable is parsed, GNU make will set it to the
  empty string so that flags will not be duplicated on recursion.

* New variable: `MAKE_HOST' gives the name of the host architecture
  make was compiled for.  This is the same value you see after 'Built for'
  when running 'make --version'.

* Behavior of MAKEFLAGS and MFLAGS is more rigorously defined.  All simple
  flags are grouped together in the first word of MAKEFLAGS.  No options that
  accept arguments appear in the first word.  If no simple flags are present
  MAKEFLAGS begins with a space.  Flags with both short and long versions
  always use the short versions in MAKEFLAGS.  Flags are listed in
  alphabetical order using ASCII ordering.  MFLAGS never begins with "- ".

* Setting the -r and -R options in MAKEFLAGS inside a makefile now works as
  expected, removing all built-in rules and variables, respectively.

* If a recipe fails, the makefile name and linenumber of the recipe are shown.

* A .RECIPEPREFIX setting is remembered per-recipe and variables expanded
  in that recipe also use that recipe prefix setting.

* In -p output, .RECIPEPREFIX settings are shown and all target-specific
  variables are output as if in a makefile, instead of as comments.

* On MS-Windows, recipes that use ".." quoting will no longer force
  invocation of commands via temporary batch files and stock Windows
  shells, they will be short-circuited and invoked directly.  (In
  other words, " is no longer a special character for stock Windows
  shells.)  This avoids hitting shell limits for command length when
  quotes are used, but nothing else in the command requires the shell.
  This change could potentially mean some minor incompatibilities in
  behavior when the recipe uses quoted string on shell command lines.

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: Updated: make-4.0-1 (x86 and x86_64)
       [not found]   ` <20131011171208.GA3094@ednor.casa.cgf.cx>
@ 2013-10-12 20:30     ` Reini Urban
  2013-10-27  7:04     ` GNU Make 4.0.1 — infinite loop on startup Yuriy Chernyshov
  1 sibling, 0 replies; 15+ messages in thread
From: Reini Urban @ 2013-10-12 20:30 UTC (permalink / raw)
  To: The Cygwin Mailing List

I'm very happy to have make-4.0, contrary to most other distros.

make-4.0 fixed some crazy bugs I was chasing which appeared
with make-3.81 -j4 and I was scratching my head for months.
I even added .NOTPARALLEL: hints to no avail.
v4 fixed it, so it was not my fault. Thanks!

-- 
Reini Urban
http://cpanel.net/   http://www.perl-compiler.org/

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [ANNOUNCEMENT] Updated: make-4.0-1 (x86 and x86_64)
  2013-10-11 17:16   ` [ANNOUNCEMENT] Updated: make-4.0-1 (x86 and x86_64) Christopher Faylor
@ 2013-10-14 13:13     ` Rolf Campbell
  2013-10-14 14:05       ` Andrey Repin
  2013-10-15 19:47       ` Christopher Faylor
  0 siblings, 2 replies; 15+ messages in thread
From: Rolf Campbell @ 2013-10-14 13:13 UTC (permalink / raw)
  To: cygwin

[-- Attachment #1: Type: text/plain, Size: 1103 bytes --]

On 2013-10-11 13:12, Christopher Faylor wrote:
> I've made a new version of make available for installation.  This is a
> refresh against the newly released make-4.0.  The appropriate contents
> of the NEWS file for this snapshot are below.
[...]
> * New command line option: --output-sync (-O) enables grouping of output by
>    target or by recursive make.  This is useful during parallel builds to avoid
>    mixing output from different jobs together giving hard-to-understand
>    results.  Original implementation by David Boyce <dsb@boyski.com>.
>    Reworked and enhanced by Frank Heckenbach <f.heckenbach@fh-soft.de>.
>    Windows support by Eli Zaretskii <eliz@gnu.org>.

Whenever I try this under cygwin, I get an error output "fcntl(): 
Invalid argument", even with extremely trivial makefiles and 
invocations.  Make seems to work correctly, but produces error output.

echo -e 'all:\n\ttouch $@' > m.mk
make -O -f m.mk

Produces this output:
fcntl(): Invalid argument
touch all


I've tried this using both the 32-bit version and 64-bit version of 
cygwin 1.7.25 with the same results.




[-- Attachment #2: cygcheck.txt --]
[-- Type: text/plain, Size: 23850 bytes --]


Cygwin Configuration Diagnostics
Current System Time: Mon Oct 14 14:11:21 2013

Windows 7 Professional N Ver 6.1 Build 7601 Service Pack 1

Running in Terminal Service session

Path:	C:\cygwin64\usr\local\bin
	C:\cygwin64\bin
	C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common
	C:\Program Files (x86)\Intel\iCLS Client
	C:\Program Files\Intel\iCLS Client
	C:\Windows\system32
	C:\Windows
	C:\Windows\System32\Wbem
	C:\Program Files (x86)\Common Files\Acronis\SnapAPI
	C:\Windows\System32\WindowsPowerShell\v1.0
	C:\Windows\System32\WindowsPowerShell\v1.0
	C:\Program Files\TortoiseSVN\bin

Output from C:\cygwin64\bin\id.exe
UID: 1002(rcampbell)      GID: 513(None)
513(None)                 0(root)                   544(Administrators)
555(Remote Desktop Users) 545(Users)

SysDir: C:\Windows\system32
WinDir: C:\Windows

USER = 'rcampbell'
PWD = '/home/rcampbell'
HOME = '/home/rcampbell'

HOMEPATH = '\Users\rcampbell'
MANPATH = '/usr/local/man:/usr/share/man:/usr/man::/usr/ssl/man'
APPDATA = 'C:\Users\rcampbell\AppData\Roaming'
ProgramW6432 = 'C:\Program Files'
HOSTNAME = 'rolfcampbell'
SHELL = '/bin/bash'
TERM = 'xterm-256color'
PROCESSOR_IDENTIFIER = 'Intel64 Family 6 Model 58 Stepping 9, GenuineIntel'
WINDIR = 'C:\Windows'
PUBLIC = 'C:\Users\Public'
OLDPWD = '/c/ProgramData/Microsoft/Windows/Start Menu/Programs/Cygwin'
USERDOMAIN = 'ROLFCAMPBELL'
CommonProgramFiles(x86) = 'C:\Program Files (x86)\Common Files'
OS = 'Windows_NT'
ALLUSERSPROFILE = 'C:\ProgramData'
windows_tracing_flags = '3'
windows_tracing_logfile = 'C:\BVTBin\Tests\installpackage\csilogfile.log'
!:: = '::\'
temp = 'C:\Users\RCAMPB~1\AppData\Local\Temp'
COMMONPROGRAMFILES = 'C:\Program Files\Common Files'
TMP = '/tmp'
USERNAME = 'rcampbell'
PROCESSOR_LEVEL = '6'
ProgramFiles(x86) = 'C:\Program Files (x86)'
PSModulePath = 'C:\Windows\system32\WindowsPowerShell\v1.0\Modules\'
FP_NO_HOST_CHECK = 'NO'
SYSTEMDRIVE = 'C:'
LANG = 'en_US.UTF-8'
USERPROFILE = 'C:\Users\rcampbell'
CLIENTNAME = 'ENDLISNIS2'
TZ = 'America/Toronto'
PS1 = '\[\e]0;\w\a\]\n\[\e[32m\]\u@\h \[\e[33m\]\w\[\e[0m\]\n\$ '
LOGONSERVER = '\\ROLFCAMPBELL'
CommonProgramW6432 = 'C:\Program Files\Common Files'
PROCESSOR_ARCHITECTURE = 'AMD64'
LOCALAPPDATA = 'C:\Users\rcampbell\AppData\Local'
HISTCONTROL = 'ignoredups'
ProgramData = 'C:\ProgramData'
SHLVL = '1'
PATHEXT = '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC'
HOMEDRIVE = 'C:'
COMSPEC = 'C:\Windows\system32\cmd.exe'
SYSTEMROOT = 'C:\Windows'
PRINTER = 'Microsoft XPS Document Writer (redirected 2)'
PROCESSOR_REVISION = '3a09'
INFOPATH = '/usr/local/info:/usr/share/info:/usr/info:'
PROGRAMFILES = 'C:\Program Files'
NUMBER_OF_PROCESSORS = '8'
SESSIONNAME = 'RDP-Tcp#0'
COMPUTERNAME = 'ROLFCAMPBELL'
_ = '/usr/bin/cygcheck'

HKEY_CURRENT_USER\Software\Cygwin
HKEY_CURRENT_USER\Software\Cygwin\Program Options
HKEY_CURRENT_USER\Software\Cygwin\setup
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\Installations
  (default) = '\??\C:\cygwin64'
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\Program Options
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\setup
  (default) = 'C:\cygwin64'
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygwin
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygwin\Installations
  (default) = '\??\c:\cygwin'
  783841dc939c0d2e = '\??\C:\Users\rcampbell\Downloads\john179w2\john179'
  884da10f51cc3e15 = '\??\D:\cygwin.old'
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygwin\Program Options
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Cygwin\setup
  (default) = 'C:\cygwin'

obcaseinsensitive set to 1

Cygwin installations found in the registry:
  System: Key: e022582115c10879 Path: C:\cygwin64

c:  hd  NTFS     68503Mb  85% CP CS UN PA FC     OS
d:  hd  NTFS    464453Mb  39% CP CS UN PA FC     Data
e:  hd  NTFS     44029Mb  89% CP CS UN PA FC     VM
g:  cd             N/A    N/A                    
h:  fd             N/A    N/A                    
i:  fd             N/A    N/A                    
j:  fd             N/A    N/A                    
k:  fd             N/A    N/A                    
p:  net NTFS   1915070Mb  89% CP CS UN PA        public
r:  net NTFS      9765Mb  30% CP CS UN PA        rcampbell
y:  net NTFS    110620Mb  76% CP CS    PA        cvsdirs

Warning: Mount entries should not have a trailing (back)slash

C:\cygwin64                       /          system  binary,auto
c:\                               /c         system  binary
D:\mp3                            /mp3       system  binary
c:\cygwin64\home\rcampbell\share  /share     system  binary
C:\cygwin64\bin                   /usr/bin   system  binary,auto
C:\cygwin64\lib                   /usr/lib   system  binary,auto
Z:\                               /z         system  binary
cygdrive prefix                   /cygdrive  user    binary,posix=0,auto

Found: C:\cygwin64\bin\awk
 -> C:\cygwin64\bin\gawk.exe
Found: C:\cygwin64\bin\bash.exe
Found: C:\cygwin64\bin\cat.exe
Found: C:\cygwin64\bin\cp.exe
Found: C:\cygwin64\bin\cpp.exe
Not Found: crontab
Found: C:\cygwin64\bin\find.exe
Found: C:\Windows\system32\find.exe
Warning: C:\cygwin64\bin\find.exe hides C:\Windows\system32\find.exe
Found: C:\cygwin64\bin\gcc.exe
Not Found: gdb
Found: C:\cygwin64\bin\grep.exe
Found: C:\cygwin64\bin\kill.exe
Found: C:\cygwin64\bin\ld.exe
Found: C:\cygwin64\bin\ls.exe
Found: C:\cygwin64\bin\make.exe
Found: C:\cygwin64\bin\mv.exe
Not Found: patch
Found: C:\cygwin64\bin\perl.exe
Found: C:\cygwin64\bin\rm.exe
Found: C:\cygwin64\bin\sed.exe
Found: C:\cygwin64\bin\ssh.exe
Found: C:\cygwin64\bin\sh.exe
Found: C:\cygwin64\bin\tar.exe
Found: C:\cygwin64\bin\test.exe
Found: C:\cygwin64\bin\vi.exe
Not Found: vim

  127k 2013/06/23 C:\cygwin64\bin\cygapr-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygapr-1-0.dll" v0.0 ts=2013-06-23 18:53
  115k 2013/08/11 C:\cygwin64\bin\cygaprutil-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygaprutil-1-0.dll" v0.0 ts=2013-08-11 19:13
 2568k 2013/06/23 C:\cygwin64\bin\cygasn1-8.dll - os=4.0 img=0.0 sys=5.2
                  "cygasn1-8.dll" v0.0 ts=2013-06-23 06:23
   87k 2013/07/27 C:\cygwin64\bin\cygatomic-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygatomic-1.dll" v0.0 ts=2013-07-27 12:20
   16k 2013/03/26 C:\cygwin64\bin\cygattr-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygattr-1.dll" v0.0 ts=2013-03-26 18:26
   64k 2013/03/07 C:\cygwin64\bin\cygbz2-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygbz2-1.dll" v0.0 ts=2013-03-07 02:54
  117k 2013/05/05 C:\cygwin64\bin\cygcloog-isl-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygcloog-isl-4.dll" v0.0 ts=2013-05-05 16:41
   12k 2013/03/11 C:\cygwin64\bin\cygcom_err-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygcom_err-2.dll" v0.0 ts=2013-03-11 03:59
    9k 2013/03/07 C:\cygwin64\bin\cygcrypt-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygcrypt-0.dll" v0.0 ts=2013-03-07 09:29
 1655k 2013/03/07 C:\cygwin64\bin\cygcrypto-1.0.0.dll - os=4.0 img=0.0 sys=5.2
                  "cygcrypto-1.0.0.dll" v0.0 ts=2013-03-07 12:01
 1526k 2013/03/08 C:\cygwin64\bin\cygdb-5.3.dll - os=4.0 img=0.0 sys=5.2
                  "cygdb-5.3.dll" v0.0 ts=2013-03-08 07:55
  111k 2013/03/08 C:\cygwin64\bin\cygdb_cxx-5.3.dll - os=4.0 img=0.0 sys=5.2
                  "cygdb_cxx-5.3.dll" v0.0 ts=2013-03-08 07:56
  472k 2013/03/08 C:\cygwin64\bin\cygdb_sql-5.3.dll - os=4.0 img=0.0 sys=5.2
                  "cygdb_sql-5.3.dll" v0.0 ts=2013-03-08 07:58
  155k 2013/03/15 C:\cygwin64\bin\cygedit-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygedit-0.dll" v0.0 ts=2013-03-15 09:44
  147k 2013/07/31 C:\cygwin64\bin\cygexpat-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygexpat-1.dll" v0.0 ts=2013-07-31 22:53
   22k 2013/05/12 C:\cygwin64\bin\cygffi-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygffi-6.dll" v0.0 ts=2013-05-12 22:53
  210k 2013/08/05 C:\cygwin64\bin\cygfontconfig-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygfontconfig-1.dll" v0.0 ts=2013-08-05 07:59
   53k 2013/05/06 C:\cygwin64\bin\cygformw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygformw-10.dll" v0.0 ts=2013-05-06 08:10
  576k 2013/05/14 C:\cygwin64\bin\cygfreetype-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygfreetype-6.dll" v0.0 ts=2013-05-14 04:50
   67k 2013/07/27 C:\cygwin64\bin\cyggcc_s-seh-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyggcc_s-seh-1.dll" v0.0 ts=2013-07-27 11:45
   29k 2013/03/11 C:\cygwin64\bin\cyggdbm-4.dll - os=4.0 img=0.0 sys=5.2
                  "cyggdbm-4.dll" v0.0 ts=2013-03-11 05:00
   12k 2013/03/11 C:\cygwin64\bin\cyggdbm_compat-4.dll - os=4.0 img=0.0 sys=5.2
                  "cyggdbm_compat-4.dll" v0.0 ts=2013-03-11 05:01
  443k 2013/08/04 C:\cygwin64\bin\cyggmp-10.dll - os=4.0 img=0.0 sys=5.2
                  "cyggmp-10.dll" v0.0 ts=2013-08-04 20:58
   46k 2013/07/27 C:\cygwin64\bin\cyggomp-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyggomp-1.dll" v0.0 ts=2013-07-27 11:48
 2247k 2013/06/23 C:\cygwin64\bin\cyggssapi-3.dll - os=4.0 img=0.0 sys=5.2
                  "cyggssapi-3.dll" v0.0 ts=2013-06-23 06:31
  101k 2013/06/23 C:\cygwin64\bin\cygheimbase-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygheimbase-1.dll" v0.0 ts=2013-06-23 06:20
  135k 2013/06/23 C:\cygwin64\bin\cygheimntlm-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygheimntlm-0.dll" v0.0 ts=2013-06-23 06:28
   29k 2013/03/14 C:\cygwin64\bin\cyghistory7.dll - os=4.0 img=0.0 sys=5.2
                  "cyghistory7.dll" v0.0 ts=2013-03-14 11:14
 1412k 2013/06/23 C:\cygwin64\bin\cyghx509-5.dll - os=4.0 img=0.0 sys=5.2
                  "cyghx509-5.dll" v0.0 ts=2013-06-23 06:24
  998k 2013/03/07 C:\cygwin64\bin\cygiconv-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygiconv-2.dll" v0.0 ts=2013-03-07 03:03
   38k 2013/06/24 C:\cygwin64\bin\cygintl-8.dll - os=4.0 img=0.0 sys=5.2
                  "cygintl-8.dll" v0.0 ts=2013-06-24 04:36
  294k 2013/09/09 C:\cygwin64\bin\cygiodbc-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygiodbc-2.dll" v0.0 ts=2013-09-09 16:36
   66k 2013/09/09 C:\cygwin64\bin\cygiodbcinst-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygiodbcinst-2.dll" v0.0 ts=2013-09-09 16:35
  888k 2013/05/05 C:\cygwin64\bin\cygisl-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygisl-10.dll" v0.0 ts=2013-05-05 16:36
 3287k 2013/06/23 C:\cygwin64\bin\cygkrb5-26.dll - os=4.0 img=0.0 sys=5.2
                  "cygkrb5-26.dll" v0.0 ts=2013-06-23 06:27
   44k 2013/06/18 C:\cygwin64\bin\cyglber-2-4-2.dll - os=4.0 img=0.0 sys=5.2
                  "cyglber-2-4-2.dll" v0.0 ts=2013-06-17 21:00
  243k 2013/06/18 C:\cygwin64\bin\cygldap-2-4-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygldap-2-4-2.dll" v0.0 ts=2013-06-17 21:00
  260k 2013/06/18 C:\cygwin64\bin\cygldap_r-2-4-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygldap_r-2-4-2.dll" v0.0 ts=2013-06-17 21:01
    6k 2013/08/31 C:\cygwin64\bin\cyglsa64.dll - os=4.0 img=0.0 sys=5.2
                  "cyglsa64.dll" v0.0 ts=2013-08-31 19:36
  129k 2013/03/07 C:\cygwin64\bin\cyglzma-5.dll - os=4.0 img=0.0 sys=5.2
                  "cyglzma-5.dll" v0.0 ts=2013-03-07 10:20
  102k 2013/03/19 C:\cygwin64\bin\cygmagic-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygmagic-1.dll" v0.0 ts=2013-03-19 14:27
   28k 2013/05/06 C:\cygwin64\bin\cygmenuw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygmenuw-10.dll" v0.0 ts=2013-05-06 08:10
   85k 2013/05/05 C:\cygwin64\bin\cygmpc-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygmpc-3.dll" v0.0 ts=2013-05-05 13:46
  319k 2013/05/05 C:\cygwin64\bin\cygmpfr-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygmpfr-4.dll" v0.0 ts=2013-05-05 13:40
 2834k 2013/05/31 C:\cygwin64\bin\cygmysqlclient-18.dll - os=4.0 img=18.0 sys=5.2
                  "cygmysqlclient-18.dll" v0.0 ts=2013-05-31 02:45
   52k 2013/05/06 C:\cygwin64\bin\cygncurses++w-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygncurses++w-10.dll" v0.0 ts=2013-05-06 08:14
  295k 2013/05/06 C:\cygwin64\bin\cygncursesw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygncursesw-10.dll" v0.0 ts=2013-05-06 08:08
  126k 2013/04/24 C:\cygwin64\bin\cygneon-27.dll - os=4.0 img=0.0 sys=5.2
                  "cygneon-27.dll" v0.0 ts=2013-04-24 08:25
   13k 2013/05/06 C:\cygwin64\bin\cygpanelw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygpanelw-10.dll" v0.0 ts=2013-05-06 08:09
  289k 2013/08/04 C:\cygwin64\bin\cygpcre-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygpcre-1.dll" v0.0 ts=2013-08-04 23:51
 1580k 2013/03/11 C:\cygwin64\bin\cygperl5_14.dll - os=4.0 img=0.0 sys=5.2
                  "cygperl5_14.dll" v0.0 ts=2013-03-12 00:25
   40k 2013/03/07 C:\cygwin64\bin\cygpopt-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygpopt-0.dll" v0.0 ts=2013-03-07 12:01
  143k 2013/08/01 C:\cygwin64\bin\cygpq-5.dll - os=4.0 img=0.0 sys=5.2
                  "cygpq-5.dll" v0.0 ts=2013-08-01 14:15
  122k 2013/04/21 C:\cygwin64\bin\cygproxy-1.dll - os=4.0 img=1.0 sys=5.2
                  "cygproxy-1.dll" v0.0 ts=2013-04-21 10:24
  302k 2013/07/27 C:\cygwin64\bin\cygquadmath-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygquadmath-0.dll" v0.0 ts=2013-07-27 12:20
  193k 2013/03/14 C:\cygwin64\bin\cygreadline7.dll - os=4.0 img=0.0 sys=5.2
                  "cygreadline7.dll" v0.0 ts=2013-03-14 11:14
  424k 2013/06/23 C:\cygwin64\bin\cygroken-18.dll - os=4.0 img=0.0 sys=5.2
                  "cygroken-18.dll" v0.0 ts=2013-06-23 06:21
   96k 2013/08/11 C:\cygwin64\bin\cygsasl2-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygsasl2-3.dll" v0.0 ts=2013-08-11 20:13
   81k 2013/08/16 C:\cygwin64\bin\cygserf-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygserf-1-0.dll" v0.0 ts=2013-08-16 17:35
  644k 2013/07/26 C:\cygwin64\bin\cygsqlite3-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsqlite3-0.dll" v0.0 ts=2013-07-26 06:03
  377k 2013/03/07 C:\cygwin64\bin\cygssl-1.0.0.dll - os=4.0 img=0.0 sys=5.2
                  "cygssl-1.0.0.dll" v0.0 ts=2013-03-07 12:01
   11k 2013/07/27 C:\cygwin64\bin\cygssp-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygssp-0.dll" v0.0 ts=2013-07-27 12:18
  892k 2013/07/27 C:\cygwin64\bin\cygstdc++-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygstdc++-6.dll" v0.0 ts=2013-07-27 12:02
  355k 2013/08/30 C:\cygwin64\bin\cygsvn_client-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsvn_client-1-0.dll" v0.0 ts=2013-08-30 18:46
   63k 2013/08/30 C:\cygwin64\bin\cygsvn_delta-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsvn_delta-1-0.dll" v0.0 ts=2013-08-30 18:45
   70k 2013/08/30 C:\cygwin64\bin\cygsvn_diff-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsvn_diff-1-0.dll" v0.0 ts=2013-08-30 18:45
   30k 2013/08/30 C:\cygwin64\bin\cygsvn_fs-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsvn_fs-1-0.dll" v0.0 ts=2013-08-30 18:46
  150k 2013/08/30 C:\cygwin64\bin\cygsvn_fs_base-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsvn_fs_base-1-0.dll" v0.0 ts=2013-08-30 18:46
  179k 2013/08/30 C:\cygwin64\bin\cygsvn_fs_fs-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsvn_fs_fs-1-0.dll" v0.0 ts=2013-08-30 18:46
   10k 2013/08/30 C:\cygwin64\bin\cygsvn_fs_util-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsvn_fs_util-1-0.dll" v0.0 ts=2013-08-30 18:45
   45k 2013/08/30 C:\cygwin64\bin\cygsvn_ra-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsvn_ra-1-0.dll" v0.0 ts=2013-08-30 18:46
   30k 2013/08/30 C:\cygwin64\bin\cygsvn_ra_local-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsvn_ra_local-1-0.dll" v0.0 ts=2013-08-30 18:46
  162k 2013/08/30 C:\cygwin64\bin\cygsvn_ra_serf-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsvn_ra_serf-1-0.dll" v0.0 ts=2013-08-30 18:46
   94k 2013/08/30 C:\cygwin64\bin\cygsvn_ra_svn-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsvn_ra_svn-1-0.dll" v0.0 ts=2013-08-30 18:46
  181k 2013/08/30 C:\cygwin64\bin\cygsvn_repos-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsvn_repos-1-0.dll" v0.0 ts=2013-08-30 18:46
  380k 2013/08/30 C:\cygwin64\bin\cygsvn_subr-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsvn_subr-1-0.dll" v0.0 ts=2013-08-30 18:45
   77k 2013/08/30 C:\cygwin64\bin\cygsvn_swig_py-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsvn_swig_py-1-0.dll" v0.0 ts=2013-08-30 18:50
  617k 2013/08/30 C:\cygwin64\bin\cygsvn_wc-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygsvn_wc-1-0.dll" v0.0 ts=2013-08-30 18:46
   51k 2013/05/06 C:\cygwin64\bin\cygticw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygticw-10.dll" v0.0 ts=2013-05-06 08:08
   15k 2013/03/11 C:\cygwin64\bin\cyguuid-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyguuid-1.dll" v0.0 ts=2013-03-11 03:07
  275k 2013/06/23 C:\cygwin64\bin\cygwind-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygwind-0.dll" v0.0 ts=2013-06-23 06:22
 1120k 2013/06/06 C:\cygwin64\bin\cygX11-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygX11-6.dll" v0.0 ts=2013-06-06 07:12
   12k 2013/06/06 C:\cygwin64\bin\cygXau-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygXau-6.dll" v0.0 ts=2013-06-06 06:23
   97k 2013/08/14 C:\cygwin64\bin\cygxcb-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygxcb-1.dll" v0.0 ts=2013-08-14 19:30
   21k 2013/03/13 C:\cygwin64\bin\cygXdmcp-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygXdmcp-6.dll" v0.0 ts=2013-03-13 04:58
   56k 2013/06/06 C:\cygwin64\bin\cygXext-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygXext-6.dll" v0.0 ts=2013-06-06 10:04
   73k 2013/03/14 C:\cygwin64\bin\cygXft-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygXft-2.dll" v0.0 ts=2013-03-14 05:18
   35k 2013/06/14 C:\cygwin64\bin\cygXrender-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygXrender-1.dll" v0.0 ts=2013-06-14 09:29
   12k 2013/03/14 C:\cygwin64\bin\cygXss-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygXss-1.dll" v0.0 ts=2013-03-14 04:07
   79k 2013/05/09 C:\cygwin64\bin\cygz.dll - os=4.0 img=0.0 sys=5.2
                  "cygz.dll" v0.0 ts=2013-05-09 22:20
 3071k 2013/08/31 C:\cygwin64\bin\cygwin1.dll - os=4.0 img=0.0 sys=5.2
                  "cygwin1.dll" v0.0 ts=2013-08-31 19:37
    Cygwin DLL version info:
        DLL version: 1.7.25
        DLL epoch: 19
        DLL old termios: 5
        DLL malloc env: 28
        Cygwin conv: 181
        API major: 0
        API minor: 270
        Shared data: 5
        DLL identifier: cygwin1
        Mount registry: 3
        Cygwin registry name: Cygwin
        Program options name: Program Options
        Installations name: Installations
        Cygdrive default prefix: 
        Build date: 
        Shared id: cygwin1S5


Service             : sshd
Display name        : CYGWIN sshd
Current State       : Stopped
Command             : /usr/sbin/sshd -D
stdin path          : /dev/null
stdout path         : /var/log/sshd.log
stderr path         : /var/log/sshd.log
Process Type        : Own Process
Startup             : Automatic
Dependencies        : tcpip
Account             : .\cyg_server


Cygwin Package Information
Last downloaded files to: C:\cygwin64\install
Last downloaded files from: http://mirror.csclub.uwaterloo.ca/cygwin/

Package              Version         Status
_autorebase          000022-1        OK
_update-info-dir     00239-1         OK
alternatives         1.3.30c-10      OK
base-cygwin          3.3-1           OK
base-files           4.1-1           OK
bash                 4.1.11-2        OK
binutils             2.23.52-5       OK
bzip2                1.0.6-2         OK
coreutils            8.15-3          OK
crypt                1.1-1           OK
csih                 0.9.7-1         OK
cygrunsrv            1.42-1          OK
cygutils             1.4.14-1        OK
cygwin               1.7.25-1        OK
dash                 0.5.7-4         OK
diffutils            3.3-1           OK
dos2unix             6.0.3-1         OK
editrights           1.02-1          OK
expect               5.45-2          OK
file                 5.13-1          OK
findutils            4.5.11-1        OK
gawk                 4.1.0-1         OK
gcc-core             4.8.1-3         OK
gcc-g++              4.8.1-3         OK
grep                 2.14-2          OK
groff                1.22.2-1        OK
gzip                 1.4-1           OK
hostname             3.13-1          OK
ipc-utils            1.0-2           OK
less                 458-1           OK
libapr1              1.4.8-1         OK
libaprutil1          1.5.2-4         OK
libasn1_8            1.5.2-4         OK
libatomic1           4.8.1-3         OK
libattr1             2.4.46-1        OK
libbz2_1             1.0.6-2         OK
libcloog-isl4        0.18.0-2        OK
libcom_err2          1.42.7-1        OK
libcrypt0            1.1-1           OK
libdb5.3             5.3.21-1        OK
libedit0             20120311-1      OK
libexpat1            2.1.0-3         OK
libffi6              3.0.13-1        OK
libfontconfig1       2.10.93-1       OK
libfreetype6         2.4.12-1        OK
libgcc1              4.8.1-3         OK
libgdbm4             1.10-2          OK
libgmp10             5.1.2-1         OK
libgomp1             4.8.1-3         OK
libgssapi3           1.5.2-4         OK
libheimbase1         1.5.2-4         OK
libheimntlm0         1.5.2-4         OK
libhx509_5           1.5.2-4         OK
libiconv2            1.14-1          OK
libintl8             0.18.1.1-3      OK
libiodbc2            3.52.8-2        OK
libisl10             0.11.1-2        OK
libkrb5_26           1.5.2-4         OK
liblzma5             5.0.4-1         OK
libmpc3              1.0.1-2         OK
libmpfr4             3.1.2-1         OK
libmysqlclient18     5.5.31-1        OK
libncursesw10        5.9-4           OK
libneon27            0.29.6-1        OK
libopenldap2_4_2     2.4.35-1        OK
libopenssl100        1.0.1e-1        OK
libpcre1             8.33-1          OK
libpopt0             1.16-1          OK
libpq5               9.2.4-2         OK
libproxy1            0.4.11-2        OK
libquadmath0         4.8.1-3         OK
libreadline7         6.2-1           OK
libroken18           1.5.2-4         OK
libsasl2_3           2.1.26-5        OK
libserf1_0           1.3.1-1         OK
libsqlite3_0         3.7.17-3        OK
libssp0              4.8.1-3         OK
libstdc++6           4.8.1-3         OK
libuuid1             2.21.2-1        OK
libwind0             1.5.2-4         OK
libX11_6             1.6.0-1         OK
libXau6              1.0.8-1         OK
libxcb1              1.9.1-2         OK
libXdmcp6            1.1.1-1         OK
libXext6             1.3.2-1         OK
libXft2              2.3.1-1         OK
libXrender1          0.9.8-1         OK
libXss1              1.2.2-1         OK
login                1.10-10         OK
make                 4.0-1           OK
man                  1.6g-2          OK
mintty               1.2-beta1-1     OK
openssh              6.2p2-1         OK
openssl              1.0.1e-1        OK
perl                 5.14.4-1        OK
python               2.7.5-3         OK
python-tkinter       2.7.5-3         OK
rebase               4.4.0.1-1       OK
run                  1.3.0-1         OK
sed                  4.2.2-3         OK
subversion           1.8.3-1         OK
subversion-python    1.8.3-1         OK
tar                  1.26-1          OK
tcl                  8.5.11-1        OK
tcl-tix              8.4.3-2         OK
tcl-tk               8.5.11-1        OK
terminfo             5.9-4           OK
texinfo              4.13-1          OK
tzcode               2013c-1         OK
vim-minimal          7.3.1314-1      OK
w32api-headers       3.0.0-2         OK
w32api-runtime       3.0.0-1         OK
wget                 1.13.4-1        OK
which                2.20-2          OK
xz                   5.0.4-1         OK
zlib0                1.2.8-1         OK
Use -h to see help about each section


[-- Attachment #3: Type: text/plain, Size: 218 bytes --]

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [ANNOUNCEMENT] Updated: make-4.0-1 (x86 and x86_64)
  2013-10-14 13:13     ` Rolf Campbell
@ 2013-10-14 14:05       ` Andrey Repin
  2013-10-14 14:37         ` Rolf Campbell
  2013-10-15 19:47       ` Christopher Faylor
  1 sibling, 1 reply; 15+ messages in thread
From: Andrey Repin @ 2013-10-14 14:05 UTC (permalink / raw)
  To: Rolf Campbell, cygwin

Greetings, Rolf Campbell!

> On 2013-10-11 13:12, Christopher Faylor wrote:
>> I've made a new version of make available for installation.  This is a
>> refresh against the newly released make-4.0.  The appropriate contents
>> of the NEWS file for this snapshot are below.
> [...]
>> * New command line option: --output-sync (-O) enables grouping of output by
>>    target or by recursive make.  This is useful during parallel builds to avoid
>>    mixing output from different jobs together giving hard-to-understand
>>    results.  Original implementation by David Boyce <dsb@boyski.com>.
>>    Reworked and enhanced by Frank Heckenbach <f.heckenbach@fh-soft.de>.
>>    Windows support by Eli Zaretskii <eliz@gnu.org>.

> Whenever I try this under cygwin, I get an error output "fcntl(): 
> Invalid argument", even with extremely trivial makefiles and 
> invocations.  Make seems to work correctly, but produces error output.

> echo -e 'all:\n\ttouch $@' > m.mk
> make -O -f m.mk

> Produces this output:
> fcntl(): Invalid argument
> touch all


> I've tried this using both the 32-bit version and 64-bit version of 
> cygwin 1.7.25 with the same results.

Is this happens under mintty or native windows console?


--
WBR,
Andrey Repin (anrdaemon@yandex.ru) 14.10.2013, <17:35>

Sorry for my terrible english...


--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [ANNOUNCEMENT] Updated: make-4.0-1 (x86 and x86_64)
  2013-10-14 14:05       ` Andrey Repin
@ 2013-10-14 14:37         ` Rolf Campbell
  0 siblings, 0 replies; 15+ messages in thread
From: Rolf Campbell @ 2013-10-14 14:37 UTC (permalink / raw)
  To: cygwin

On 2013-10-14 09:35, Andrey Repin wrote:
>> I've tried this using both the 32-bit version and 64-bit version of
>> cygwin 1.7.25 with the same results.
>
> Is this happens under mintty or native windows console?
Both.


--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [ANNOUNCEMENT] Updated: make-4.0-1 (x86 and x86_64)
  2013-10-14 13:13     ` Rolf Campbell
  2013-10-14 14:05       ` Andrey Repin
@ 2013-10-15 19:47       ` Christopher Faylor
  2013-10-16 14:59         ` Rolf Campbell
  1 sibling, 1 reply; 15+ messages in thread
From: Christopher Faylor @ 2013-10-15 19:47 UTC (permalink / raw)
  To: cygwin

On Mon, Oct 14, 2013 at 09:12:48AM -0400, Rolf Campbell wrote:
>On 2013-10-11 13:12, Christopher Faylor wrote:
>> I've made a new version of make available for installation.  This is a
>> refresh against the newly released make-4.0.  The appropriate contents
>> of the NEWS file for this snapshot are below.
>[...]
>> * New command line option: --output-sync (-O) enables grouping of output by
>>    target or by recursive make.  This is useful during parallel builds to avoid
>>    mixing output from different jobs together giving hard-to-understand
>>    results.  Original implementation by David Boyce <dsb@boyski.com>.
>>    Reworked and enhanced by Frank Heckenbach <f.heckenbach@fh-soft.de>.
>>    Windows support by Eli Zaretskii <eliz@gnu.org>.
>
>Whenever I try this under cygwin, I get an error output "fcntl(): 
>Invalid argument", even with extremely trivial makefiles and 
>invocations.  Make seems to work correctly, but produces error output.
>
>echo -e 'all:\n\ttouch $@' > m.mk
>make -O -f m.mk
>
>Produces this output:
>fcntl(): Invalid argument
>touch all
>
>I've tried this using both the 32-bit version and 64-bit version of 
>cygwin 1.7.25 with the same results.

I can't test this right now but it will probably work better if you
redirect stdout/stderr to a file.  That's what the make testsuite does.
make apparently expects to be able to get a lock on console/tty which
isn't currently supported on Cygwin.

cgf

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [ANNOUNCEMENT] Updated: make-4.0-1 (x86 and x86_64)
  2013-10-15 19:47       ` Christopher Faylor
@ 2013-10-16 14:59         ` Rolf Campbell
  2013-10-16 21:36           ` Christopher Faylor
  0 siblings, 1 reply; 15+ messages in thread
From: Rolf Campbell @ 2013-10-16 14:59 UTC (permalink / raw)
  To: cygwin

On 2013-10-15 15:47, Christopher Faylor wrote:
> On Mon, Oct 14, 2013 at 09:12:48AM -0400, Rolf Campbell wrote:
>> make -O -f m.mk
>>
>> Produces this output:
>> fcntl(): Invalid argument
>> touch all
>>
>> I've tried this using both the 32-bit version and 64-bit version of
>> cygwin 1.7.25 with the same results.
>
> I can't test this right now but it will probably work better if you
> redirect stdout/stderr to a file.  That's what the make testsuite does.
> make apparently expects to be able to get a lock on console/tty which
> isn't currently supported on Cygwin.
>
> cgf

I can confirm that piping the output to a file makes the error message 
go away.



--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [ANNOUNCEMENT] Updated: make-4.0-1 (x86 and x86_64)
  2013-10-16 14:59         ` Rolf Campbell
@ 2013-10-16 21:36           ` Christopher Faylor
  0 siblings, 0 replies; 15+ messages in thread
From: Christopher Faylor @ 2013-10-16 21:36 UTC (permalink / raw)
  To: cygwin

On Wed, Oct 16, 2013 at 10:59:31AM -0400, Rolf Campbell wrote:
>On 2013-10-15 15:47, Christopher Faylor wrote:
>> On Mon, Oct 14, 2013 at 09:12:48AM -0400, Rolf Campbell wrote:
>>> make -O -f m.mk
>>>
>>> Produces this output:
>>> fcntl(): Invalid argument
>>> touch all
>>>
>>> I've tried this using both the 32-bit version and 64-bit version of
>>> cygwin 1.7.25 with the same results.
>>
>> I can't test this right now but it will probably work better if you
>> redirect stdout/stderr to a file.  That's what the make testsuite does.
>> make apparently expects to be able to get a lock on console/tty which
>> isn't currently supported on Cygwin.
>
>I can confirm that piping the output to a file makes the error message 
>go away.

Corinna and I are discussing how to implement the missing functionality
in Cygwin.  I probably should have known that Linux allowed you to lock
ttys this way but it sure never occurred to me to implement it in Cygwin.

cgf

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 15+ messages in thread

* GNU Make 4.0.1 — infinite loop on startup
@ 2013-10-27  7:04     ` Yuriy Chernyshov
  2013-10-27 18:51       ` GNU Make 4.0.1 ??? " Christopher Faylor
  2013-10-27 19:40       ` [ANNOUNCEMENT] Updated: make-4.0-2 (x86 and x86_64) Christopher Faylor
  0 siblings, 2 replies; 15+ messages in thread
From: Yuriy Chernyshov @ 2013-10-27  7:04 UTC (permalink / raw)
  To: cygwin

Greetings.

On October, 9 GNU Make 4.0 was released and is already available on cygwin
(I'm using x86_64 on Win7).

My makefile is working fine with the latest version from 3.0 branch
(3.82.xx), but comes into infinite loop on startup (no rules are being
executed) with 4.0.1. 100% of a single cpu core is concumed, memory
usage grows quite fast.

Makefile can be found on github page:
https://github.com/georgthegreat/dancebooks-bibtex/blob/dev/makefile

I looked through the 4.0-changelog, but there is nothing to cause such
behavior.

I've found the problematic line:

MARKDOWN_FILES := $(wildcard transcriptions/*.md)

ls is working fine with the given wildcard.
Other wildcards (two previous lines are also working fine).

What can the problem lay in?

With best regards,
Yuriy.

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: GNU Make 4.0.1 ??? infinite loop on startup
  2013-10-27  7:04     ` GNU Make 4.0.1 — infinite loop on startup Yuriy Chernyshov
@ 2013-10-27 18:51       ` Christopher Faylor
  2013-11-02 16:37         ` Rolf Campbell
  2013-10-27 19:40       ` [ANNOUNCEMENT] Updated: make-4.0-2 (x86 and x86_64) Christopher Faylor
  1 sibling, 1 reply; 15+ messages in thread
From: Christopher Faylor @ 2013-10-27 18:51 UTC (permalink / raw)
  To: cygwin

On Sun, Oct 27, 2013 at 10:08:00AM +0400, Yuriy Chernyshov wrote:
>Greetings.
>
>On October, 9 GNU Make 4.0 was released and is already available on cygwin
>(I'm using x86_64 on Win7).
>
>My makefile is working fine with the latest version from 3.0 branch
>(3.82.xx), but comes into infinite loop on startup (no rules are being
>executed) with 4.0.1. 100% of a single cpu core is concumed, memory
>usage grows quite fast.
>
>Makefile can be found on github page:
>https://github.com/georgthegreat/dancebooks-bibtex/blob/dev/makefile
>
>I looked through the 4.0-changelog, but there is nothing to cause such
>behavior.
>
>I've found the problematic line:
>
>MARKDOWN_FILES := $(wildcard transcriptions/*.md)
>
>ls is working fine with the given wildcard.
>Other wildcards (two previous lines are also working fine).
>
>What can the problem lay in?

I downloaded the source code for the above and ran into the problem
pretty quickly.  make was allocating an ever-increasing amount of memory
due to a problem with the processing of eight bit characters with the
high-bit set.  That caused the character to be interpreted as negative
and that caused negative indexing off an array.

The upcoming make-4.0-2 release should fix this problem.

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [ANNOUNCEMENT] Updated: make-4.0-2 (x86 and x86_64)
  2013-10-27  7:04     ` GNU Make 4.0.1 — infinite loop on startup Yuriy Chernyshov
  2013-10-27 18:51       ` GNU Make 4.0.1 ??? " Christopher Faylor
@ 2013-10-27 19:40       ` Christopher Faylor
  1 sibling, 0 replies; 15+ messages in thread
From: Christopher Faylor @ 2013-10-27 19:40 UTC (permalink / raw)
  To: cygwin

I've made a new version of the make (A GNU tool which simplifies the
build process for users) package available for installation.  The
purpose of this release is to fix a problem mentioned here:

http://cygwin.com/ml/cygwin/2013-10/msg00393.html

and here:

http://savannah.gnu.org/bugs/index.php?40371

This change causes make 4.0 to work better with non-English characters
but it is likely that more work needs to be done in this area.

make is available for installation under the "Devel" category.

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: GNU Make 4.0.1 ??? infinite loop on startup
  2013-10-27 18:51       ` GNU Make 4.0.1 ??? " Christopher Faylor
@ 2013-11-02 16:37         ` Rolf Campbell
  2013-11-02 16:42           ` Rolf Campbell
  0 siblings, 1 reply; 15+ messages in thread
From: Rolf Campbell @ 2013-11-02 16:37 UTC (permalink / raw)
  To: cygwin

On 2013-10-27 14:51, Christopher Faylor wrote:
> I downloaded the source code for the above and ran into the problem
> pretty quickly.  make was allocating an ever-increasing amount of memory
> due to a problem with the processing of eight bit characters with the
> high-bit set.  That caused the character to be interpreted as negative
> and that caused negative indexing off an array.
>
> The upcoming make-4.0-2 release should fix this problem.

Was this a problem with the upstream source?  Or just a problem with the 
cygwin build of it?



--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: GNU Make 4.0.1 ??? infinite loop on startup
  2013-11-02 16:37         ` Rolf Campbell
@ 2013-11-02 16:42           ` Rolf Campbell
  2013-11-02 18:44             ` Christopher Faylor
  0 siblings, 1 reply; 15+ messages in thread
From: Rolf Campbell @ 2013-11-02 16:42 UTC (permalink / raw)
  To: cygwin

On 2013-11-02 12:36, Rolf Campbell wrote:
> On 2013-10-27 14:51, Christopher Faylor wrote:
>> I downloaded the source code for the above and ran into the problem
>> pretty quickly.  make was allocating an ever-increasing amount of memory
>> due to a problem with the processing of eight bit characters with the
>> high-bit set.  That caused the character to be interpreted as negative
>> and that caused negative indexing off an array.
>>
>> The upcoming make-4.0-2 release should fix this problem.
>
> Was this a problem with the upstream source?  Or just a problem with the
> cygwin build of it?
Nevermind, just looked it up myself.


--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: GNU Make 4.0.1 ??? infinite loop on startup
  2013-11-02 16:42           ` Rolf Campbell
@ 2013-11-02 18:44             ` Christopher Faylor
  0 siblings, 0 replies; 15+ messages in thread
From: Christopher Faylor @ 2013-11-02 18:44 UTC (permalink / raw)
  To: cygwin

On Sat, Nov 02, 2013 at 12:42:28PM -0400, Rolf Campbell wrote:
>On 2013-11-02 12:36, Rolf Campbell wrote:
>> On 2013-10-27 14:51, Christopher Faylor wrote:
>>> I downloaded the source code for the above and ran into the problem
>>> pretty quickly.  make was allocating an ever-increasing amount of memory
>>> due to a problem with the processing of eight bit characters with the
>>> high-bit set.  That caused the character to be interpreted as negative
>>> and that caused negative indexing off an array.
>>>
>>> The upcoming make-4.0-2 release should fix this problem.
>>
>> Was this a problem with the upstream source?  Or just a problem with the
>> cygwin build of it?
>Nevermind, just looked it up myself.

I actually pointed to the upstream bug in the announcement.

cgf

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2013-11-02 18:44 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20100810175435.GA27225@ednor.casa.cgf.cx>
2011-12-02 19:33 ` [ANNOUNCEMENT] Updated: make-3.82.90-1 Christopher Faylor
     [not found] ` <20111202173631.GA8373@ednor.casa.cgf.cx>
2013-10-11 17:16   ` [ANNOUNCEMENT] Updated: make-4.0-1 (x86 and x86_64) Christopher Faylor
2013-10-14 13:13     ` Rolf Campbell
2013-10-14 14:05       ` Andrey Repin
2013-10-14 14:37         ` Rolf Campbell
2013-10-15 19:47       ` Christopher Faylor
2013-10-16 14:59         ` Rolf Campbell
2013-10-16 21:36           ` Christopher Faylor
     [not found]   ` <20131011171208.GA3094@ednor.casa.cgf.cx>
2013-10-12 20:30     ` Reini Urban
2013-10-27  7:04     ` GNU Make 4.0.1 — infinite loop on startup Yuriy Chernyshov
2013-10-27 18:51       ` GNU Make 4.0.1 ??? " Christopher Faylor
2013-11-02 16:37         ` Rolf Campbell
2013-11-02 16:42           ` Rolf Campbell
2013-11-02 18:44             ` Christopher Faylor
2013-10-27 19:40       ` [ANNOUNCEMENT] Updated: make-4.0-2 (x86 and x86_64) Christopher Faylor

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).