public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* Bash seg faulting?
@ 2017-06-02  0:01 Andy Hall
  2017-06-02  1:50 ` Doug Henderson
  0 siblings, 1 reply; 5+ messages in thread
From: Andy Hall @ 2017-06-02  0:01 UTC (permalink / raw)
  To: cygwin

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

Here is a strange one.   I have two scripts, conv.sh and conv.bat that do the same thing: scan the current directory for
.doc files and convert them to .docx files.  Here are the two scripts.

$ cat conv.sh
#!/bin/bash

OFFICE_BIN="C:\Program Files (x86)\Microsoft Office\root\Office16"

for doc in *.doc; do
        echo "converting: $doc"
        "$OFFICE_BIN"/Wordconv.exe -oice -nme "$doc" "${doc}x"
done

$cat conv.bat
@echo off
set OFFICE_BIN=C:\Program Files (x86)\Microsoft Office\root\Office16

for %%a in ("*.doc") do (
        rem This is necessary because *.doc can match *.docx! Need to check the actual extension.
        if "%%~xa" == ".doc" (
                echo "converting: %%a"
                "%OFFICE_BIN%\Wordconv.exe" -oice -nme "%%a" "%%ax"a
        )
)

When conv.sh is run on a directory containing three .doc files, the conversions work but I get three seg faults at three
different locations.  E.g.

$ conv.sh
converting: Post-Install.doc
./conv.sh: line 5:  6060 Segmentation fault      "$OFFICE_BIN"/Wordconv.exe -oice -nme "$doc" "${doc}x"
converting: Post-InstallB.doc
./conv.sh: line 5: 13264 Segmentation fault      "$OFFICE_BIN"/Wordconv.exe -oice -nme "$doc" "${doc}x"
converting: Post-InstallTest.doc
./conv.sh: line 5: 13260 Segmentation fault      "$OFFICE_BIN"/Wordconv.exe -oice -nme "$doc" "${doc}x"

When conv.bat is run in the same directory, the conversions work and I don't get any seg faults (or they are not being
reported!)  E.g. 
$ conv.bat
"converting: Post-Install.doc"
"converting: Post-InstallB.doc"
"converting: Post-InstallTest.doc"

Now Wordconf.exe is a 32-bit executable running on a Windows 10 Pro 64-bit installation.

My cygcheck.out is attached.  I guess I can get an strace if need.


Andy


[-- Attachment #2: cygcheck.out --]
[-- Type: application/octet-stream, Size: 22972 bytes --]


Cygwin Configuration Diagnostics
Current System Time: Fri Jun 02 00:49:20 2017

Windows 10 Professional Ver 10.0 Build 14393 

Path:	.
	C:\cygwin64\home\Andy\bin
	C:\cygwin64\home\Andy\LoadTest
	C:\Program Files\Java\jdk1.7.0_67\bin
	.
	C:\cygwin64\home\Andy\bin
	C:\cygwin64\usr\local\bin
	C:\cygwin64\bin
	C:\ProgramData\Oracle\Java\javapath
	C:\WINDOWS\system32
	C:\WINDOWS
	C:\WINDOWS\System32\Wbem
	C:\WINDOWS\System32\WindowsPowerShell\v1.0
	C:\Program Files\Perforce
	C:\Program Files (x86)\QuickTime\QTSystem
	C:\Program Files (x86)\PuTTY
	C:\Program Files (x86)\SSH Communications Security\SSH Secure Shell
	C:\Users\Andy\AppData\Local\Microsoft\WindowsApps

Output from C:\cygwin64\bin\id.exe
UID: 1001(Andy)                GID: 513(None)
513(None)                      1000(HomeUsers)
545(Users)                     4(INTERACTIVE)
66049(CONSOLE LOGON)           11(Authenticated Users)
15(This Organization)          113(Local account)
66048(LOCAL)                   262154(NTLM Authentication)
401408(Medium Mandatory Level)

SysDir: C:\WINDOWS\system32
WinDir: C:\WINDOWS

USER = 'Andy'
PWD = '/home/Andy/ConvWord'
HOME = '/home/Andy'

USERDOMAIN = 'Andy-Work'
OS = 'Windows_NT'
COMMONPROGRAMFILES = 'C:\Program Files\Common Files'
PROCESSOR_LEVEL = '6'
PSModulePath = 'C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules\'
CommonProgramW6432 = 'C:\Program Files\Common Files'
AWKPATH = '.:/home/Andy/bin/awk'
CommonProgramFiles(x86) = 'C:\Program Files (x86)\Common Files'
FP_NO_HOST_CHECK = 'NO'
LANG = 'en_US.UTF-8'
TZ = 'America/Los_Angeles'
HOSTNAME = 'Andy-Work'
PUBLIC = 'C:\Users\Public'
OLDPWD = '/home/Andy'
USERNAME = 'Andy'
JAVA_HOME = '/cygdrive/c/Program Files/Java/jdk1.7.0_67'
LOGONSERVER = '\\ANDY-WORK'
PROCESSOR_ARCHITECTURE = 'AMD64'
LOCALAPPDATA = 'C:\Users\Andy\AppData\Local'
CLASSPATH = 'C:\Program Files (x86)\Business Objects\Common\3.5\java\lib\CrystalFormulas.jar;C:\Program Files (x86)\Business Objects\Common\3.5\java\lib\CrystalReportingCommon.jar;C:\Program Files (x86)\Business Objects\Common\3.5\java\lib\u211java.jar;C:\Program Files (x86)\Business Objects\Common\3.5\java\lib\external\icu4j.jar;C:\Program Files (x86)\Business Objects\Common\3.5\java\lib\external\log4j.jar;C:\cygwin64\home\Andy\CRUFLS\lib\MyFunctions.jar'
COMPUTERNAME = 'ANDY-WORK'
FPS_BROWSER_APP_PROFILE_STRING = 'Internet Explorer'
!:: = '::\'
SYSTEMDRIVE = 'C:'
USERPROFILE = 'C:\Users\Andy'
PATHEXT = '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC'
SYSTEMROOT = 'C:\WINDOWS'
USERDOMAIN_ROAMINGPROFILE = 'Andy-Work'
PROCESSOR_IDENTIFIER = 'Intel64 Family 6 Model 15 Stepping 11, GenuineIntel'
TMP = '/tmp'
windows_tracing_logfile = 'C:\BVTBin\Tests\installpackage\csilogfile.log'
OneDrive = 'C:\Users\Andy\OneDrive'
PROCESSOR_REVISION = '0f0b'
FPS_BROWSER_USER_PROFILE_STRING = 'Default'
PROFILEREAD = 'true'
NUMBER_OF_PROCESSORS = '2'
ProgramW6432 = 'C:\Program Files'
windows_tracing_flags = '3'
COMSPEC = 'C:\WINDOWS\system32\cmd.exe'
APPDATA = 'C:\Users\Andy\AppData\Roaming'
SHELL = '/bin/bash'
TERM = 'xterm'
WINDIR = 'C:\WINDOWS'
ProgramData = 'C:\ProgramData'
SHLVL = '1'
PRINTER = 'HP LaserJet 400 M401 PCL 6'
PROGRAMFILES = 'C:\Program Files'
ALLUSERSPROFILE = 'C:\ProgramData'
TEMP = '/tmp'
SESSIONNAME = 'Console'
ProgramFiles(x86) = 'C:\Program Files (x86)'
PS1 = '\[\e]0;\w\a\]\n\[\e[32m\]\u@\h \[\e[33m\]\w\[\e[0m\]\n\$ '
HOMEDRIVE = 'C:'
INFOPATH = '/usr/local/info:/usr/share/info:/usr/info'
HOMEPATH = '\Users\Andy'
INSTALL_DIR = '/home/Andy'
ORIGINAL_PATH = '/cygdrive/c/ProgramData/Oracle/Java/javapath:/cygdrive/c/WINDOWS/system32:/cygdrive/c/WINDOWS:/cygdrive/c/WINDOWS/System32/Wbem:/cygdrive/c/WINDOWS/System32/WindowsPowerShell/v1.0:/cygdrive/c/Program Files/Perforce:/cygdrive/c/Program Files (x86)/QuickTime/QTSystem:/cygdrive/c/Program Files (x86)/PuTTY:/cygdrive/c/Program Files (x86)/SSH Communications Security/SSH Secure Shell:/cygdrive/c/Users/Andy/AppData/Local/Microsoft/WindowsApps'
EXECIGNORE = '*.dll'
_ = '/usr/bin/cygcheck'

HKEY_CURRENT_USER\SOFTWARE\Cygwin
HKEY_CURRENT_USER\SOFTWARE\Cygwin\Installations
  (default) = '\??\C:\cygwin64'
HKEY_CURRENT_USER\SOFTWARE\Cygwin\Program Options
HKEY_CURRENT_USER\SOFTWARE\Classes\Directory\Background\Shell\cygwin64_bash
  (default) = '&Bash Prompt Here'
HKEY_CURRENT_USER\SOFTWARE\Classes\Directory\Background\Shell\cygwin64_bash\command
  (default) = 'C:\cygwin64\bin\mintty.exe -e /bin/xhere /bin/bash.exe "%V"'
HKEY_CURRENT_USER\SOFTWARE\Classes\Directory\Shell\cygwin64_bash
  (default) = '&Bash Prompt Here'
HKEY_CURRENT_USER\SOFTWARE\Classes\Directory\Shell\cygwin64_bash\command
  (default) = 'C:\cygwin64\bin\mintty.exe -e /bin/xhere /bin/bash.exe "%L"'
HKEY_CURRENT_USER\SOFTWARE\Classes\Drive\Background\Shell\cygwin64_bash
  (default) = '&Bash Prompt Here'
HKEY_CURRENT_USER\SOFTWARE\Classes\Drive\Background\Shell\cygwin64_bash\command
  (default) = 'C:\cygwin64\bin\mintty.exe -e /bin/xhere /bin/bash.exe "%V"'
HKEY_CURRENT_USER\SOFTWARE\Classes\Drive\Shell\cygwin64_bash
  (default) = '&Bash Prompt Here'
HKEY_CURRENT_USER\SOFTWARE\Classes\Drive\Shell\cygwin64_bash\command
  (default) = 'C:\cygwin64\bin\mintty.exe -e /bin/xhere /bin/bash.exe "%L"'
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'

obcaseinsensitive set to 1

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

c:  hd  NTFS    238022Mb  41% CP CS UN PA FC     EN
d:  cd             N/A    N/A                      
z:  net NTFS   1891830Mb  36% CP CS UN PA          

C:\cygwin64      /          system  binary,auto
C:\cygwin64\bin  /usr/bin   system  binary,auto
C:\cygwin64\lib  /usr/lib   system  binary,auto
cygdrive prefix  /cygdrive  user    binary,posix=0,auto

Found: C:\cygwin64\home\Andy\bin\awk
Found: C:\cygwin64\home\Andy\bin\awk
Found: C:\cygwin64\bin\awk
Warning: C:\cygwin64\home\Andy\bin\awk hides C:\cygwin64\bin\awk
Not Found: awk
Found: C:\cygwin64\bin\bash.exe
Found: C:\cygwin64\bin\cat.exe
Found: C:\cygwin64\bin\cp.exe
Not Found: cpp (good!)
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
Not Found: gcc
Not Found: gdb
Found: C:\cygwin64\bin\grep.exe
Found: C:\cygwin64\bin\kill.exe
Not Found: ld
Found: C:\cygwin64\bin\ls.exe
Not Found: make
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\home\Andy\bin\test
Found: C:\cygwin64\home\Andy\bin\test
Found: C:\cygwin64\bin\test.exe
Warning: C:\cygwin64\home\Andy\bin\test hides C:\cygwin64\bin\test.exe
Found: C:\cygwin64\bin\vi.exe
Found: C:\cygwin64\bin\vim.exe

   39k 2016/09/19 C:\cygwin64\bin\cygargp-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygargp-0.dll" v0.0 ts=2016-09-19 02:13
   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
  180k 2015/03/23 C:\cygwin64\bin\cygblkid-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygblkid-1.dll" v0.0 ts=2015-03-23 09:46
   64k 2017/02/22 C:\cygwin64\bin\cygbz2-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygbz2-1.dll" v0.0 ts=2017-02-22 07:22
   13k 2013/03/06 C:\cygwin64\bin\cygcatgets1.dll - os=4.0 img=0.0 sys=5.2
                  "cygcatgets1.dll" v0.0 ts=2013-03-06 14:34
   13k 2015/03/19 C:\cygwin64\bin\cygcom_err-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygcom_err-2.dll" v0.0 ts=2015-03-19 02:44
   10k 2016/06/09 C:\cygwin64\bin\cygcrypt-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygcrypt-0.dll" v0.0 ts=2016-06-09 16:02
 2235k 2017/01/26 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=2017-01-26 20:10
  481k 2017/05/12 C:\cygwin64\bin\cygcurl-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygcurl-4.dll" v0.0 ts=2017-05-12 06:19
 1549k 2016/08/22 C:\cygwin64\bin\cygdb-5.3.dll - os=4.0 img=0.0 sys=5.2
                  "cygdb-5.3.dll" v0.0 ts=2016-08-22 09:51
  124k 2016/08/22 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=2016-08-22 09:52
  570k 2016/08/22 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=2016-08-22 09:52
  154k 2013/10/20 C:\cygwin64\bin\cygedit-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygedit-0.dll" v0.0 ts=2013-10-20 21:56
  145k 2016/06/21 C:\cygwin64\bin\cygexpat-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygexpat-1.dll" v0.0 ts=2016-06-21 23:15
   27k 2015/11/17 C:\cygwin64\bin\cygffi-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygffi-6.dll" v0.0 ts=2015-11-17 22:14
   55k 2017/03/29 C:\cygwin64\bin\cygformw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygformw-10.dll" v0.0 ts=2017-03-29 23:26
   70k 2016/06/13 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=2016-06-13 16:18
   39k 2016/10/10 C:\cygwin64\bin\cyggdbm-4.dll - os=4.0 img=0.0 sys=5.2
                  "cyggdbm-4.dll" v0.0 ts=2016-10-10 09:26
   13k 2016/10/10 C:\cygwin64\bin\cyggdbm_compat-4.dll - os=4.0 img=0.0 sys=5.2
                  "cyggdbm_compat-4.dll" v0.0 ts=2016-10-10 09:26
  527k 2017/01/21 C:\cygwin64\bin\cyggmp-10.dll - os=4.0 img=0.0 sys=5.2
                  "cyggmp-10.dll" v0.0 ts=2017-01-21 18:25
  258k 2016/09/26 C:\cygwin64\bin\cyggssapi_krb5-2.dll - os=4.0 img=0.0 sys=5.2
                  "cyggssapi_krb5-2.dll" v0.0 ts=2016-09-26 06:55
   33k 2017/02/13 C:\cygwin64\bin\cyghistory7.dll - os=4.0 img=0.0 sys=5.2
                  "cyghistory7.dll" v0.0 ts=2017-02-11 22:39
 1009k 2015/02/20 C:\cygwin64\bin\cygiconv-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygiconv-2.dll" v0.0 ts=2015-02-20 17:07
  197k 2017/05/02 C:\cygwin64\bin\cygidn-11.dll - os=4.0 img=0.0 sys=5.2
                  "cygidn-11.dll" v0.0 ts=2017-05-02 01:18
  111k 2017/04/24 C:\cygwin64\bin\cygidn2-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygidn2-0.dll" v0.0 ts=2017-04-24 05:20
   42k 2016/10/23 C:\cygwin64\bin\cygintl-8.dll - os=4.0 img=0.0 sys=5.2
                  "cygintl-8.dll" v0.0 ts=2016-10-23 07:17
  177k 2016/09/26 C:\cygwin64\bin\cygk5crypto-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygk5crypto-3.dll" v0.0 ts=2016-09-26 06:55
  722k 2016/09/26 C:\cygwin64\bin\cygkrb5-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygkrb5-3.dll" v0.0 ts=2016-09-26 06:55
   35k 2016/09/26 C:\cygwin64\bin\cygkrb5support-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygkrb5support-0.dll" v0.0 ts=2016-09-26 06:54
   45k 2015/11/19 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=2015-11-19 14:17
  246k 2015/11/19 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=2015-11-19 14:18
  262k 2015/11/19 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=2015-11-19 14:19
    6k 2017/04/01 C:\cygwin64\bin\cyglsa64.dll - os=4.0 img=0.0 sys=5.2
                  "cyglsa64.dll" v0.0 ts=2017-04-01 19:47
  139k 2017/05/10 C:\cygwin64\bin\cyglzma-5.dll - os=4.0 img=0.0 sys=5.2
                  "cyglzma-5.dll" v0.0 ts=2017-05-10 01:17
  121k 2017/05/03 C:\cygwin64\bin\cygmagic-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygmagic-1.dll" v0.0 ts=2017-05-03 18:25
  169k 2016/10/10 C:\cygwin64\bin\cygman-2-7-5.dll - os=4.0 img=0.0 sys=5.2
                  "cygman-2-7-5.dll" v0.0 ts=2016-10-10 22:07
   22k 2016/10/10 C:\cygwin64\bin\cygmandb-2-7-5.dll - os=4.0 img=0.0 sys=5.2
                  "cygmandb-2-7-5.dll" v0.0 ts=2016-10-10 22:07
   29k 2017/03/29 C:\cygwin64\bin\cygmenuw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygmenuw-10.dll" v0.0 ts=2017-03-29 23:26
   42k 2013/08/12 C:\cygwin64\bin\cygmetalink-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygmetalink-3.dll" v0.0 ts=2013-08-13 00:02
  346k 2017/04/08 C:\cygwin64\bin\cygmpfr-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygmpfr-4.dll" v0.0 ts=2017-04-08 12:19
   53k 2017/03/29 C:\cygwin64\bin\cygncurses++w-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygncurses++w-10.dll" v0.0 ts=2017-03-29 23:31
  282k 2017/03/29 C:\cygwin64\bin\cygncursesw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygncursesw-10.dll" v0.0 ts=2017-03-29 23:25
  137k 2017/03/13 C:\cygwin64\bin\cygnghttp2-14.dll - os=4.0 img=0.0 sys=5.2
                  "cygnghttp2-14.dll" v0.0 ts=2017-03-13 19:40
 1003k 2017/04/28 C:\cygwin64\bin\cygp11-kit-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygp11-kit-0.dll" v0.0 ts=2017-04-28 05:23
   14k 2017/03/29 C:\cygwin64\bin\cygpanelw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygpanelw-10.dll" v0.0 ts=2017-03-29 23:25
  475k 2017/04/23 C:\cygwin64\bin\cygpcre-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygpcre-1.dll" v0.0 ts=2017-04-24 00:50
 2020k 2017/01/15 C:\cygwin64\bin\cygperl5_22.dll - os=4.0 img=0.0 sys=5.2
                  "cygperl5_22.dll" v0.0 ts=2017-01-15 12:12
   39k 2015/04/09 C:\cygwin64\bin\cygpipeline-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygpipeline-1.dll" v0.0 ts=2015-04-09 21:04
   41k 2016/07/13 C:\cygwin64\bin\cygpopt-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygpopt-0.dll" v0.0 ts=2016-07-13 06:16
   52k 2017/01/17 C:\cygwin64\bin\cygpsl-5.dll - os=4.0 img=0.0 sys=5.2
                  "cygpsl-5.dll" v0.0 ts=2017-01-17 17:10
  219k 2017/02/13 C:\cygwin64\bin\cygreadline7.dll - os=4.0 img=0.0 sys=5.2
                  "cygreadline7.dll" v0.0 ts=2017-02-11 22:39
   96k 2017/04/16 C:\cygwin64\bin\cygsasl2-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygsasl2-3.dll" v0.0 ts=2017-04-16 19:15
   11k 2015/07/17 C:\cygwin64\bin\cygsigsegv-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygsigsegv-2.dll" v0.0 ts=2015-07-17 22:35
   89k 2015/03/23 C:\cygwin64\bin\cygsmartcols-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygsmartcols-1.dll" v0.0 ts=2015-03-23 09:46
  156k 2016/03/02 C:\cygwin64\bin\cygssh2-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygssh2-1.dll" v0.0 ts=2016-03-02 18:03
  399k 2017/01/26 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=2017-01-26 20:10
   12k 2016/06/13 C:\cygwin64\bin\cygssp-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygssp-0.dll" v0.0 ts=2016-06-13 17:10
 1325k 2016/06/13 C:\cygwin64\bin\cygstdc++-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygstdc++-6.dll" v0.0 ts=2016-06-13 16:38
   66k 2017/05/29 C:\cygwin64\bin\cygtasn1-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygtasn1-6.dll" v0.0 ts=2017-05-29 23:32
   53k 2017/03/29 C:\cygwin64\bin\cygticw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygticw-10.dll" v0.0 ts=2017-03-29 23:25
 1538k 2015/10/16 C:\cygwin64\bin\cygunistring-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygunistring-2.dll" v0.0 ts=2015-10-16 21:40
   15k 2015/03/23 C:\cygwin64\bin\cyguuid-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyguuid-1.dll" v0.0 ts=2015-03-23 09:46
   83k 2017/03/03 C:\cygwin64\bin\cygz.dll - os=4.0 img=0.0 sys=5.2
                  "cygz.dll" v0.0 ts=2017-03-03 21:42
 3238k 2017/04/01 C:\cygwin64\bin\cygwin1.dll - os=4.0 img=0.0 sys=5.2
                  "cygwin1.dll" v0.0 ts=2017-04-01 19:47
    Cygwin DLL version info:
        DLL version: 2.8.0
        DLL epoch: 19
        DLL old termios: 5
        DLL malloc env: 28
        Cygwin conv: 181
        API major: 0
        API minor: 309
        Shared data: 5
        DLL identifier: cygwin1
        Mount registry: 3
        Cygwin registry name: Cygwin
        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
Environment         : CYGWIN="CYGWIN" 
Process Type        : Own Process
Startup             : Automatic
Dependencies        : tcpip
Account             : .\cyg_server


Cygwin Package Information
Last downloaded files to: C:\Users\Andy\Downloads\Cygwin
Last downloaded files from: http://cygwin.mirror.constant.com/

Package                  Version             Status
_autorebase              001005-1            OK
Empty package _update-info-dir
_update-info-dir         03000-1             OK
alternatives             1.3.30c-10          OK
base-cygwin              3.8-1               OK
base-files               4.2-4               OK
bash                     4.4.12-3            OK
bzip2                    1.0.6-3             OK
ca-certificates          2.14-1              OK
chere                    1.4-1               OK
coreutils                8.26-2              OK
crypt                    1.4-1               OK
csih                     0.9.9-1             OK
curl                     7.54.0-1            OK
cygrunsrv                1.62-1              OK
cygutils                 1.4.15-2            OK
cygwin                   2.8.0-1             OK
dash                     0.5.9.1-1           OK
diffutils                3.5-2               OK
dos2unix                 7.3.4-1             OK
editrights               1.03-1              OK
file                     5.30-1              OK
findutils                4.6.0-1             OK
gawk                     4.1.4-3             OK
getent                   2.18.90-4           OK
grep                     3.0-2               OK
groff                    1.22.3-1            OK
gzip                     1.8-1               OK
hostname                 3.13-1              OK
info                     6.3-1               OK
ipc-utils                1.0-2               OK
less                     487-1               OK
libargp                  20110921-3          OK
libattr1                 2.4.46-1            OK
libblkid1                2.25.2-2            OK
libbz2_1                 1.0.6-3             OK
libcatgets1              1.1-2               OK
libcom_err2              1.42.12-2           OK
libcrypt0                1.4-1               OK
libcurl4                 7.54.0-1            OK
libdb5.3                 5.3.28-1            OK
libedit0                 20130712-1          OK
libexpat1                2.2.0-0             OK
libffi6                  3.2.1-2             OK
libgcc1                  5.4.0-1             OK
libgdbm4                 1.12-1              OK
libgmp10                 6.1.2-1             OK
libgssapi_krb5_2         1.14.4-1            OK
libiconv                 1.14-3              OK
libiconv2                1.14-3              OK
libidn11                 1.33-1              OK
libidn2_0                2.0.1-1             OK
libintl8                 0.19.8.1-2          OK
libk5crypto3             1.14.4-1            OK
libkrb5_3                1.14.4-1            OK
libkrb5support0          1.14.4-1            OK
liblzma5                 5.2.3-1             OK
libmetalink3             0.1.2-1             OK
libmpfr4                 3.1.5-1p2           OK
libncursesw10            6.0-10.20170325     OK
libnghttp2_14            1.14.0-2            OK
libopenldap2_4_2         2.4.42-1            OK
libopenssl100            1.0.2k-1            OK
libp11-kit0              0.23.5-1            OK
libpcre1                 8.40-3              OK
libpipeline1             1.4.0-1             OK
libpopt-common           1.16-2              OK
libpopt0                 1.16-2              OK
libpsl5                  0.17.0-1            OK
libreadline7             7.0.3-3             OK
libsasl2_3               2.1.26-11           OK
libsigsegv2              2.10-2              OK
libsmartcols1            2.25.2-2            OK
libssh2_1                1.7.0-1             OK
libssp0                  5.4.0-1             OK
libstdc++6               5.4.0-1             OK
libtasn1_6               4.12-1              OK
libunistring2            0.9.6-1             OK
libuuid1                 2.25.2-2            OK
login                    1.11-1              OK
lynx                     2.8.7-2             OK
man-db                   2.7.5-2             OK
mintty                   2.7.7-0             OK
ncftp                    3.2.5-2             OK
ncurses                  6.0-10.20170325     OK
openssh                  7.5p1-1             OK
openssl                  1.0.2k-1            OK
p11-kit                  0.23.5-1            OK
p11-kit-trust            0.23.5-1            OK
perl                     5.22.3-1            OK
perl-Carp                1.38-1              OK
perl-Pod-Simple          3.35-1              OK
perl-Unicode-Normalize   1.25-1              OK
perl_autorebase          5.22.3-1            OK
perl_base                5.22.3-1            OK
Empty package popt
popt                     1.16-2              OK
publicsuffix-list-dafsa  20170424-1          OK
rebase                   4.4.2-1             OK
rsync                    3.1.2-1             OK
run                      1.3.4-2             OK
sed                      4.4-1               OK
tar                      1.29-1              OK
tcsh                     6.20.00-1           OK
terminfo                 6.0-10.20170325     OK
texinfo                  6.3-1               OK
tzcode                   2016j-1             OK
tzdata                   2017b-1             OK
unzip                    6.0-16              OK
util-linux               2.25.2-2            OK
vim                      8.0.0596-1          OK
vim-common               8.0.0596-1          OK
vim-minimal              8.0.0596-1          OK
which                    2.20-2              OK
windows-default-manifest 6.4-1               OK
xxd                      8.0.0596-1          OK
xz                       5.2.3-1             OK
zip                      3.0-12              OK
zlib0                    1.2.11-1            OK
Use -h to see help about each section


[-- Attachment #3: Type: text/plain, Size: 219 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] 5+ messages in thread

* Re: Bash seg faulting?
  2017-06-02  0:01 Bash seg faulting? Andy Hall
@ 2017-06-02  1:50 ` Doug Henderson
  2017-06-02 15:52   ` Andy Hall
  0 siblings, 1 reply; 5+ messages in thread
From: Doug Henderson @ 2017-06-02  1:50 UTC (permalink / raw)
  To: cygwin

On 1 June 2017 at 18:01, Andy Hall wrote:
>
> Here is a strange one.   I have two scripts, conv.sh and conv.bat that do the same thing: scan the current directory for
> .doc files and convert them to .docx files.  Here are the two scripts.
>
> $ cat conv.sh
> #!/bin/bash
>

Try running "cat -e conv.sh" to see if you have dos line endings, e.g.
CR LF, instead of unix line endings, e.g. LF only.

If you do, run "dos2unix conv.sh" or "d2u conv.sh" to fix the line
ending problem. Check that your editor can create files with unix line
endings, and preserves unix line endings.

HTH
Doug


-- 
Doug Henderson, Calgary, Alberta, Canada - from gmail.com

--
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] 5+ messages in thread

* RE: Bash seg faulting?
  2017-06-02  1:50 ` Doug Henderson
@ 2017-06-02 15:52   ` Andy Hall
  2017-06-02 16:11     ` Jack Adrian Zappa
  0 siblings, 1 reply; 5+ messages in thread
From: Andy Hall @ 2017-06-02 15:52 UTC (permalink / raw)
  To: 'Doug Henderson', 'cygwin'

On 1 June Doug Henderson wrote:
> 
> On 1 June 2017 at 18:01, Andy Hall wrote:
> >
> > Here is a strange one.   I have two scripts, conv.sh and conv.bat that do the same thing: scan the current directory for
> > .doc files and convert them to .docx files.  Here are the two scripts.
> >
> > $ cat conv.sh
> > #!/bin/bash
> >
> 
> Try running "cat -e conv.sh" to see if you have dos line endings, e.g.
> CR LF, instead of unix line endings, e.g. LF only.
> 
> If you do, run "dos2unix conv.sh" or "d2u conv.sh" to fix the line
> ending problem. Check that your editor can create files with unix line
> endings, and preserves unix line endings.
> 
> HTH
> Doug
> 
First of all, the Wordconv.exe converts a .doc file to a .docx file, ostensible writing no output.   However, I find if I change the script to read:

#!/bin/bash

OFFICE_BIN="C:\Program Files (x86)\Microsoft Office\root\Office16"

for doc in *.doc; do
        echo "converting: $doc"
        "$OFFICE_BIN"/Wordconv.exe -oice -nme "$doc" "${doc}x" | od
done

and run, I don’t get the seg faults, but od is showing no output written as you might expect (as in od <dev/null).

$ conv.sh
converting: Post-Install.doc
0000000
converting: Post-InstallB.doc
0000000
converting: Post-InstallTest.doc
0000000

So something is strange about this particular .exe being executed from bash.  (Remember that the .bat version of conv.sh does not seg fault.

Sending the output of od to /dev/null silences the seg fault and spurious output; provoding a workaround.
 










--
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] 5+ messages in thread

* Re: Bash seg faulting?
  2017-06-02 15:52   ` Andy Hall
@ 2017-06-02 16:11     ` Jack Adrian Zappa
  0 siblings, 0 replies; 5+ messages in thread
From: Jack Adrian Zappa @ 2017-06-02 16:11 UTC (permalink / raw)
  To: cygwin

How about using -xv on your first line to see what is actually being
executed when doing substitution?

I.e.
#!/bin/bash -xv

Another possibility is that Wordconv.exe requires .DLLs that are not
found in the path.

HTH


A

On Fri, Jun 2, 2017 at 11:52 AM, Andy Hall
<fixpertise-consulting@comcast.net> wrote:
> On 1 June Doug Henderson wrote:
>>
>> On 1 June 2017 at 18:01, Andy Hall wrote:
>> >
>> > Here is a strange one.   I have two scripts, conv.sh and conv.bat that do the same thing: scan the current directory for
>> > .doc files and convert them to .docx files.  Here are the two scripts.
>> >
>> > $ cat conv.sh
>> > #!/bin/bash
>> >
>>
>> Try running "cat -e conv.sh" to see if you have dos line endings, e.g.
>> CR LF, instead of unix line endings, e.g. LF only.
>>
>> If you do, run "dos2unix conv.sh" or "d2u conv.sh" to fix the line
>> ending problem. Check that your editor can create files with unix line
>> endings, and preserves unix line endings.
>>
>> HTH
>> Doug
>>
> First of all, the Wordconv.exe converts a .doc file to a .docx file, ostensible writing no output.   However, I find if I change the script to read:
>
> #!/bin/bash
>
> OFFICE_BIN="C:\Program Files (x86)\Microsoft Office\root\Office16"
>
> for doc in *.doc; do
>         echo "converting: $doc"
>         "$OFFICE_BIN"/Wordconv.exe -oice -nme "$doc" "${doc}x" | od
> done
>
> and run, I don’t get the seg faults, but od is showing no output written as you might expect (as in od <dev/null).
>
> $ conv.sh
> converting: Post-Install.doc
> 0000000
> converting: Post-InstallB.doc
> 0000000
> converting: Post-InstallTest.doc
> 0000000
>
> So something is strange about this particular .exe being executed from bash.  (Remember that the .bat version of conv.sh does not seg fault.
>
> Sending the output of od to /dev/null silences the seg fault and spurious output; provoding a workaround.
>
>
>
>
>
>
>
>
>
>
>
> --
> 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
>

--
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] 5+ messages in thread

* Bash seg faulting?
@ 2017-06-02 21:57 Andy Hall
  0 siblings, 0 replies; 5+ messages in thread
From: Andy Hall @ 2017-06-02 21:57 UTC (permalink / raw)
  To: cygwin

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

Here is some more information

The sequence:

Andy@Andy-Work ~
$ export OFFICE_BIN="C:\Program Files (x86)\Microsoft Office\root\Office16"
$ strace "$OFFICE_BIN"/Wordconv.exe -oice -nme "Post-Install.doc" "Post-Install.docx" >strace.out
Segmentation fault 
$ echo $?
139

Produces the attached strace.  Notice the last lines

--- Process 5628, exception c0000005 at 000000006fdca6fd
--- Process 5628 exited with status 0xc0000005  // This is windows code for access violation

So teh seg fault comes from the Wordconv.exe process when it is exiting,  but why?  This doesn't happen if I do this in
CMD.

$ cmd
Microsoft Windows [Version 10.0.14393]
(c) 2016 Microsoft Corporation. All rights reserved.

C:\cygwin64\home\Andy\ConvWord>"%OFFICE_BIN%\Wordconv.exe" -oice -nme "Post-Install.doc" "Post-Install.docx"
"%OFFICE_BIN%\Wordconv.exe" -oice -nme "Post-Install.doc" "Post-Install.docx"

Somebody with deeper knowledge of cygwin internals will have to track this down.

Andy


Here is a strange one.   I have two scripts, conv.sh and conv.bat that do the same thing: scan the current directory for
.doc files and convert them to .docx files.  Here are the two scripts.

$ cat conv.sh
#!/bin/bash

OFFICE_BIN="C:\Program Files (x86)\Microsoft Office\root\Office16"

for doc in *.doc; do
        echo "converting: $doc"
        "$OFFICE_BIN"/Wordconv.exe -oice -nme "$doc" "${doc}x"
done

$cat conv.bat
@echo off
set OFFICE_BIN=C:\Program Files (x86)\Microsoft Office\root\Office16

for %%a in ("*.doc") do (
        rem This is necessary because *.doc can match *.docx! Need to check the actual extension.
        if "%%~xa" == ".doc" (
                echo "converting: %%a"
                "%OFFICE_BIN%\Wordconv.exe" -oice -nme "%%a" "%%ax"a
        )
)

When conv.sh is run on a directory containing three .doc files, the conversions work but I get three seg faults at three
different locations.  E.g.

$ conv.sh
converting: Post-Install.doc
./conv.sh: line 5:  6060 Segmentation fault      "$OFFICE_BIN"/Wordconv.exe -oice -nme "$doc" "${doc}x"
converting: Post-InstallB.doc
./conv.sh: line 5: 13264 Segmentation fault      "$OFFICE_BIN"/Wordconv.exe -oice -nme "$doc" "${doc}x"
converting: Post-InstallTest.doc
./conv.sh: line 5: 13260 Segmentation fault      "$OFFICE_BIN"/Wordconv.exe -oice -nme "$doc" "${doc}x"

When conv.bat is run in the same directory, the conversions work and I don't get any seg faults (or they are not being
reported!)  E.g. 
$ conv.bat
"converting: Post-Install.doc"
"converting: Post-InstallB.doc"
"converting: Post-InstallTest.doc"

Now Wordconf.exe is a 32-bit executable running on a Windows 10 Pro 64-bit installation.

My cygcheck.out is attached.  I guess I can get an strace if need.


Andy


[-- Attachment #2: cygcheck.out --]
[-- Type: application/octet-stream, Size: 22972 bytes --]


Cygwin Configuration Diagnostics
Current System Time: Fri Jun 02 00:49:20 2017

Windows 10 Professional Ver 10.0 Build 14393 

Path:	.
	C:\cygwin64\home\Andy\bin
	C:\cygwin64\home\Andy\LoadTest
	C:\Program Files\Java\jdk1.7.0_67\bin
	.
	C:\cygwin64\home\Andy\bin
	C:\cygwin64\usr\local\bin
	C:\cygwin64\bin
	C:\ProgramData\Oracle\Java\javapath
	C:\WINDOWS\system32
	C:\WINDOWS
	C:\WINDOWS\System32\Wbem
	C:\WINDOWS\System32\WindowsPowerShell\v1.0
	C:\Program Files\Perforce
	C:\Program Files (x86)\QuickTime\QTSystem
	C:\Program Files (x86)\PuTTY
	C:\Program Files (x86)\SSH Communications Security\SSH Secure Shell
	C:\Users\Andy\AppData\Local\Microsoft\WindowsApps

Output from C:\cygwin64\bin\id.exe
UID: 1001(Andy)                GID: 513(None)
513(None)                      1000(HomeUsers)
545(Users)                     4(INTERACTIVE)
66049(CONSOLE LOGON)           11(Authenticated Users)
15(This Organization)          113(Local account)
66048(LOCAL)                   262154(NTLM Authentication)
401408(Medium Mandatory Level)

SysDir: C:\WINDOWS\system32
WinDir: C:\WINDOWS

USER = 'Andy'
PWD = '/home/Andy/ConvWord'
HOME = '/home/Andy'

USERDOMAIN = 'Andy-Work'
OS = 'Windows_NT'
COMMONPROGRAMFILES = 'C:\Program Files\Common Files'
PROCESSOR_LEVEL = '6'
PSModulePath = 'C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules\'
CommonProgramW6432 = 'C:\Program Files\Common Files'
AWKPATH = '.:/home/Andy/bin/awk'
CommonProgramFiles(x86) = 'C:\Program Files (x86)\Common Files'
FP_NO_HOST_CHECK = 'NO'
LANG = 'en_US.UTF-8'
TZ = 'America/Los_Angeles'
HOSTNAME = 'Andy-Work'
PUBLIC = 'C:\Users\Public'
OLDPWD = '/home/Andy'
USERNAME = 'Andy'
JAVA_HOME = '/cygdrive/c/Program Files/Java/jdk1.7.0_67'
LOGONSERVER = '\\ANDY-WORK'
PROCESSOR_ARCHITECTURE = 'AMD64'
LOCALAPPDATA = 'C:\Users\Andy\AppData\Local'
CLASSPATH = 'C:\Program Files (x86)\Business Objects\Common\3.5\java\lib\CrystalFormulas.jar;C:\Program Files (x86)\Business Objects\Common\3.5\java\lib\CrystalReportingCommon.jar;C:\Program Files (x86)\Business Objects\Common\3.5\java\lib\u211java.jar;C:\Program Files (x86)\Business Objects\Common\3.5\java\lib\external\icu4j.jar;C:\Program Files (x86)\Business Objects\Common\3.5\java\lib\external\log4j.jar;C:\cygwin64\home\Andy\CRUFLS\lib\MyFunctions.jar'
COMPUTERNAME = 'ANDY-WORK'
FPS_BROWSER_APP_PROFILE_STRING = 'Internet Explorer'
!:: = '::\'
SYSTEMDRIVE = 'C:'
USERPROFILE = 'C:\Users\Andy'
PATHEXT = '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC'
SYSTEMROOT = 'C:\WINDOWS'
USERDOMAIN_ROAMINGPROFILE = 'Andy-Work'
PROCESSOR_IDENTIFIER = 'Intel64 Family 6 Model 15 Stepping 11, GenuineIntel'
TMP = '/tmp'
windows_tracing_logfile = 'C:\BVTBin\Tests\installpackage\csilogfile.log'
OneDrive = 'C:\Users\Andy\OneDrive'
PROCESSOR_REVISION = '0f0b'
FPS_BROWSER_USER_PROFILE_STRING = 'Default'
PROFILEREAD = 'true'
NUMBER_OF_PROCESSORS = '2'
ProgramW6432 = 'C:\Program Files'
windows_tracing_flags = '3'
COMSPEC = 'C:\WINDOWS\system32\cmd.exe'
APPDATA = 'C:\Users\Andy\AppData\Roaming'
SHELL = '/bin/bash'
TERM = 'xterm'
WINDIR = 'C:\WINDOWS'
ProgramData = 'C:\ProgramData'
SHLVL = '1'
PRINTER = 'HP LaserJet 400 M401 PCL 6'
PROGRAMFILES = 'C:\Program Files'
ALLUSERSPROFILE = 'C:\ProgramData'
TEMP = '/tmp'
SESSIONNAME = 'Console'
ProgramFiles(x86) = 'C:\Program Files (x86)'
PS1 = '\[\e]0;\w\a\]\n\[\e[32m\]\u@\h \[\e[33m\]\w\[\e[0m\]\n\$ '
HOMEDRIVE = 'C:'
INFOPATH = '/usr/local/info:/usr/share/info:/usr/info'
HOMEPATH = '\Users\Andy'
INSTALL_DIR = '/home/Andy'
ORIGINAL_PATH = '/cygdrive/c/ProgramData/Oracle/Java/javapath:/cygdrive/c/WINDOWS/system32:/cygdrive/c/WINDOWS:/cygdrive/c/WINDOWS/System32/Wbem:/cygdrive/c/WINDOWS/System32/WindowsPowerShell/v1.0:/cygdrive/c/Program Files/Perforce:/cygdrive/c/Program Files (x86)/QuickTime/QTSystem:/cygdrive/c/Program Files (x86)/PuTTY:/cygdrive/c/Program Files (x86)/SSH Communications Security/SSH Secure Shell:/cygdrive/c/Users/Andy/AppData/Local/Microsoft/WindowsApps'
EXECIGNORE = '*.dll'
_ = '/usr/bin/cygcheck'

HKEY_CURRENT_USER\SOFTWARE\Cygwin
HKEY_CURRENT_USER\SOFTWARE\Cygwin\Installations
  (default) = '\??\C:\cygwin64'
HKEY_CURRENT_USER\SOFTWARE\Cygwin\Program Options
HKEY_CURRENT_USER\SOFTWARE\Classes\Directory\Background\Shell\cygwin64_bash
  (default) = '&Bash Prompt Here'
HKEY_CURRENT_USER\SOFTWARE\Classes\Directory\Background\Shell\cygwin64_bash\command
  (default) = 'C:\cygwin64\bin\mintty.exe -e /bin/xhere /bin/bash.exe "%V"'
HKEY_CURRENT_USER\SOFTWARE\Classes\Directory\Shell\cygwin64_bash
  (default) = '&Bash Prompt Here'
HKEY_CURRENT_USER\SOFTWARE\Classes\Directory\Shell\cygwin64_bash\command
  (default) = 'C:\cygwin64\bin\mintty.exe -e /bin/xhere /bin/bash.exe "%L"'
HKEY_CURRENT_USER\SOFTWARE\Classes\Drive\Background\Shell\cygwin64_bash
  (default) = '&Bash Prompt Here'
HKEY_CURRENT_USER\SOFTWARE\Classes\Drive\Background\Shell\cygwin64_bash\command
  (default) = 'C:\cygwin64\bin\mintty.exe -e /bin/xhere /bin/bash.exe "%V"'
HKEY_CURRENT_USER\SOFTWARE\Classes\Drive\Shell\cygwin64_bash
  (default) = '&Bash Prompt Here'
HKEY_CURRENT_USER\SOFTWARE\Classes\Drive\Shell\cygwin64_bash\command
  (default) = 'C:\cygwin64\bin\mintty.exe -e /bin/xhere /bin/bash.exe "%L"'
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'

obcaseinsensitive set to 1

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

c:  hd  NTFS    238022Mb  41% CP CS UN PA FC     EN
d:  cd             N/A    N/A                      
z:  net NTFS   1891830Mb  36% CP CS UN PA          

C:\cygwin64      /          system  binary,auto
C:\cygwin64\bin  /usr/bin   system  binary,auto
C:\cygwin64\lib  /usr/lib   system  binary,auto
cygdrive prefix  /cygdrive  user    binary,posix=0,auto

Found: C:\cygwin64\home\Andy\bin\awk
Found: C:\cygwin64\home\Andy\bin\awk
Found: C:\cygwin64\bin\awk
Warning: C:\cygwin64\home\Andy\bin\awk hides C:\cygwin64\bin\awk
Not Found: awk
Found: C:\cygwin64\bin\bash.exe
Found: C:\cygwin64\bin\cat.exe
Found: C:\cygwin64\bin\cp.exe
Not Found: cpp (good!)
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
Not Found: gcc
Not Found: gdb
Found: C:\cygwin64\bin\grep.exe
Found: C:\cygwin64\bin\kill.exe
Not Found: ld
Found: C:\cygwin64\bin\ls.exe
Not Found: make
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\home\Andy\bin\test
Found: C:\cygwin64\home\Andy\bin\test
Found: C:\cygwin64\bin\test.exe
Warning: C:\cygwin64\home\Andy\bin\test hides C:\cygwin64\bin\test.exe
Found: C:\cygwin64\bin\vi.exe
Found: C:\cygwin64\bin\vim.exe

   39k 2016/09/19 C:\cygwin64\bin\cygargp-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygargp-0.dll" v0.0 ts=2016-09-19 02:13
   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
  180k 2015/03/23 C:\cygwin64\bin\cygblkid-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygblkid-1.dll" v0.0 ts=2015-03-23 09:46
   64k 2017/02/22 C:\cygwin64\bin\cygbz2-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygbz2-1.dll" v0.0 ts=2017-02-22 07:22
   13k 2013/03/06 C:\cygwin64\bin\cygcatgets1.dll - os=4.0 img=0.0 sys=5.2
                  "cygcatgets1.dll" v0.0 ts=2013-03-06 14:34
   13k 2015/03/19 C:\cygwin64\bin\cygcom_err-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygcom_err-2.dll" v0.0 ts=2015-03-19 02:44
   10k 2016/06/09 C:\cygwin64\bin\cygcrypt-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygcrypt-0.dll" v0.0 ts=2016-06-09 16:02
 2235k 2017/01/26 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=2017-01-26 20:10
  481k 2017/05/12 C:\cygwin64\bin\cygcurl-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygcurl-4.dll" v0.0 ts=2017-05-12 06:19
 1549k 2016/08/22 C:\cygwin64\bin\cygdb-5.3.dll - os=4.0 img=0.0 sys=5.2
                  "cygdb-5.3.dll" v0.0 ts=2016-08-22 09:51
  124k 2016/08/22 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=2016-08-22 09:52
  570k 2016/08/22 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=2016-08-22 09:52
  154k 2013/10/20 C:\cygwin64\bin\cygedit-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygedit-0.dll" v0.0 ts=2013-10-20 21:56
  145k 2016/06/21 C:\cygwin64\bin\cygexpat-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygexpat-1.dll" v0.0 ts=2016-06-21 23:15
   27k 2015/11/17 C:\cygwin64\bin\cygffi-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygffi-6.dll" v0.0 ts=2015-11-17 22:14
   55k 2017/03/29 C:\cygwin64\bin\cygformw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygformw-10.dll" v0.0 ts=2017-03-29 23:26
   70k 2016/06/13 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=2016-06-13 16:18
   39k 2016/10/10 C:\cygwin64\bin\cyggdbm-4.dll - os=4.0 img=0.0 sys=5.2
                  "cyggdbm-4.dll" v0.0 ts=2016-10-10 09:26
   13k 2016/10/10 C:\cygwin64\bin\cyggdbm_compat-4.dll - os=4.0 img=0.0 sys=5.2
                  "cyggdbm_compat-4.dll" v0.0 ts=2016-10-10 09:26
  527k 2017/01/21 C:\cygwin64\bin\cyggmp-10.dll - os=4.0 img=0.0 sys=5.2
                  "cyggmp-10.dll" v0.0 ts=2017-01-21 18:25
  258k 2016/09/26 C:\cygwin64\bin\cyggssapi_krb5-2.dll - os=4.0 img=0.0 sys=5.2
                  "cyggssapi_krb5-2.dll" v0.0 ts=2016-09-26 06:55
   33k 2017/02/13 C:\cygwin64\bin\cyghistory7.dll - os=4.0 img=0.0 sys=5.2
                  "cyghistory7.dll" v0.0 ts=2017-02-11 22:39
 1009k 2015/02/20 C:\cygwin64\bin\cygiconv-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygiconv-2.dll" v0.0 ts=2015-02-20 17:07
  197k 2017/05/02 C:\cygwin64\bin\cygidn-11.dll - os=4.0 img=0.0 sys=5.2
                  "cygidn-11.dll" v0.0 ts=2017-05-02 01:18
  111k 2017/04/24 C:\cygwin64\bin\cygidn2-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygidn2-0.dll" v0.0 ts=2017-04-24 05:20
   42k 2016/10/23 C:\cygwin64\bin\cygintl-8.dll - os=4.0 img=0.0 sys=5.2
                  "cygintl-8.dll" v0.0 ts=2016-10-23 07:17
  177k 2016/09/26 C:\cygwin64\bin\cygk5crypto-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygk5crypto-3.dll" v0.0 ts=2016-09-26 06:55
  722k 2016/09/26 C:\cygwin64\bin\cygkrb5-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygkrb5-3.dll" v0.0 ts=2016-09-26 06:55
   35k 2016/09/26 C:\cygwin64\bin\cygkrb5support-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygkrb5support-0.dll" v0.0 ts=2016-09-26 06:54
   45k 2015/11/19 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=2015-11-19 14:17
  246k 2015/11/19 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=2015-11-19 14:18
  262k 2015/11/19 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=2015-11-19 14:19
    6k 2017/04/01 C:\cygwin64\bin\cyglsa64.dll - os=4.0 img=0.0 sys=5.2
                  "cyglsa64.dll" v0.0 ts=2017-04-01 19:47
  139k 2017/05/10 C:\cygwin64\bin\cyglzma-5.dll - os=4.0 img=0.0 sys=5.2
                  "cyglzma-5.dll" v0.0 ts=2017-05-10 01:17
  121k 2017/05/03 C:\cygwin64\bin\cygmagic-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygmagic-1.dll" v0.0 ts=2017-05-03 18:25
  169k 2016/10/10 C:\cygwin64\bin\cygman-2-7-5.dll - os=4.0 img=0.0 sys=5.2
                  "cygman-2-7-5.dll" v0.0 ts=2016-10-10 22:07
   22k 2016/10/10 C:\cygwin64\bin\cygmandb-2-7-5.dll - os=4.0 img=0.0 sys=5.2
                  "cygmandb-2-7-5.dll" v0.0 ts=2016-10-10 22:07
   29k 2017/03/29 C:\cygwin64\bin\cygmenuw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygmenuw-10.dll" v0.0 ts=2017-03-29 23:26
   42k 2013/08/12 C:\cygwin64\bin\cygmetalink-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygmetalink-3.dll" v0.0 ts=2013-08-13 00:02
  346k 2017/04/08 C:\cygwin64\bin\cygmpfr-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygmpfr-4.dll" v0.0 ts=2017-04-08 12:19
   53k 2017/03/29 C:\cygwin64\bin\cygncurses++w-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygncurses++w-10.dll" v0.0 ts=2017-03-29 23:31
  282k 2017/03/29 C:\cygwin64\bin\cygncursesw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygncursesw-10.dll" v0.0 ts=2017-03-29 23:25
  137k 2017/03/13 C:\cygwin64\bin\cygnghttp2-14.dll - os=4.0 img=0.0 sys=5.2
                  "cygnghttp2-14.dll" v0.0 ts=2017-03-13 19:40
 1003k 2017/04/28 C:\cygwin64\bin\cygp11-kit-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygp11-kit-0.dll" v0.0 ts=2017-04-28 05:23
   14k 2017/03/29 C:\cygwin64\bin\cygpanelw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygpanelw-10.dll" v0.0 ts=2017-03-29 23:25
  475k 2017/04/23 C:\cygwin64\bin\cygpcre-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygpcre-1.dll" v0.0 ts=2017-04-24 00:50
 2020k 2017/01/15 C:\cygwin64\bin\cygperl5_22.dll - os=4.0 img=0.0 sys=5.2
                  "cygperl5_22.dll" v0.0 ts=2017-01-15 12:12
   39k 2015/04/09 C:\cygwin64\bin\cygpipeline-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygpipeline-1.dll" v0.0 ts=2015-04-09 21:04
   41k 2016/07/13 C:\cygwin64\bin\cygpopt-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygpopt-0.dll" v0.0 ts=2016-07-13 06:16
   52k 2017/01/17 C:\cygwin64\bin\cygpsl-5.dll - os=4.0 img=0.0 sys=5.2
                  "cygpsl-5.dll" v0.0 ts=2017-01-17 17:10
  219k 2017/02/13 C:\cygwin64\bin\cygreadline7.dll - os=4.0 img=0.0 sys=5.2
                  "cygreadline7.dll" v0.0 ts=2017-02-11 22:39
   96k 2017/04/16 C:\cygwin64\bin\cygsasl2-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygsasl2-3.dll" v0.0 ts=2017-04-16 19:15
   11k 2015/07/17 C:\cygwin64\bin\cygsigsegv-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygsigsegv-2.dll" v0.0 ts=2015-07-17 22:35
   89k 2015/03/23 C:\cygwin64\bin\cygsmartcols-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygsmartcols-1.dll" v0.0 ts=2015-03-23 09:46
  156k 2016/03/02 C:\cygwin64\bin\cygssh2-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygssh2-1.dll" v0.0 ts=2016-03-02 18:03
  399k 2017/01/26 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=2017-01-26 20:10
   12k 2016/06/13 C:\cygwin64\bin\cygssp-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygssp-0.dll" v0.0 ts=2016-06-13 17:10
 1325k 2016/06/13 C:\cygwin64\bin\cygstdc++-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygstdc++-6.dll" v0.0 ts=2016-06-13 16:38
   66k 2017/05/29 C:\cygwin64\bin\cygtasn1-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygtasn1-6.dll" v0.0 ts=2017-05-29 23:32
   53k 2017/03/29 C:\cygwin64\bin\cygticw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygticw-10.dll" v0.0 ts=2017-03-29 23:25
 1538k 2015/10/16 C:\cygwin64\bin\cygunistring-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygunistring-2.dll" v0.0 ts=2015-10-16 21:40
   15k 2015/03/23 C:\cygwin64\bin\cyguuid-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyguuid-1.dll" v0.0 ts=2015-03-23 09:46
   83k 2017/03/03 C:\cygwin64\bin\cygz.dll - os=4.0 img=0.0 sys=5.2
                  "cygz.dll" v0.0 ts=2017-03-03 21:42
 3238k 2017/04/01 C:\cygwin64\bin\cygwin1.dll - os=4.0 img=0.0 sys=5.2
                  "cygwin1.dll" v0.0 ts=2017-04-01 19:47
    Cygwin DLL version info:
        DLL version: 2.8.0
        DLL epoch: 19
        DLL old termios: 5
        DLL malloc env: 28
        Cygwin conv: 181
        API major: 0
        API minor: 309
        Shared data: 5
        DLL identifier: cygwin1
        Mount registry: 3
        Cygwin registry name: Cygwin
        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
Environment         : CYGWIN="CYGWIN" 
Process Type        : Own Process
Startup             : Automatic
Dependencies        : tcpip
Account             : .\cyg_server


Cygwin Package Information
Last downloaded files to: C:\Users\Andy\Downloads\Cygwin
Last downloaded files from: http://cygwin.mirror.constant.com/

Package                  Version             Status
_autorebase              001005-1            OK
Empty package _update-info-dir
_update-info-dir         03000-1             OK
alternatives             1.3.30c-10          OK
base-cygwin              3.8-1               OK
base-files               4.2-4               OK
bash                     4.4.12-3            OK
bzip2                    1.0.6-3             OK
ca-certificates          2.14-1              OK
chere                    1.4-1               OK
coreutils                8.26-2              OK
crypt                    1.4-1               OK
csih                     0.9.9-1             OK
curl                     7.54.0-1            OK
cygrunsrv                1.62-1              OK
cygutils                 1.4.15-2            OK
cygwin                   2.8.0-1             OK
dash                     0.5.9.1-1           OK
diffutils                3.5-2               OK
dos2unix                 7.3.4-1             OK
editrights               1.03-1              OK
file                     5.30-1              OK
findutils                4.6.0-1             OK
gawk                     4.1.4-3             OK
getent                   2.18.90-4           OK
grep                     3.0-2               OK
groff                    1.22.3-1            OK
gzip                     1.8-1               OK
hostname                 3.13-1              OK
info                     6.3-1               OK
ipc-utils                1.0-2               OK
less                     487-1               OK
libargp                  20110921-3          OK
libattr1                 2.4.46-1            OK
libblkid1                2.25.2-2            OK
libbz2_1                 1.0.6-3             OK
libcatgets1              1.1-2               OK
libcom_err2              1.42.12-2           OK
libcrypt0                1.4-1               OK
libcurl4                 7.54.0-1            OK
libdb5.3                 5.3.28-1            OK
libedit0                 20130712-1          OK
libexpat1                2.2.0-0             OK
libffi6                  3.2.1-2             OK
libgcc1                  5.4.0-1             OK
libgdbm4                 1.12-1              OK
libgmp10                 6.1.2-1             OK
libgssapi_krb5_2         1.14.4-1            OK
libiconv                 1.14-3              OK
libiconv2                1.14-3              OK
libidn11                 1.33-1              OK
libidn2_0                2.0.1-1             OK
libintl8                 0.19.8.1-2          OK
libk5crypto3             1.14.4-1            OK
libkrb5_3                1.14.4-1            OK
libkrb5support0          1.14.4-1            OK
liblzma5                 5.2.3-1             OK
libmetalink3             0.1.2-1             OK
libmpfr4                 3.1.5-1p2           OK
libncursesw10            6.0-10.20170325     OK
libnghttp2_14            1.14.0-2            OK
libopenldap2_4_2         2.4.42-1            OK
libopenssl100            1.0.2k-1            OK
libp11-kit0              0.23.5-1            OK
libpcre1                 8.40-3              OK
libpipeline1             1.4.0-1             OK
libpopt-common           1.16-2              OK
libpopt0                 1.16-2              OK
libpsl5                  0.17.0-1            OK
libreadline7             7.0.3-3             OK
libsasl2_3               2.1.26-11           OK
libsigsegv2              2.10-2              OK
libsmartcols1            2.25.2-2            OK
libssh2_1                1.7.0-1             OK
libssp0                  5.4.0-1             OK
libstdc++6               5.4.0-1             OK
libtasn1_6               4.12-1              OK
libunistring2            0.9.6-1             OK
libuuid1                 2.25.2-2            OK
login                    1.11-1              OK
lynx                     2.8.7-2             OK
man-db                   2.7.5-2             OK
mintty                   2.7.7-0             OK
ncftp                    3.2.5-2             OK
ncurses                  6.0-10.20170325     OK
openssh                  7.5p1-1             OK
openssl                  1.0.2k-1            OK
p11-kit                  0.23.5-1            OK
p11-kit-trust            0.23.5-1            OK
perl                     5.22.3-1            OK
perl-Carp                1.38-1              OK
perl-Pod-Simple          3.35-1              OK
perl-Unicode-Normalize   1.25-1              OK
perl_autorebase          5.22.3-1            OK
perl_base                5.22.3-1            OK
Empty package popt
popt                     1.16-2              OK
publicsuffix-list-dafsa  20170424-1          OK
rebase                   4.4.2-1             OK
rsync                    3.1.2-1             OK
run                      1.3.4-2             OK
sed                      4.4-1               OK
tar                      1.29-1              OK
tcsh                     6.20.00-1           OK
terminfo                 6.0-10.20170325     OK
texinfo                  6.3-1               OK
tzcode                   2016j-1             OK
tzdata                   2017b-1             OK
unzip                    6.0-16              OK
util-linux               2.25.2-2            OK
vim                      8.0.0596-1          OK
vim-common               8.0.0596-1          OK
vim-minimal              8.0.0596-1          OK
which                    2.20-2              OK
windows-default-manifest 6.4-1               OK
xxd                      8.0.0596-1          OK
xz                       5.2.3-1             OK
zip                      3.0-12              OK
zlib0                    1.2.11-1            OK
Use -h to see help about each section


[-- Attachment #3: strace.out --]
[-- Type: application/octet-stream, Size: 9682 bytes --]

--- Process 5628 created
--- Process 5628 loaded C:\Windows\System32\ntdll.dll at 00007ffa5ca80000
--- Process 5628 loaded C:\Windows\SysWOW64\ntdll.dll at 00000000775a0000
--- Process 5628 loaded C:\Windows\System32\wow64.dll at 00000000529b0000
--- Process 5628 loaded C:\Windows\System32\wow64win.dll at 0000000052a10000
--- Process 5628 loaded C:\Windows\System32\kernel32.dll at 0000000000900000
--- Process 5628 unloaded DLL at 0000000000900000
--- Process 5628 loaded C:\Windows\SysWOW64\kernel32.dll at 00000000767c0000
--- Process 5628 unloaded DLL at 00000000767c0000
--- Process 5628 loaded C:\Windows\System32\kernel32.dll at 0000000000900000
--- Process 5628 unloaded DLL at 0000000000900000
--- Process 5628 loaded C:\Windows\System32\user32.dll at 0000000000900000
--- Process 5628 unloaded DLL at 0000000000900000
--- Process 5628 loaded C:\Windows\System32\wow64cpu.dll at 00000000529a0000
--- Process 5628 loaded C:\Windows\SysWOW64\kernel32.dll at 00000000767c0000
--- Process 5628 loaded C:\Windows\SysWOW64\KernelBase.dll at 00000000746c0000
--- Process 5628 thread 8312 created
--- Process 5628 loaded C:\Windows\SysWOW64\ole32.dll at 0000000076fb0000
--- Process 5628 loaded C:\Windows\SysWOW64\combase.dll at 00000000761e0000
--- Process 5628 loaded C:\Program Files\Common Files\microsoft shared\ClickToRun\AppvIsvSubsystems32.dll at 0000000071a50000
--- Process 5628 loaded C:\Windows\SysWOW64\ucrtbase.dll at 00000000764d0000
--- Process 5628 thread 12908 created
--- Process 5628 loaded C:\Windows\SysWOW64\rpcrt4.dll at 0000000077470000
--- Process 5628 loaded C:\Windows\SysWOW64\sspicli.dll at 0000000074040000
--- Process 5628 loaded C:\Windows\SysWOW64\cryptbase.dll at 0000000074030000
--- Process 5628 loaded C:\Windows\SysWOW64\bcryptprimitives.dll at 0000000077150000
--- Process 5628 loaded C:\Windows\SysWOW64\sechost.dll at 0000000074480000
--- Process 5628 loaded C:\Windows\SysWOW64\gdi32.dll at 00000000743b0000
--- Process 5628 loaded C:\Windows\SysWOW64\gdi32full.dll at 00000000771d0000
--- Process 5628 loaded C:\Windows\SysWOW64\win32u.dll at 00000000743e0000
--- Process 5628 loaded C:\Windows\SysWOW64\oleaut32.dll at 00000000770a0000
--- Process 5628 loaded C:\Program Files\Common Files\microsoft shared\ClickToRun\AppvIsvStream32.dll at 0000000073820000
--- Process 5628 loaded C:\Windows\SysWOW64\msvcp_win.dll at 0000000074400000
--- Process 5628 loaded C:\Windows\SysWOW64\user32.dll at 00000000744d0000
--- Process 5628 loaded C:\Windows\SysWOW64\advapi32.dll at 0000000074150000
--- Process 5628 loaded C:\Windows\SysWOW64\msvcrt.dll at 00000000765b0000
--- Process 5628 loaded C:\Windows\SysWOW64\shell32.dll at 0000000074c80000
--- Process 5628 loaded C:\Windows\SysWOW64\cfgmgr32.dll at 0000000074270000
--- Process 5628 loaded C:\Windows\SysWOW64\vcruntime140.dll at 00000000725c0000
--- Process 5628 loaded C:\Windows\SysWOW64\windows.storage.dll at 00000000768a0000
--- Process 5628 loaded C:\Program Files\Common Files\microsoft shared\ClickToRun\C2R32.dll at 00000000717a0000
--- Process 5628 loaded C:\Windows\SysWOW64\powrprof.dll at 0000000076670000
--- Process 5628 loaded C:\Windows\SysWOW64\shlwapi.dll at 00000000742b0000
--- Process 5628 loaded C:\Windows\SysWOW64\kernel.appcore.dll at 0000000076fa0000
--- Process 5628 loaded C:\Windows\SysWOW64\SHCore.dll at 0000000074310000
--- Process 5628 loaded C:\Windows\SysWOW64\profapi.dll at 0000000077140000
--- Process 5628 loaded C:\Windows\SysWOW64\userenv.dll at 00000000736a0000
--- Process 5628, exception 4000001f at 000000007764748c
--- Process 5628 loaded C:\Windows\SysWOW64\imm32.dll at 0000000076720000
--- Process 5628, exception e06d7363 at 000000007479a9f2
--- Process 5628 thread 8312 exited with status 0x0
--- Process 5628 thread 12908 exited with status 0x0
--- Process 5628 loaded C:\Program Files (x86)\Microsoft Office\root\Office16\Wordcnv.dll at 0000000066ad0000
--- Process 5628 loaded C:\Windows\WinSxS\x86_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.14393.953_none_baad48403594ab3f\GdiPlus.dll at 0000000071ef0000
--- Process 5628 loaded C:\Program Files (x86)\Microsoft Office\root\Office16\OART.DLL at 000000006fd30000
--- Process 5628 loaded C:\Program Files (x86)\Microsoft Office\root\VFS\SystemX86\msvcp140.dll at 0000000068910000
--- Process 5628 loaded C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.14393.953_none_89c2555adb023171\comctl32.dll at 00000000733f0000
--- Process 5628 loaded C:\Program Files (x86)\Microsoft Office\root\VFS\ProgramFilesCommonX86\Microsoft Shared\OFFICE16\Mso20win32client.dll at 00000000711c0000
--- Process 5628 loaded C:\Program Files (x86)\Microsoft Office\root\VFS\ProgramFilesCommonX86\Microsoft Shared\OFFICE16\Mso30win32client.dll at 0000000070d80000
--- Process 5628 loaded C:\Program Files (x86)\Microsoft Office\root\VFS\ProgramFilesCommonX86\Microsoft Shared\OFFICE16\Mso40UIwin32client.dll at 0000000002910000
--- Process 5628 loaded C:\Program Files (x86)\Microsoft Office\root\VFS\SystemX86\concrt140.dll at 00000000737e0000
--- Process 5628 loaded C:\Program Files (x86)\Microsoft Office\root\VFS\ProgramFilesCommonX86\Microsoft Shared\OFFICE16\Mso50win32client.dll at 0000000073780000
--- Process 5628 loaded C:\Program Files (x86)\Microsoft Office\root\VFS\ProgramFilesCommonX86\Microsoft Shared\OFFICE16\Mso98win32client.dll at 000000006f0f0000
--- Process 5628 loaded C:\Windows\SysWOW64\wtsapi32.dll at 0000000073000000
--- Process 5628 loaded C:\Program Files (x86)\Microsoft Office\root\VFS\ProgramFilesCommonX86\Microsoft Shared\OFFICE16\Mso99Lwin32client.dll at 000000006ebf0000
--- Process 5628 loaded C:\Windows\SysWOW64\msimg32.dll at 0000000073680000
--- Process 5628 loaded C:\Program Files (x86)\Microsoft Office\root\VFS\ProgramFilesCommonX86\Microsoft Shared\OFFICE16\MSO.DLL at 000000006dc80000
--- Process 5628 loaded C:\Windows\SysWOW64\version.dll at 0000000072fe0000
--- Process 5628 loaded C:\Windows\SysWOW64\msi.dll at 0000000072210000
--- Process 5628 loaded C:\Windows\SysWOW64\bcrypt.dll at 00000000721f0000
--- Process 5628 loaded C:\Windows\SysWOW64\d2d1.dll at 000000006d7a0000
--- Process 5628 loaded C:\Windows\SysWOW64\crypt32.dll at 0000000076060000
--- Process 5628 loaded C:\Windows\SysWOW64\msasn1.dll at 0000000076e10000
--- Process 5628 loaded C:\Windows\SysWOW64\uxtheme.dll at 0000000073600000
--- Process 5628 loaded C:\Windows\SysWOW64\msctf.dll at 0000000077330000
--- Process 5628 loaded C:\Windows\SysWOW64\winsta.dll at 000000006c2b0000
--- Process 5628 loaded C:\Windows\SysWOW64\dxgi.dll at 0000000070820000
--- Process 5628 loaded C:\Windows\SysWOW64\ResourcePolicyClient.dll at 0000000069c60000
--- Process 5628 unloaded DLL at 0000000069c60000
--- Process 5628 thread 15172 created
--- Process 5628 loaded C:\Windows\SysWOW64\mscoree.dll at 0000000071680000
--- Process 5628 loaded C:\Windows\Microsoft.NET\Framework\v4.0.30319\mscoreei.dll at 0000000071600000
--- Process 5628 loaded C:\Windows\SysWOW64\DWrite.dll at 0000000069a60000
--- Process 5628 thread 13496 created
--- Process 5628 thread 13492 created
--- Process 5628 loaded C:\Windows\SysWOW64\dwmapi.dll at 0000000072f80000
--- Process 5628 loaded C:\Windows\SysWOW64\d3d10_1.dll at 0000000073750000
--- Process 5628 loaded C:\Windows\SysWOW64\d3d10_1core.dll at 0000000071740000
--- Process 5628 loaded C:\Windows\SysWOW64\d3d11.dll at 00000000709d0000
--- Process 5628 loaded C:\Windows\SysWOW64\d3d10warp.dll at 000000006d560000
--- Process 5628 loaded C:\Windows\SysWOW64\igdumd32.dll at 000000006d1b0000
--- Process 5628 loaded C:\Windows\SysWOW64\d3d10level9.dll at 0000000071de0000
--- Process 5628 thread 14216 created
--- Process 5628 loaded C:\Program Files (x86)\Microsoft Office\root\VFS\ProgramFilesCommonX86\Microsoft Shared\OFFICE16\RICHED20.DLL at 000000006cfd0000
--- Process 5628 thread 12156 created
--- Process 5628 loaded C:\Program Files (x86)\Microsoft Office\root\Office16\CHART.DLL at 000000006c5c0000
--- Process 5628 loaded C:\Program Files (x86)\Microsoft Office\root\Office16\IVY.DLL at 000000006c440000
--- Process 5628 loaded C:\Windows\SysWOW64\coml2.dll at 00000000766c0000
--- Process 5628 thread 15264 created
--- Process 5628 thread 8568 created
--- Process 5628 thread 1948 created
--- Process 5628 loaded C:\Windows\SysWOW64\propsys.dll at 0000000072e30000
--- Process 5628 loaded C:\Windows\SysWOW64\clbcatq.dll at 0000000074630000
--- Process 5628 loaded C:\Windows\SysWOW64\msxml6.dll at 0000000065930000
--- Process 5628 loaded C:\Windows\SysWOW64\secur32.dll at 00000000736e0000
--- Process 5628 thread 13496 exited with status 0x1
--- Process 5628 thread 12156 exited with status 0x0
--- Process 5628 thread 15172 exited with status 0x0
--- Process 5628 unloaded DLL at 0000000065930000
--- Process 5628 thread 14216 exited with status 0x0
--- Process 5628 unloaded DLL at 000000006d1b0000
--- Process 5628 unloaded DLL at 0000000071de0000
--- Process 5628 thread 13492 exited with status 0x0
--- Process 5628 unloaded DLL at 0000000071600000
--- Process 5628 unloaded DLL at 0000000071680000
--- Process 5628 unloaded DLL at 000000006d560000
--- Process 5628, exception 0000071a at 000000007479a9f2
--- Process 5628 unloaded DLL at 000000006cfd0000
--- Process 5628 unloaded DLL at 0000000066ad0000
--- Process 5628 thread 1948 exited with status 0x0
--- Process 5628 thread 8568 exited with status 0x0
--- Process 5628 thread 15264 exited with status 0x0
--- Process 5628, exception c0000005 at 000000006fdca6fd
--- Process 5628 exited with status 0xc0000005


[-- Attachment #4: Type: text/plain, Size: 219 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] 5+ messages in thread

end of thread, other threads:[~2017-06-02 21:57 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-02  0:01 Bash seg faulting? Andy Hall
2017-06-02  1:50 ` Doug Henderson
2017-06-02 15:52   ` Andy Hall
2017-06-02 16:11     ` Jack Adrian Zappa
2017-06-02 21:57 Andy Hall

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).