public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* Problems with "Hello, World!"
@ 2019-03-19 21:31 Vesa P.
  2019-03-19 22:14 ` Thomas Wolff
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Vesa P. @ 2019-03-19 21:31 UTC (permalink / raw)
  To: cygwin

Hi all,

Cygwin works great for me in providing POSIX tools for Windows, but
when I tried to to compile something of my own, I immediately ran into
problems.

Compiling my Hello World application didn't complain but when running
it I didn't get any output. My compilation command was like this:
   gcc -Wextra -Wall -o hello hello.c
And my source code is below between "---" markers:
----------------------------------
#include <stdio.h>

int main() {
  printf("Hello, World!\n");
  return 0;
}
----------------------------------
I also tried by redirecting output, like "./hello > output.txt" but
that created only an empty file, proving that my write permissions
were sufficient, I suppose.
Then I thought that maybe the problem is in connecting to stdout and I
tried by direct file access:
---------------------------------
#include <stdio.h>

int main() {
  FILE *of = fopen("./outfile.txt", "w");
  if(of) {
    fprintf(of, "Hello, World!\n");
    fclose(of);
  }
  return 0;
}
---------------------------------
However, that didn't create the "outfile.txt" file.

I did those experiments in a Windows 10 environment, I think it is
Windows 10 Enterprise. I have installed Cygwin without administrator
privileges, in 2018.

A practical work-around has been to use MinGW for compilation.

Thanks for any help,
Vesa

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

* Re: Problems with "Hello, World!"
  2019-03-19 21:31 Problems with "Hello, World!" Vesa P.
@ 2019-03-19 22:14 ` Thomas Wolff
  2019-03-20  3:15 ` L A Walsh
  2019-03-20  3:33 ` Brian Inglis
  2 siblings, 0 replies; 10+ messages in thread
From: Thomas Wolff @ 2019-03-19 22:14 UTC (permalink / raw)
  To: cygwin

Am 19.03.2019 um 22:31 schrieb Vesa P.:
> Hi all,
>
> Cygwin works great for me in providing POSIX tools for Windows, but
> when I tried to to compile something of my own, I immediately ran into
> problems.
>
> Compiling my Hello World application didn't complain but when running
> it I didn't get any output. My compilation command was like this:
>     gcc -Wextra -Wall -o hello hello.c
> And my source code is below between "---" markers:
> ----------------------------------
> #include <stdio.h>
>
> int main() {
>    printf("Hello, World!\n");
>    return 0;
> }
> ----------------------------------
> I also tried by redirecting output, like "./hello > output.txt" but
> that created only an empty file, proving that my write permissions
> were sufficient, I suppose.
> Then I thought that maybe the problem is in connecting to stdout and I
> tried by direct file access:
> ---------------------------------
> #include <stdio.h>
>
> int main() {
>    FILE *of = fopen("./outfile.txt", "w");
>    if(of) {
>      fprintf(of, "Hello, World!\n");
>      fclose(of);
>    }
>    return 0;
> }
> ---------------------------------
> However, that didn't create the "outfile.txt" file.
What does `type gcc` tell you?

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

* Re: Problems with "Hello, World!"
  2019-03-19 21:31 Problems with "Hello, World!" Vesa P.
  2019-03-19 22:14 ` Thomas Wolff
@ 2019-03-20  3:15 ` L A Walsh
  2019-03-20  3:33 ` Brian Inglis
  2 siblings, 0 replies; 10+ messages in thread
From: L A Walsh @ 2019-03-20  3:15 UTC (permalink / raw)
  To: cygwin, Vesa P.

On 3/19/2019 2:31 PM, Vesa P. wrote:
>
> Compiling my Hello World application didn't complain but when running
> it I didn't get any output. My compilation command was like this:
>    gcc -Wextra -Wall -o hello hello.c
> And my source code is below between "---" markers:
> ----------------------------------
> #include <stdio.h>
>
> int main() {
>   printf("Hello, World!\n");
>   return 0;
> }
> ----------------------------------
>   
----
    Well that is weird.  I just tried it on my Win7 and it works
as expected. 

    What directory are you running it in?  Could permissions be involved?

    Also what window are you running in?  I doubt it should be the case, but
some windows programs won't generate output in a cygwin shell or a
cygwin tty,
but will in cmd.e

    Have you tried running with 'strace' to see what calls it executes?:

strace -f ./hello

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

* Re: Problems with "Hello, World!"
  2019-03-19 21:31 Problems with "Hello, World!" Vesa P.
  2019-03-19 22:14 ` Thomas Wolff
  2019-03-20  3:15 ` L A Walsh
@ 2019-03-20  3:33 ` Brian Inglis
  2019-03-22 14:25   ` Vesa P.
  2 siblings, 1 reply; 10+ messages in thread
From: Brian Inglis @ 2019-03-20  3:33 UTC (permalink / raw)
  To: cygwin

On 2019-03-19 15:31, Vesa P. wrote:
> Hi all,
> 
> Cygwin works great for me in providing POSIX tools for Windows, but
> when I tried to to compile something of my own, I immediately ran into
> problems.
> 
> Compiling my Hello World application didn't complain but when running
> it I didn't get any output. My compilation command was like this:
>    gcc -Wextra -Wall -o hello hello.c
> And my source code is below between "---" markers:
> ----------------------------------
> #include <stdio.h>
> 
> int main() {
>   printf("Hello, World!\n");
>   return 0;
> }
> ----------------------------------
> I also tried by redirecting output, like "./hello > output.txt" but
> that created only an empty file, proving that my write permissions
> were sufficient, I suppose.
> Then I thought that maybe the problem is in connecting to stdout and I
> tried by direct file access:
> ---------------------------------
> #include <stdio.h>
> 
> int main() {
>   FILE *of = fopen("./outfile.txt", "w");
>   if(of) {
>     fprintf(of, "Hello, World!\n");
>     fclose(of);
>   }
>   return 0;
> }
> ---------------------------------
> However, that didn't create the "outfile.txt" file.
> 
> I did those experiments in a Windows 10 environment, I think it is
> Windows 10 Enterprise. I have installed Cygwin without administrator
> privileges, in 2018.
> 
> A practical work-around has been to use MinGW for compilation.

Rather than describing what you did, copy and paste a shell transcript showing
the commands and output from you listing the source code, compiling and running
it, a long listing of the directory contents, then run

	"cygcheck -hrsv > cygcheck.out"

and attach the output as a text file to a post to this list, as explained below
under Problem reports: http://cygwin.com/problems.html.

-- 
Take care. Thanks, Brian Inglis, Calgary, Alberta, Canada

This email may be disturbing to some readers as it contains
too much technical detail. Reader discretion is advised.

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

* Re: Problems with "Hello, World!"
  2019-03-20  3:33 ` Brian Inglis
@ 2019-03-22 14:25   ` Vesa P.
  2019-03-22 18:58     ` Achim Gratz
  2019-03-23  8:17     ` Houder
  0 siblings, 2 replies; 10+ messages in thread
From: Vesa P. @ 2019-03-22 14:25 UTC (permalink / raw)
  To: cygwin

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

Thanks Thomas Wolff, L A Walsh and Brian Inglis for your responses. I
am trying to cover the most important parts in this one message to
prevent the email chain from branching.

On 2019-03-20  L A Walsh wrote:
>     Have you tried running with 'strace' to see what calls it executes?:
>
> strace -f ./hello

Thanks, that was helpful. A dialog titled "hello.exe - Application
Error" appeared, saying
"The application was unable to start correctly (0xc000007b).
Click OK to close the application." The  console contained the following output:

$ strace -f ./hello
--- Process 10312 created
--- Process 10312 loaded C:\Windows\System32\ntdll.dll at 00007ffd63290000
--- Process 10312 loaded C:\Windows\SysWOW64\ntdll.dll at 00000000779f0000
--- Process 10312 loaded C:\Windows\System32\wow64.dll at 0000000077910000
--- Process 10312 loaded C:\Windows\System32\wow64win.dll at 0000000077970000
--- Process 10312 loaded C:\Windows\System32\kernel32.dll at 00000000000d0000
--- Process 10312 unloaded DLL at 00000000000d0000
--- Process 10312 loaded C:\Windows\SysWOW64\kernel32.dll at 0000000074db0000
--- Process 10312 unloaded DLL at 0000000074db0000
--- Process 10312 loaded C:\Windows\System32\user32.dll at 0000000000630000
--- Process 10312 unloaded DLL at 0000000000630000
--- Process 10312 loaded C:\Windows\System32\wow64cpu.dll at 0000000077900000
--- Process 10312 loaded C:\Windows\SysWOW64\kernel32.dll at 0000000074db0000
--- Process 10312 loaded C:\Windows\SysWOW64\KernelBase.dll at 0000000077710000
--- Process 10312 thread 24044 created
--- Process 10312 loaded C:\Users\XXXXXX\cygwin64\bin\cygwin1.dll at
0000000000ae0000
--- Process 10312 unloaded DLL at 0000000000ae0000
--- Process 10312 thread 24044 exited with status 0x0
--- Process 10312 exited with status 0xc000007b


(Replaced a sensitive string with "XXXXXX" there.)

> Rather than describing what you did, copy and paste a shell transcript showing
> the commands and output from you listing the source code, compiling and running
> it, a long listing of the directory contents, then run
>
>         "cygcheck -hrsv > cygcheck.out"
>
> and attach the output as a text file to a post to this list, as explained below
> under Problem reports: http://cygwin.com/problems.html.

I included a modified version of cygcheck.out. Mostly sensitive letter
sequences have been
replaced by 6 X's: "XXXXXX".  And user groups in was all replaced by
"/// User group names and numbers omitted ///"

Vesa

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


Cygwin Configuration Diagnostics
Current System Time: Fri Mar 22 11:06:02 2019

Windows 10 Enterprise Ver 10.0 Build 17134 

Path:	C:\Users\XXXXXX\cygwin64\usr\local\bin
	C:\Users\XXXXXX\cygwin64\bin
	C:\WINDOWS\system32
	C:\WINDOWS
	C:\WINDOWS\System32\Wbem
	C:\WINDOWS\System32\WindowsPowerShell\v1.0
	C:\Program Files\dotnet
	C:\Program Files\Microsoft SQL Server\130\Tools\Binn
	C:\Program Files (x86)\Xoreax\IncrediBuild
	C:\WINDOWS\System32\OpenSSH
	C:\Users\XXXXXX\AppData\Local\Microsoft\WindowsApps

Output from C:\Users\XXXXXX\cygwin64\bin\id.exe
UID: XXXXXX(XXXXXX)
GID: XXXXXX(XXXXXX)

/// User group names and numbers omitted ///

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

USER = 'XXXXXX'
PWD = '/home/XXXXXX/tmp'
HOME = '/home/XXXXXX'

USERDOMAIN = 'XXXXXX'
OS = 'Windows_NT'
COMMONPROGRAMFILES = 'C:\Program Files\Common Files'
PROCESSOR_LEVEL = '6'
PSModulePath = 'C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules;C:\Program Files (x86)\Microsoft Azure Information Protection\Powershell'
CommonProgramW6432 = 'C:\Program Files\Common Files'
CommonProgramFiles(x86) = 'C:\Program Files (x86)\Common Files'
LANG = 'en_US.UTF-8'
TZ = 'XXXXXX'
SNC_LIB = 'gsskrb5.dll'
HOSTNAME = 'XXXXXX'
PUBLIC = 'C:\Users\Public'
OLDPWD = '/home/XXXXXX'
UATDATA = 'C:\WINDOWS\XXXXXX\UATData\XXXXXX'
USERNAME = 'XXXXXX'
LOGONSERVER = '\\XXXXXX'
PROCESSOR_ARCHITECTURE = 'AMD64'
LOCALAPPDATA = 'C:\Users\XXXXXX\AppData\Local'
COMPUTERNAME = 'XXXXXX'
NEXTHINK = 'C:\Program Files\Nexthink'
!:: = '::\'
SYSTEMDRIVE = 'C:'
USERPROFILE = 'C:\Users\XXXXXX'
PATHEXT = '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC'
AppDir = '\\XXXXXX.XXXXXX.com\appdir$'
SYSTEMROOT = 'C:\WINDOWS'
HOMESHARE = '\\XXXXXX.XXXXXX.com\users$\XXXXXX'
PLMVIS_82_LIBPATH = 'C:\Program Files (x86)\XXXXXX\FrontEnd\XXXXXX\Program'
USERDOMAIN_ROAMINGPROFILE = 'XXXXXX'
PROCESSOR_IDENTIFIER = 'Intel64 Family 6 Model 94 Stepping 3, GenuineIntel'
FSHARPINSTALLDIR = 'C:\Program Files (x86)\Microsoft SDKs\F#\10.1\Framework\v4.0\'
TMP = '/tmp'
OneDrive = 'C:\Users\XXXXXX\OneDrive'
PROCESSOR_REVISION = '5e03'
PROFILEREAD = 'true'
USERDNSDOMAIN = 'XXXXXX.COM'
NUMBER_OF_PROCESSORS = '8'
ProgramW6432 = 'C:\Program Files'
COMSPEC = 'C:\WINDOWS\system32\cmd.exe'
APPDATA = 'C:\Users\XXXXXX\AppData\Roaming'
SHELL = '/bin/bash'
TERM = 'xterm'
WINDIR = 'C:\WINDOWS'
ProgramData = 'C:\ProgramData'
SHLVL = '1'
PRINTER = 'XXXXXX'
PROGRAMFILES = 'C:\Program Files'
ALLUSERSPROFILE = 'C:\ProgramData'
TEMP = '/tmp'
DriverData = 'C:\Windows\System32\Drivers\DriverData'
SESSIONNAME = 'Console'
NetLocation = '0210'
ProgramFiles(x86) = 'C:\Program Files (x86)'
PS1 = '\[\e]0;\w\a\]\n\[\e[32m\]\u@\h \[\e[33m\]\w\[\e[0m\]\n\$ '
HOMEDRIVE = 'U:'
INFOPATH = '/usr/local/info:/usr/share/info:/usr/info'
HOMEPATH = '\'
ORIGINAL_PATH = '/cygdrive/c/WINDOWS/system32:/cygdrive/c/WINDOWS:/cygdrive/c/WINDOWS/System32/Wbem:/cygdrive/c/WINDOWS/System32/WindowsPowerShell/v1.0:/cygdrive/c/Program Files/dotnet:/cygdrive/c/Program Files/Microsoft SQL Server/130/Tools/Binn:/cygdrive/c/Program Files (x86)/Xoreax/IncrediBuild:/cygdrive/c/WINDOWS/System32/OpenSSH:/cygdrive/c/Users/XXXXXX/AppData/Local/Microsoft/WindowsApps'
EXECIGNORE = '*.dll'
VS140COMNTOOLS = 'C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\Tools\'
_ = '/usr/bin/cygcheck'

HKEY_CURRENT_USER\Software\Cygwin
HKEY_CURRENT_USER\Software\Cygwin\Installations
  (default) = '\??\C:\Users\XXXXXX\cygwin64'
  7e98ac0408c23778 = '\??\C:\Users\XXXXXX\cygwin64\usr\i686-pc-cygwin\sys-root\usr'
HKEY_CURRENT_USER\Software\Cygwin\setup
  (default) = 'C:\Users\XXXXXX\cygwin64'
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\Installations
  (default) = '\??\C:\Users\XXXXXX\cygwin64'

obcaseinsensitive set to 1

Cygwin installations found in the registry:
  System: Key: 1e51236bd1ee3049 Path: C:\Users\XXXXXX\cygwin64
  User:   Key: 1e51236bd1ee3049 Path: C:\Users\XXXXXX\cygwin64
  User:   Key: 7e98ac0408c23778 Path: C:\Users\XXXXXX\cygwin64\usr\i686-pc-cygwin\sys-root\usr

c:  hd  NTFS    240122Mb  49% CP CS UN PA FC    QU  Windows
f:  net NTFS   2534398Mb  99% CP CS UN PA FC    QU  XXXXXX
u:  net NTFS   3585916Mb  98% CP CS UN PA FC    QU  Users
v:  net NTFS    850812Mb  99% CP CS UN PA FC    QU  Shares
w:  net NTFS   2534398Mb  99% CP CS UN PA FC    QU  XXXXXX

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

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

   39k 2016/09/19 C:\Users\XXXXXX\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
  118k 2018/02/11 C:\Users\XXXXXX\cygwin64\bin\cygatk-1.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygatk-1.0-0.dll" v0.0 ts=2018-02-11 23:28
   16k 2013/03/26 C:\Users\XXXXXX\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:\Users\XXXXXX\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:\Users\XXXXXX\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
 1032k 2018/02/12 C:\Users\XXXXXX\cygwin64\bin\cygcairo-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygcairo-2.dll" v0.0 ts=2018-02-12 00:05
   27k 2018/02/12 C:\Users\XXXXXX\cygwin64\bin\cygcairo-gobject-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygcairo-gobject-2.dll" v0.0 ts=2018-02-12 00:05
  120k 2018/02/12 C:\Users\XXXXXX\cygwin64\bin\cygcairo-script-interpreter-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygcairo-script-interpreter-2.dll" v0.0 ts=2018-02-12 00:05
   13k 2015/03/19 C:\Users\XXXXXX\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
  203k 2017/04/25 C:\Users\XXXXXX\cygwin64\bin\cygcroco-0.6-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygcroco-0.6-3.dll" v0.0 ts=2017-04-25 17:03
   39k 2017/09/03 C:\Users\XXXXXX\cygwin64\bin\cygcrypt-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygcrypt-0.dll" v0.0 ts=2017-09-03 08:18
 2346k 2018/08/27 C:\Users\XXXXXX\cygwin64\bin\cygcrypto-1.0.0.dll - os=4.0 img=0.0 sys=5.2
                  "cygcrypto-1.0.0.dll" v0.0 ts=2018-08-27 18:14
  507k 2018/03/15 C:\Users\XXXXXX\cygwin64\bin\cygcurl-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygcurl-4.dll" v0.0 ts=2018-03-15 16:22
   24k 2014/11/12 C:\Users\XXXXXX\cygwin64\bin\cygdatrie-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygdatrie-1.dll" v0.0 ts=2014-11-12 07:24
 1552k 2017/09/28 C:\Users\XXXXXX\cygwin64\bin\cygdb-5.3.dll - os=4.0 img=0.0 sys=5.2
                  "cygdb-5.3.dll" v0.0 ts=2017-09-28 20:05
  267k 2017/08/10 C:\Users\XXXXXX\cygwin64\bin\cygdbus-1-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygdbus-1-3.dll" v0.0 ts=2017-08-10 06:10
  119k 2017/09/28 C:\Users\XXXXXX\cygwin64\bin\cygdb_cxx-5.3.dll - os=4.0 img=0.0 sys=5.2
                  "cygdb_cxx-5.3.dll" v0.0 ts=2017-09-28 20:06
  569k 2017/09/28 C:\Users\XXXXXX\cygwin64\bin\cygdb_sql-5.3.dll - os=4.0 img=0.0 sys=5.2
                  "cygdb_sql-5.3.dll" v0.0 ts=2017-09-28 20:06
  154k 2013/10/20 C:\Users\XXXXXX\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
  148k 2017/08/06 C:\Users\XXXXXX\cygwin64\bin\cygexpat-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygexpat-1.dll" v0.0 ts=2017-08-07 00:43
   30k 2014/10/14 C:\Users\XXXXXX\cygwin64\bin\cygfam-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygfam-0.dll" v0.0 ts=2014-10-14 21:33
   27k 2015/11/17 C:\Users\XXXXXX\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
  252k 2018/02/13 C:\Users\XXXXXX\cygwin64\bin\cygfontconfig-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygfontconfig-1.dll" v0.0 ts=2018-02-13 04:08
   26k 2016/01/29 C:\Users\XXXXXX\cygwin64\bin\cygfontenc-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygfontenc-1.dll" v0.0 ts=2016-01-29 20:19
   65k 2017/12/05 C:\Users\XXXXXX\cygwin64\bin\cygformw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygformw-10.dll" v0.0 ts=2017-12-05 08:15
  654k 2018/03/20 C:\Users\XXXXXX\cygwin64\bin\cygfreetype-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygfreetype-6.dll" v0.0 ts=2018-03-20 03:29
  122k 2018/08/15 C:\Users\XXXXXX\cygwin64\bin\cyggc-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyggc-1.dll" v0.0 ts=2018-08-14 15:35
   70k 2018/06/26 C:\Users\XXXXXX\cygwin64\bin\cyggcc_s-seh-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyggcc_s-seh-1.dll" v0.0 ts=2018-06-26 17:17
   39k 2016/10/10 C:\Users\XXXXXX\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:\Users\XXXXXX\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
  620k 2018/02/12 C:\Users\XXXXXX\cygwin64\bin\cyggdk-x11-2.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggdk-x11-2.0-0.dll" v0.0 ts=2018-02-12 01:51
  141k 2018/02/11 C:\Users\XXXXXX\cygwin64\bin\cyggdk_pixbuf-2.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggdk_pixbuf-2.0-0.dll" v0.0 ts=2018-02-11 23:46
 1398k 2018/02/11 C:\Users\XXXXXX\cygwin64\bin\cyggio-2.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggio-2.0-0.dll" v0.0 ts=2018-02-11 19:03
  295k 2018/06/05 C:\Users\XXXXXX\cygwin64\bin\cygglapi-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygglapi-0.dll" v0.0 ts=2018-06-05 01:18
  993k 2018/02/11 C:\Users\XXXXXX\cygwin64\bin\cygglib-2.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygglib-2.0-0.dll" v0.0 ts=2018-02-11 19:01
   15k 2018/02/11 C:\Users\XXXXXX\cygwin64\bin\cyggmodule-2.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggmodule-2.0-0.dll" v0.0 ts=2018-02-11 19:01
  527k 2017/01/21 C:\Users\XXXXXX\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
   93k 2015/06/19 C:\Users\XXXXXX\cygwin64\bin\cyggnome-menu-3-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggnome-menu-3-0.dll" v0.0 ts=2015-06-20 00:07
  289k 2018/02/11 C:\Users\XXXXXX\cygwin64\bin\cyggobject-2.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggobject-2.0-0.dll" v0.0 ts=2018-02-11 19:02
  177k 2017/09/04 C:\Users\XXXXXX\cygwin64\bin\cyggraphite2-3.dll - os=4.0 img=3.0 sys=5.2
                  "cyggraphite2-3.dll" v0.0 ts=2017-09-04 21:02
  274k 2018/03/16 C:\Users\XXXXXX\cygwin64\bin\cyggssapi_krb5-2.dll - os=4.0 img=0.0 sys=5.2
                  "cyggssapi_krb5-2.dll" v0.0 ts=2018-03-16 03:38
    9k 2018/02/11 C:\Users\XXXXXX\cygwin64\bin\cyggthread-2.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggthread-2.0-0.dll" v0.0 ts=2018-02-11 19:01
 4007k 2018/02/12 C:\Users\XXXXXX\cygwin64\bin\cyggtk-x11-2.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cyggtk-x11-2.0-0.dll" v0.0 ts=2018-02-12 01:59
 1333k 2018/08/07 C:\Users\XXXXXX\cygwin64\bin\cygguile-2.0-22.dll - os=4.0 img=0.0 sys=5.2
                  "cygguile-2.0-22.dll" v0.0 ts=2018-08-07 08:10
  680k 2018/04/11 C:\Users\XXXXXX\cygwin64\bin\cygharfbuzz-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygharfbuzz-0.dll" v0.0 ts=2018-04-11 08:11
   33k 2017/02/13 C:\Users\XXXXXX\cygwin64\bin\cyghistory7.dll - os=4.0 img=0.0 sys=5.2
                  "cyghistory7.dll" v0.0 ts=2017-02-11 22:39
   77k 2014/08/10 C:\Users\XXXXXX\cygwin64\bin\cygICE-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygICE-6.dll" v0.0 ts=1970-01-01 00:00
 1009k 2015/02/20 C:\Users\XXXXXX\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
  111k 2017/09/25 C:\Users\XXXXXX\cygwin64\bin\cygidn2-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygidn2-0.dll" v0.0 ts=2017-09-25 03:16
   42k 2016/10/23 C:\Users\XXXXXX\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
 1039k 2015/09/20 C:\Users\XXXXXX\cygwin64\bin\cygisl-13.dll - os=4.0 img=0.0 sys=5.2
                  "cygisl-13.dll" v0.0 ts=2015-09-20 12:39
  288k 2017/09/25 C:\Users\XXXXXX\cygwin64\bin\cygjasper-4.dll - os=4.0 img=4.0 sys=5.2
                  "cygjasper-4.dll" v0.0 ts=2017-09-25 02:39
   48k 2014/06/17 C:\Users\XXXXXX\cygwin64\bin\cygjbig-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygjbig-2.dll" v0.0 ts=1970-01-01 00:00
   18k 2014/06/17 C:\Users\XXXXXX\cygwin64\bin\cygjbig85-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygjbig85-2.dll" v0.0 ts=1970-01-01 00:00
  419k 2017/12/18 C:\Users\XXXXXX\cygwin64\bin\cygjpeg-8.dll - os=4.0 img=0.0 sys=5.2
                  "cygjpeg-8.dll" v0.0 ts=2017-12-18 02:41
  192k 2018/03/16 C:\Users\XXXXXX\cygwin64\bin\cygk5crypto-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygk5crypto-3.dll" v0.0 ts=2018-03-16 03:37
  754k 2018/03/16 C:\Users\XXXXXX\cygwin64\bin\cygkrb5-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygkrb5-3.dll" v0.0 ts=2018-03-16 03:37
   37k 2018/03/16 C:\Users\XXXXXX\cygwin64\bin\cygkrb5support-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygkrb5support-0.dll" v0.0 ts=2018-03-16 03:36
   45k 2015/11/19 C:\Users\XXXXXX\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:\Users\XXXXXX\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:\Users\XXXXXX\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
36141k 2017/12/31 C:\Users\XXXXXX\cygwin64\bin\cygLLVM-5.0.dll - os=4.0 img=0.0 sys=5.2
                  "cygLLVM-5.0.dll" v0.0 ts=2017-12-31 10:34
    6k 2018/08/31 C:\Users\XXXXXX\cygwin64\bin\cyglsa64.dll - os=4.0 img=0.0 sys=5.2
                  "cyglsa64.dll" v0.0 ts=2018-08-31 12:05
   35k 2018/05/29 C:\Users\XXXXXX\cygwin64\bin\cygltdl-7.dll - os=4.0 img=0.0 sys=5.2
                  "cygltdl-7.dll" v0.0 ts=2018-05-29 15:34
  139k 2017/05/10 C:\Users\XXXXXX\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
  129k 2017/10/05 C:\Users\XXXXXX\cygwin64\bin\cyglzo2-2.dll - os=4.0 img=0.0 sys=5.2
                  "cyglzo2-2.dll" v0.0 ts=2017-10-05 19:40
  125k 2018/03/18 C:\Users\XXXXXX\cygwin64\bin\cygmagic-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygmagic-1.dll" v0.0 ts=2018-03-18 15:17
  168k 2018/01/23 C:\Users\XXXXXX\cygwin64\bin\cygman-2-7-6-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygman-2-7-6-1.dll" v0.0 ts=2018-01-23 20:22
   22k 2018/01/23 C:\Users\XXXXXX\cygwin64\bin\cygmandb-2-7-6-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygmandb-2-7-6-1.dll" v0.0 ts=2018-01-23 20:22
  132k 2014/01/21 C:\Users\XXXXXX\cygwin64\bin\cygmcpp-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygmcpp-0.dll" v0.0 ts=2014-01-21 18:41
   33k 2017/12/05 C:\Users\XXXXXX\cygwin64\bin\cygmenuw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygmenuw-10.dll" v0.0 ts=2017-12-05 08:15
   92k 2018/03/17 C:\Users\XXXXXX\cygwin64\bin\cygmpc-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygmpc-3.dll" v0.0 ts=2018-03-17 17:05
  346k 2017/11/04 C:\Users\XXXXXX\cygwin64\bin\cygmpfr-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygmpfr-4.dll" v0.0 ts=2017-11-04 18:48
  432k 2018/07/28 C:\Users\XXXXXX\cygwin64\bin\cygmpfr-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygmpfr-6.dll" v0.0 ts=2018-07-28 20:18
  493k 2018/08/28 C:\Users\XXXXXX\cygwin64\bin\cygnativeGLthunk.dll - os=4.0 img=0.0 sys=5.2
                  "cygnativeGLthunk.dll" v0.0 ts=2018-08-28 20:15
  317k 2017/12/05 C:\Users\XXXXXX\cygwin64\bin\cygncursesw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygncursesw-10.dll" v0.0 ts=2017-12-05 08:13
  207k 2018/03/15 C:\Users\XXXXXX\cygwin64\bin\cygnettle-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygnettle-6.dll" v0.0 ts=2018-03-16 00:07
  140k 2018/03/16 C:\Users\XXXXXX\cygwin64\bin\cygnghttp2-14.dll - os=4.0 img=0.0 sys=5.2
                  "cygnghttp2-14.dll" v0.0 ts=2018-03-16 02:04
 1019k 2018/04/09 C:\Users\XXXXXX\cygwin64\bin\cygp11-kit-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygp11-kit-0.dll" v0.0 ts=2018-04-09 01:55
   15k 2017/12/05 C:\Users\XXXXXX\cygwin64\bin\cygpanelw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygpanelw-10.dll" v0.0 ts=2017-12-05 08:14
  270k 2018/02/12 C:\Users\XXXXXX\cygwin64\bin\cygpango-1.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygpango-1.0-0.dll" v0.0 ts=2018-02-12 00:40
   44k 2018/02/12 C:\Users\XXXXXX\cygwin64\bin\cygpangocairo-1.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygpangocairo-1.0-0.dll" v0.0 ts=2018-02-12 00:41
   72k 2018/02/12 C:\Users\XXXXXX\cygwin64\bin\cygpangoft2-1.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygpangoft2-1.0-0.dll" v0.0 ts=2018-02-12 00:40
   28k 2018/02/12 C:\Users\XXXXXX\cygwin64\bin\cygpangoxft-1.0-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygpangoxft-1.0-0.dll" v0.0 ts=2018-02-12 00:41
  475k 2017/04/23 C:\Users\XXXXXX\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
 2182k 2018/04/16 C:\Users\XXXXXX\cygwin64\bin\cygperl5_26.dll - os=4.0 img=0.0 sys=5.2
                  "cygperl5_26.dll" v0.0 ts=2018-04-16 18:54
   39k 2015/04/09 C:\Users\XXXXXX\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
  638k 2016/08/08 C:\Users\XXXXXX\cygwin64\bin\cygpixman-1-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygpixman-1-0.dll" v0.0 ts=2016-08-08 02:51
  200k 2017/12/18 C:\Users\XXXXXX\cygwin64\bin\cygpng16-16.dll - os=4.0 img=0.0 sys=5.2
                  "cygpng16-16.dll" v0.0 ts=2017-12-18 01:48
   41k 2016/07/13 C:\Users\XXXXXX\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
   53k 2017/08/11 C:\Users\XXXXXX\cygwin64\bin\cygpsl-5.dll - os=4.0 img=0.0 sys=5.2
                  "cygpsl-5.dll" v0.0 ts=2017-08-11 06:56
  219k 2017/02/13 C:\Users\XXXXXX\cygwin64\bin\cygreadline7.dll - os=4.0 img=0.0 sys=5.2
                  "cygreadline7.dll" v0.0 ts=2017-02-11 22:39
  212k 2018/02/12 C:\Users\XXXXXX\cygwin64\bin\cygrsvg-2-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygrsvg-2-2.dll" v0.0 ts=2018-02-12 00:38
   96k 2017/04/16 C:\Users\XXXXXX\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:\Users\XXXXXX\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
   28k 2014/01/14 C:\Users\XXXXXX\cygwin64\bin\cygSM-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygSM-6.dll" v0.0 ts=2014-01-14 23:23
   89k 2015/03/23 C:\Users\XXXXXX\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:\Users\XXXXXX\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
  406k 2018/08/27 C:\Users\XXXXXX\cygwin64\bin\cygssl-1.0.0.dll - os=4.0 img=0.0 sys=5.2
                  "cygssl-1.0.0.dll" v0.0 ts=2018-08-27 18:14
   12k 2017/11/13 C:\Users\XXXXXX\cygwin64\bin\cygssp-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygssp-0.dll" v0.0 ts=2017-11-13 21:52
 1394k 2018/06/26 C:\Users\XXXXXX\cygwin64\bin\cygstdc++-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygstdc++-6.dll" v0.0 ts=2018-06-26 17:34
   67k 2018/03/19 C:\Users\XXXXXX\cygwin64\bin\cygtasn1-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygtasn1-6.dll" v0.0 ts=2018-03-19 21:41
   34k 2017/03/05 C:\Users\XXXXXX\cygwin64\bin\cygthai-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygthai-0.dll" v0.0 ts=2017-03-05 04:36
   58k 2017/12/05 C:\Users\XXXXXX\cygwin64\bin\cygticw-10.dll - os=4.0 img=0.0 sys=5.2
                  "cygticw-10.dll" v0.0 ts=2017-12-05 08:13
  452k 2017/12/18 C:\Users\XXXXXX\cygwin64\bin\cygtiff-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygtiff-6.dll" v0.0 ts=2017-12-18 02:52
   12k 2017/12/18 C:\Users\XXXXXX\cygwin64\bin\cygtiffxx-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygtiffxx-6.dll" v0.0 ts=2017-12-18 02:52
  165k 2018/02/07 C:\Users\XXXXXX\cygwin64\bin\cygtirpc-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygtirpc-3.dll" v0.0 ts=2018-02-07 16:37
 1612k 2018/08/16 C:\Users\XXXXXX\cygwin64\bin\cygunistring-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygunistring-2.dll" v0.0 ts=2018-08-16 20:33
   15k 2015/03/23 C:\Users\XXXXXX\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
 1128k 2017/06/19 C:\Users\XXXXXX\cygwin64\bin\cygX11-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygX11-6.dll" v0.0 ts=2017-06-19 02:47
   12k 2013/06/06 C:\Users\XXXXXX\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
  375k 2016/01/29 C:\Users\XXXXXX\cygwin64\bin\cygXaw-7.dll - os=4.0 img=0.0 sys=5.2
                  "cygXaw-7.dll" v0.0 ts=2016-01-29 20:32
  121k 2017/10/03 C:\Users\XXXXXX\cygwin64\bin\cygxcb-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygxcb-1.dll" v0.0 ts=2017-10-03 23:34
   12k 2017/10/03 C:\Users\XXXXXX\cygwin64\bin\cygxcb-composite-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygxcb-composite-0.dll" v0.0 ts=2017-10-03 23:34
   40k 2014/08/10 C:\Users\XXXXXX\cygwin64\bin\cygxcb-ewmh-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygxcb-ewmh-2.dll" v0.0 ts=1970-01-01 00:00
   17k 2014/08/10 C:\Users\XXXXXX\cygwin64\bin\cygxcb-icccm-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygxcb-icccm-4.dll" v0.0 ts=1970-01-01 00:00
   16k 2013/03/17 C:\Users\XXXXXX\cygwin64\bin\cygxcb-image-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygxcb-image-0.dll" v0.0 ts=2013-03-17 22:42
   41k 2017/10/03 C:\Users\XXXXXX\cygwin64\bin\cygxcb-render-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygxcb-render-0.dll" v0.0 ts=2017-10-03 23:34
   11k 2017/10/03 C:\Users\XXXXXX\cygwin64\bin\cygxcb-shm-0.dll - os=4.0 img=0.0 sys=5.2
                  "cygxcb-shm-0.dll" v0.0 ts=2017-10-03 23:34
   17k 2013/03/17 C:\Users\XXXXXX\cygwin64\bin\cygxcb-util-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygxcb-util-1.dll" v0.0 ts=2013-03-17 22:33
   11k 2013/03/18 C:\Users\XXXXXX\cygwin64\bin\cygXcomposite-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygXcomposite-1.dll" v0.0 ts=2013-03-18 23:05
   36k 2018/02/21 C:\Users\XXXXXX\cygwin64\bin\cygXcursor-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygXcursor-1.dll" v0.0 ts=2018-02-21 00:54
   10k 2013/04/08 C:\Users\XXXXXX\cygwin64\bin\cygXdamage-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygXdamage-1.dll" v0.0 ts=2013-04-08 22:24
   21k 2015/03/26 C:\Users\XXXXXX\cygwin64\bin\cygXdmcp-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygXdmcp-6.dll" v0.0 ts=2015-03-26 15:38
   56k 2014/08/10 C:\Users\XXXXXX\cygwin64\bin\cygXext-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygXext-6.dll" v0.0 ts=1970-01-01 00:00
   20k 2016/10/09 C:\Users\XXXXXX\cygwin64\bin\cygXfixes-3.dll - os=4.0 img=0.0 sys=5.2
                  "cygXfixes-3.dll" v0.0 ts=2016-10-09 18:37
  211k 2018/02/21 C:\Users\XXXXXX\cygwin64\bin\cygXfont2-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygXfont2-2.dll" v0.0 ts=2018-02-21 00:55
   73k 2014/08/10 C:\Users\XXXXXX\cygwin64\bin\cygXft-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygXft-2.dll" v0.0 ts=1970-01-01 00:00
   58k 2017/06/19 C:\Users\XXXXXX\cygwin64\bin\cygXi-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygXi-6.dll" v0.0 ts=2017-06-19 03:04
   10k 2013/06/06 C:\Users\XXXXXX\cygwin64\bin\cygXinerama-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygXinerama-1.dll" v0.0 ts=2013-06-06 21:33
  128k 2016/01/29 C:\Users\XXXXXX\cygwin64\bin\cygxkbfile-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygxkbfile-1.dll" v0.0 ts=2016-01-29 20:31
 1214k 2017/03/13 C:\Users\XXXXXX\cygwin64\bin\cygxml2-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygxml2-2.dll" v0.0 ts=2017-03-13 17:01
   85k 2014/01/15 C:\Users\XXXXXX\cygwin64\bin\cygXmu-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygXmu-6.dll" v0.0 ts=2014-01-15 02:27
   14k 2014/01/15 C:\Users\XXXXXX\cygwin64\bin\cygXmuu-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygXmuu-1.dll" v0.0 ts=2014-01-15 02:27
   61k 2017/01/18 C:\Users\XXXXXX\cygwin64\bin\cygXpm-4.dll - os=4.0 img=0.0 sys=5.2
                  "cygXpm-4.dll" v0.0 ts=2017-01-18 17:27
   36k 2016/10/09 C:\Users\XXXXXX\cygwin64\bin\cygXrandr-2.dll - os=4.0 img=0.0 sys=5.2
                  "cygXrandr-2.dll" v0.0 ts=2016-10-09 18:45
   36k 2016/01/29 C:\Users\XXXXXX\cygwin64\bin\cygXrender-1.dll - os=4.0 img=0.0 sys=5.2
                  "cygXrender-1.dll" v0.0 ts=2016-01-29 20:24
   12k 2013/03/14 C:\Users\XXXXXX\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
  326k 2016/01/29 C:\Users\XXXXXX\cygwin64\bin\cygXt-6.dll - os=4.0 img=0.0 sys=5.2
                  "cygXt-6.dll" v0.0 ts=2016-01-29 20:26
   83k 2017/03/03 C:\Users\XXXXXX\cygwin64\bin\cygz.dll - os=4.0 img=0.0 sys=5.2
                  "cygz.dll" v0.0 ts=2017-03-03 21:42
 3257k 2018/08/31 C:\Users\XXXXXX\cygwin64\bin\cygwin1.dll - os=4.0 img=0.0 sys=5.2
                  "cygwin1.dll" v0.0 ts=2018-08-31 12:05
    Cygwin DLL version info:
        DLL version: 2.11.0
        DLL epoch: 19
        DLL old termios: 5
        DLL malloc env: 28
        Cygwin conv: 181
        API major: 0
        API minor: 329
        Shared data: 5
        DLL identifier: cygwin1
        Mount registry: 3
        Cygwin registry name: Cygwin
        Installations name: Installations
        Cygdrive default prefix: 
        Build date: 
        Shared id: cygwin1S5


No Cygwin services found.


Cygwin Package Information
Last downloaded files to: C:\Users\XXXXXX\Downloads\Cygwin
Last downloaded files from: ftp://ftp.funet.fi/pub/mirrors/cygwin.com/pub/cygwin/

Package                   Version             Status
_autorebase               001007-1            OK
adwaita-icon-theme        3.26.1-1            OK
adwaita-themes            3.22.3-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.22-1              OK
coreutils                 8.26-2              OK
csih                      0.9.11-1            OK
cygrunsrv                 1.62-1              OK
cygutils                  1.4.16-2            OK
cygwin                    2.11.0-1            OK
cygwin32                  2.10.0-1            OK
cygwin32-binutils         2.29-1              OK
cygwin32-default-manifest 6.4-1               OK
cygwin32-gcc-core         6.4.0-1             OK
cygwin32-gcc-g++          6.4.0-1             OK
cygwin32-w32api-headers   4.0.4-1             OK
cygwin32-w32api-runtime   4.0.4-1             OK
dash                      0.5.9.1-1           OK
dbus                      1.10.22-1           OK
dbus-x11                  1.10.22-1           OK
dejavu-fonts              2.37-1              OK
desktop-file-utils        0.23-1              OK
diffutils                 3.5-2               OK
dri-drivers               18.0.5-1            OK
ed                        1.15-1              OK
editrights                1.03-1              OK
file                      5.32-1              OK
findutils                 4.6.0-1             OK
gamin                     0.1.10-15           OK
gawk                      4.2.1-1             OK
gdk-pixbuf2.0-svg         2.40.20-1           OK
getent                    2.18.90-4           OK
git                       2.16.1-1            OK
git-gui                   2.17.0-1            OK
gitk                      2.17.0-1            OK
gnome-menus               3.13.3-3            OK
grep                      3.0-2               OK
groff                     1.22.3-1            OK
gsettings-desktop-schemas 3.24.1-1            OK
gtk-update-icon-cache     3.22.28-1           OK
gtk2.0-engines-pixmap     2.24.32-1           OK
gzip                      1.8-1               OK
hicolor-icon-theme        0.15-1              OK
hostname                  3.13-1              OK
info                      6.5-2               OK
ipc-utils                 1.0-2               OK
keychain                  2.7.1-1             OK
less                      530-1               OK
libargp                   20110921-3          OK
libatk1.0_0               2.26.1-1            OK
libattr1                  2.4.46-1            OK
libblkid1                 2.25.2-2            OK
libbz2_1                  1.0.6-3             OK
libcairo2                 1.14.12-1           OK
libcom_err2               1.42.12-2           OK
libcroco0.6_3             0.6.12-1            OK
libcrypt0                 2.1-1               OK
libcurl4                  7.59.0-1            OK
libdatrie1                0.2.8-1             OK
libdb5.3                  5.3.28-2            OK
libdbus1_3                1.10.22-1           OK
libedit0                  20130712-1          OK
libexpat1                 2.2.3-1             OK
libfam0                   0.1.10-15           OK
libffi6                   3.2.1-2             OK
libfontconfig-common      2.12.6-1            OK
libfontconfig1            2.12.6-1            OK
libfontenc1               1.1.3-1             OK
libfreetype6              2.8.1-1             OK
libgc1                    7.6.8-1             OK
libgcc1                   7.3.0-3             OK
libgdbm4                  1.12-1              OK
libgdk_pixbuf2.0_0        2.36.11-1           OK
libglapi0                 18.0.5-1            OK
libglib2.0_0              2.54.3-1            OK
libgmp10                  6.1.2-1             OK
libgnome-menu3_0          3.13.3-3            OK
libgraphite2_3            1.3.10-1            OK
libgssapi_krb5_2          1.15.2-2            OK
libgtk2.0_0               2.24.32-1           OK
libguile2.0_22            2.0.14-3            OK
libharfbuzz0              1.7.6-1             OK
libICE6                   1.0.9-1             OK
libiconv                  1.14-3              OK
libiconv2                 1.14-3              OK
libidn2_0                 2.0.4-1             OK
libintl8                  0.19.8.1-2          OK
libisl13                  0.14.1-1            OK
libjasper4                2.0.14-1            OK
libjbig2                  2.0-14              OK
libjpeg8                  1.5.3-1             OK
libk5crypto3              1.15.2-2            OK
libkrb5_3                 1.15.2-2            OK
libkrb5support0           1.15.2-2            OK
libllvm5.0                5.0.1-1             OK
libltdl7                  2.4.6-6             OK
liblzma5                  5.2.3-1             OK
liblzo2_2                 2.10-1              OK
libmcpp0                  2.7.2-2             OK
libmpc3                   1.1.0-1             OK
libmpfr4                  3.1.6-1p1           OK
libmpfr6                  4.0.1-4p11          OK
libncursesw10             6.0-12.20171125     OK
libnettle6                3.4-1               OK
libnghttp2_14             1.31.0-1            OK
libopenldap2_4_2          2.4.42-1            OK
libopenssl100             1.0.2p-1            OK
libp11-kit0               0.23.10-1           OK
libpango1.0_0             1.40.14-1           OK
libpcre1                  8.40-3              OK
libpipeline1              1.4.0-1             OK
libpixman1_0              0.34.0-1            OK
libpng16                  1.6.34-1            OK
libpopt-common            1.16-2              OK
libpopt0                  1.16-2              OK
libpsl5                   0.18.0-1            OK
libreadline7              7.0.3-3             OK
librsvg2_2                2.40.20-1           OK
libsasl2_3                2.1.26-11           OK
libsigsegv2               2.10-2              OK
libSM6                    1.2.2-1             OK
libsmartcols1             2.25.2-2            OK
libssh2_1                 1.7.0-1             OK
libssp0                   6.4.0-4             OK
libstdc++6                7.3.0-3             OK
libtasn1_6                4.13-1              OK
libthai0                  0.1.26-1            OK
libtiff6                  4.0.9-1             OK
libtirpc-common           1.0.2-2             OK
libtirpc3                 1.0.2-2             OK
libunistring2             0.9.10-1            OK
libuuid1                  2.25.2-2            OK
libX11_6                  1.6.5-1             OK
libXau6                   1.0.8-1             OK
libXaw7                   1.0.13-1            OK
libxcb-composite0         1.12-2              OK
libxcb-ewmh2              0.4.1-1             OK
libxcb-icccm4             0.4.1-1             OK
libxcb-image0             0.3.9-1             OK
libxcb-render0            1.12-2              OK
libxcb-shm0               1.12-2              OK
libxcb-util1              0.3.9-1             OK
libxcb1                   1.12-2              OK
libXcomposite1            0.4.3-1             OK
libXcursor1               1.1.15-1            OK
libXdamage1               1.1.4-1             OK
libXdmcp6                 1.1.2-1             OK
libXext6                  1.3.3-1             OK
libXfixes3                5.0.3-1             OK
libXfont2_2               2.0.3-1             OK
libXft2                   2.3.2-1             OK
libXi6                    1.7.9-1             OK
libXinerama1              1.1.3-1             OK
libxkbfile1               1.0.9-1             OK
libxml2                   2.9.4-2             OK
libXmu6                   1.1.2-1             OK
libXmuu1                  1.1.2-1             OK
libXpm4                   3.5.12-1            OK
libXrandr2                1.5.1-1             OK
libXrender1               0.9.9-1             OK
libXss1                   1.2.2-1             OK
libXt6                    1.1.5-1             OK
login                     1.12-1              OK
luit                      20130217-1          OK
make                      4.2.1-2             OK
man-db                    2.7.6.1-1           OK
mcpp                      2.7.2-2             OK
mintty                    2.9.0-0             OK
ncurses                   6.0-12.20171125     OK
openssh                   7.8p1-1             OK
openssl                   1.0.2p-1            OK
p11-kit                   0.23.10-1           OK
p11-kit-trust             0.23.10-1           OK
perl-Error                0.17026-1           OK
perl-TermReadKey          2.37-2              OK
perl_base                 5.26.2-1            OK
publicsuffix-list-dafsa   20180523-1          OK
rebase                    4.4.4-1             OK
rsync                     3.1.2-1             OK
run                       1.3.4-2             OK
sed                       4.4-1               OK
setxkbmap                 1.3.1-1             OK
shared-mime-info          1.8-1               OK
tar                       1.29-1              OK
tcl                       8.6.8-1             OK
tcl-tk                    8.6.8-1             OK
terminfo                  6.0-12.20171125     OK
twm                       1.0.9-1             OK
tzcode                    2018e-1             OK
tzdata                    2018e-1             OK
util-linux                2.25.2-2            OK
vim-minimal               8.0.1567-1          OK
which                     2.20-2              OK
xauth                     1.0.10-1            OK
xcursor-themes            1.0.4-1             OK
xdg-user-dirs             0.16-1              OK
xinit                     1.3.4-14            OK
xkbcomp                   1.4.0-1             OK
xkeyboard-config          2.23.1-1            OK
xlaunch                   20160530-1          OK
xmodmap                   1.0.9-1             OK
xorg-server               1.20.1-1            OK
xorg-server-common        1.20.1-1            OK
xorg-x11-fonts-dpi75      7.5-3               OK
xorg-x11-fonts-misc       7.5-3               OK
xrdb                      1.1.0-1             OK
xterm                     330-1               OK
xwin-xdg-menu             20170321-1          OK
xz                        5.2.3-1             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] 10+ messages in thread

* Re: Problems with "Hello, World!"
  2019-03-22 14:25   ` Vesa P.
@ 2019-03-22 18:58     ` Achim Gratz
  2019-03-23  8:17     ` Houder
  1 sibling, 0 replies; 10+ messages in thread
From: Achim Gratz @ 2019-03-22 18:58 UTC (permalink / raw)
  To: cygwin

Vesa P. writes:
> --- Process 10312 thread 24044 created
> --- Process 10312 loaded C:\Users\XXXXXX\cygwin64\bin\cygwin1.dll at 0000000000ae0000
> --- Process 10312 unloaded DLL at 0000000000ae0000
> --- Process 10312 thread 24044 exited with status 0x0
> --- Process 10312 exited with status 0xc000007b

Well, your cygwin1.dll loads to some unusually very low address.  The
64bit DLL should alway load at 0x0000000180040000.  If you didn't
force-replace the DLL while you have it still loaded into another
process (fixing that requires a reboot) that suggests a serious case of
BLODA.


Regards,
Achim.
-- 
+<[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]>+

Wavetables for the Waldorf Blofeld:
http://Synth.Stromeko.net/Downloads.html#BlofeldUserWavetables

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

* Re: Problems with "Hello, World!"
  2019-03-22 14:25   ` Vesa P.
  2019-03-22 18:58     ` Achim Gratz
@ 2019-03-23  8:17     ` Houder
  2019-03-23  8:33       ` Houder
  1 sibling, 1 reply; 10+ messages in thread
From: Houder @ 2019-03-23  8:17 UTC (permalink / raw)
  To: cygwin

On Fri, 22 Mar 2019 16:25:08, Vesa P dot "  wrote:

> > Rather than describing what you did, copy and paste a shell transcript showing
> > the commands and output from you listing the source code, compiling and running
> > it, a long listing of the directory contents, then run
> >
> >         "cygcheck -hrsv > cygcheck.out"
> >
> > and attach the output as a text file to a post to this list, as explained below
> > under Problem reports: http://cygwin.com/problems.html.
> 
> I included a modified version of cygcheck.out. Mostly sensitive letter
> sequences have been
> replaced by 6 X's: "XXXXXX".  And user groups in was all replaced by
> "/// User group names and numbers omitted ///"

Vesa,

From your previous post it was clear that your program did not execute. You
compiled your "hello.c" as follows:

    gcc -Wextra -Wall -o hello hello.c

You are using the 64-bits setup of Cygwin. Me too (although I have W7).

64-@@ uname -a
CYGWIN_NT-6.1 Seven 3.0.4(0.338/5/3) 2019-03-16 09:50 x86_64 Cygwin

 ** Me **
64-@@ grep gcc cygcheck-20190323.out
Found: E:\Cygwin64\bin\gcc.exe
   70k 2018/12/09 E:\Cygwin64\bin\cyggcc_s-seh-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyggcc_s-seh-1.dll" v0.0 ts=2018-12-08 19:56
gcc-core                                7.4.0-1               OK
libgcc1                                 7.4.0-1               OK
(I deleted non-relevant output)

 ** Vesa **
64-@@ grep gcc cygcheck-vesa.out
Found: C:\Users\XXXXXX\cygwin64\bin\gcc.exe <==== What is this? (is this
  the compiler for the 32-bits setup of Cygwin?)
   70k 2018/06/26 C:\Users\XXXXXX\cygwin64\bin\cyggcc_s-seh-1.dll - os=4.0 img=0.0 sys=5.2
                  "cyggcc_s-seh-1.dll" v0.0 ts=2018-06-26 17:17
cygwin32-gcc-core         6.4.0-1             OK <==== generating code for
  the 32-bits setup of Cygwin ????? (I have forgotten)
cygwin32-gcc-g++          6.4.0-1             OK
libgcc1                   7.3.0-3             OK
-----

Q: where is your compiler (gcc)? Evidently you are not using the compiler
from the 64-bits setup ...

Btw, you are using an old version of Cygwin (cygwin1.dll) ... Why do you
not update (while also installing the 64-bits version of the compiler).

I may be wrong though (as I only skimmed your posts and the cygcheck.out
file).

Henri


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

* Re: Problems with "Hello, World!"
  2019-03-23  8:17     ` Houder
@ 2019-03-23  8:33       ` Houder
  2019-03-23  8:52         ` Houder
  2019-03-25 13:35         ` Vesa P.
  0 siblings, 2 replies; 10+ messages in thread
From: Houder @ 2019-03-23  8:33 UTC (permalink / raw)
  To: cygwin

On Sat, 23 Mar 2019 09:16:53, Houder  wrote:

> Q: where is your compiler (gcc)? Evidently you are not using the compiler
> from the 64-bits setup ...
> 
> Btw, you are using an old version of Cygwin (cygwin1.dll) ... Why do you
> not update (while also installing the 64-bits version of the compiler).
> 
> I may be wrong though (as I only skimmed your posts and the cygcheck.out
> file).

Compiled "hello.c" on my 32-bits setup of Cygwin ...

@@ gcc -Wall -o hello-32 hello.c # prompt indicates 32-bits setup of Cygwin

Ran it on my 64-bits setup of Cygwin ...

64-@@ ./hello-32 # prompt indicates 64-bits setup of Cygwin

I got the same result as you did ... (same pop-up)

.. even the output of "strace ./hello-32" is the same.

Henri


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

* Re: Problems with "Hello, World!"
  2019-03-23  8:33       ` Houder
@ 2019-03-23  8:52         ` Houder
  2019-03-25 13:35         ` Vesa P.
  1 sibling, 0 replies; 10+ messages in thread
From: Houder @ 2019-03-23  8:52 UTC (permalink / raw)
  To: cygwin

On Sat, 23 Mar 2019 09:33:10, Houder  wrote:
> On Sat, 23 Mar 2019 09:16:53, Houder  wrote:
> 
> > Q: where is your compiler (gcc)? Evidently you are not using the compiler
> > from the 64-bits setup ...
> > 
> > Btw, you are using an old version of Cygwin (cygwin1.dll) ... Why do you
> > not update (while also installing the 64-bits version of the compiler).
> > 
> > I may be wrong though (as I only skimmed your posts and the cygcheck.out
> > file).

Vesa,

As an aside ...

From setup.ini belonging to the 64-bits setup of Cygwin:

@ cygwin32-gcc-core
sdesc: "GCC for Cygwin 32bit toolchain (C, OpenMP)", i.e. compiler

    to be used on the 64-bits setup of C., which generates code to be used on
    the 32-bits setup of C.

From setup.ini belonging to the 32-bits setup of Cygwin:

@ cygwin64-gcc-core
sdesc: "GCC for Cygwin 64bit toolchain (C, OpenMP)", i.e. compiler

    to be used on the 32-bits setup of C., which generates code to be used on
    the 64-bits setup of C.

Yes, normally one would use "gcc-core" on the 64-bits setup of C. to generate
code to be used on the 64-bits setup of C.

Likewise for the 32-bits setup of C.

Henri


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

* Re: Problems with "Hello, World!"
  2019-03-23  8:33       ` Houder
  2019-03-23  8:52         ` Houder
@ 2019-03-25 13:35         ` Vesa P.
  1 sibling, 0 replies; 10+ messages in thread
From: Vesa P. @ 2019-03-25 13:35 UTC (permalink / raw)
  To: cygwin

On Sat, 23 Mar 2019 at 10:33, Houder <houder@xs4all.nl> wrote:
> Compiled "hello.c" on my 32-bits setup of Cygwin ...
>
> @@ gcc -Wall -o hello-32 hello.c # prompt indicates 32-bits setup of Cygwin
>
> Ran it on my 64-bits setup of Cygwin ...
>
> 64-@@ ./hello-32 # prompt indicates 64-bits setup of Cygwin
>
> I got the same result as you did ... (same pop-up)
>
> .. even the output of "strace ./hello-32" is the same.
>
> Henri

Thanks, incorrect bitness was indeed the crux of the matter!  Problem solved.

Vesa

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

end of thread, other threads:[~2019-03-25 13:35 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-19 21:31 Problems with "Hello, World!" Vesa P.
2019-03-19 22:14 ` Thomas Wolff
2019-03-20  3:15 ` L A Walsh
2019-03-20  3:33 ` Brian Inglis
2019-03-22 14:25   ` Vesa P.
2019-03-22 18:58     ` Achim Gratz
2019-03-23  8:17     ` Houder
2019-03-23  8:33       ` Houder
2019-03-23  8:52         ` Houder
2019-03-25 13:35         ` Vesa P.

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