Re: Computer Science

2024-10-15 Thread Eliot Moss via Cygwin
On 10/15/2024 6:38 PM, Greywolf via Cygwin wrote: On 2024-10-15 15:31, matthew patton via Cygwin wrote: Then again why does anyone care about IceWM? If you want an X11 it's hard not to suggest just going to WSL and be done with it. Lots of XClients already. Except that, unless I am mistaken,

I created a Japanese translation of Cygwin Setup using res/ja/res.rc without using Weblate...

2024-10-15 Thread 武田洋幸 via Cygwin
What should I do? -- 武田洋幸 ヽ(*´ー`*)ノ TAKEDA Hiroyuki -- Problem reports: https://cygwin.com/problems.html FAQ: https://cygwin.com/faq/ Documentation:https://cygwin.com/docs.html Unsubscribe info: https://cygwin.com/ml/#unsubscribe-simple

Re: Computer Science

2024-10-15 Thread Greywolf via Cygwin
On 2024-10-15 15:31, matthew patton via Cygwin wrote: Then again why does anyone care about IceWM? If you want an X11 it's hard not to suggest just going to WSL and be done with it. Lots of XClients already. Except that, unless I am mistaken, WSL runs in its own window and does not integrate

Re: Computer Science

2024-10-15 Thread matthew patton via Cygwin
> I've always wondered why software has maintainers not set forth by their > graduating universities. because a CompSci degree != competence in anything. Prove your mettle by picking up a useful package off the abandoned list (is this even current?) https://cygwin.com/cygwin-pkg-maint Personall

Computer Science

2024-10-15 Thread Jonathan Chapman-Moore via Cygwin
I've always wondered why software has maintainers not set forth by their graduating universities. I am a 2000 computer science graduate. With straight A's in prep school I disapprove of the lists on Cygwin As I would like to be a IceWM maintainer but not with every other stock boy in America wit

Re: fresh install, when I run a c++ program I made from a cygterm it logs out

2024-10-15 Thread Takashi Yano via Cygwin
On Tue, 15 Oct 2024 14:38:07 -0700 jeff wrote: > On 10/15/2024 14:34, Takashi Yano wrote: > > On Tue, 15 Oct 2024 13:09:12 -0700 > > jeff wrote: > >> /cygdrive/k/pw-crack/fred_john/run/cygwin1.dll > >> -rwxrwx---+ 1 jdeifik None 3492318 May 26  2019 > > The culprit of the problem is this old cygwin

Re: fresh install, when I run a c++ program I made from a cygterm it logs out

2024-10-15 Thread jeff via Cygwin
On 10/15/2024 14:34, Takashi Yano wrote: On Tue, 15 Oct 2024 13:09:12 -0700 jeff wrote: /cygdrive/k/pw-crack/fred_john/run/cygwin1.dll -rwxrwx---+ 1 jdeifik None 3492318 May 26  2019 The culprit of the problem is this old cygwin1.dll. Windows searches .dll in the current directory first. I und

Re: fresh install, when I run a c++ program I made from a cygterm it logs out

2024-10-15 Thread Takashi Yano via Cygwin
On Tue, 15 Oct 2024 13:09:12 -0700 jeff wrote: > /cygdrive/k/pw-crack/fred_john/run/cygwin1.dll > -rwxrwx---+ 1 jdeifik None 3492318 May 26  2019 The culprit of the problem is this old cygwin1.dll. Windows searches .dll in the current directory first. -- Takashi Yano -- Problem reports:

Re: fresh install, when I run a c++ program I made from a cygterm it logs out

2024-10-15 Thread jeff via Cygwin
On 10/15/2024 07:56, Kevin Schnitzius via Cygwin wrote: On Monday, October 14, 2024 at 05:19:27 PM EDT, jeff via Cygwin wrote: jdeifik@epyc-milan-64 /cygdrive/k $ testx one two thee My brother in Posix, For the love all that is sustainable, take . out of your path. Kevin "." is not in P

Re: fresh install, when I run a c++ program I made from a cygterm it logs out

2024-10-15 Thread jeff via Cygwin
On 10/15/2024 08:40, Takashi Yano wrote: On Wed, 16 Oct 2024 00:29:30 +0900 Takashi Yano wrote: IFS=':'; for a in ${PATH[@]}; do find $a -name cygwin1.dll -exec ls -l '{}' \; ; done Sorry, use IFS=':'; for a in ${PATH[@]}; do find $a -maxdepth 1 -name cygwin1.dll -exec ls -l '{}' \; ; done in

Re: fresh install, when I run a c++ program I made from a cygterm it logs out

2024-10-15 Thread jeff via Cygwin
On 10/15/2024 08:01, Takashi Yano wrote: On Tue, 15 Oct 2024 04:52:12 -0700 jeff wrote: On 10/15/2024 03:48, Takashi Yano wrote: On Mon, 14 Oct 2024 14:18:04 -0700 jeff via Cygwin wrote: I have a test case. this is test.c: #include int    main(int argc, char *argv[]) {     for (int i =

Re: fresh install, when I run a c++ program I made from a cygterm it logs out

2024-10-15 Thread Takashi Yano via Cygwin
On Wed, 16 Oct 2024 00:29:30 +0900 Takashi Yano wrote: > IFS=':'; for a in ${PATH[@]}; do find $a -name cygwin1.dll -exec ls -l '{}' > \; ; done Sorry, use IFS=':'; for a in ${PATH[@]}; do find $a -maxdepth 1 -name cygwin1.dll -exec ls -l '{}' \; ; done instead. -- Takashi Yano -- Problem r

Re: fresh install, when I run a c++ program I made from a cygterm it logs out

2024-10-15 Thread Takashi Yano via Cygwin
On Wed, 16 Oct 2024 00:01:44 +0900 Takashi Yano wrote: > On Tue, 15 Oct 2024 04:52:12 -0700 > jeff wrote: > > On 10/15/2024 03:48, Takashi Yano wrote: > > > On Mon, 14 Oct 2024 14:18:04 -0700 > > > jeff via Cygwin wrote: > > > > > >> I have a test case. > > >> > > >> this is test.c: > > >> #includ

Re: fresh install, when I run a c++ program I made from a cygterm it logs out

2024-10-15 Thread Takashi Yano via Cygwin
On Tue, 15 Oct 2024 04:52:12 -0700 jeff wrote: > On 10/15/2024 03:48, Takashi Yano wrote: > > On Mon, 14 Oct 2024 14:18:04 -0700 > > jeff via Cygwin wrote: > > > >> I have a test case. > >> > >> this is test.c: > >> #include > >> int    main(int argc, char *argv[]) > >> { > >>     for (int i =

Re: fresh install, when I run a c++ program I made from a cygterm it logs out

2024-10-15 Thread Kevin Schnitzius via Cygwin
On Monday, October 14, 2024 at 05:19:27 PM EDT, jeff via Cygwin wrote: > jdeifik@epyc-milan-64 /cygdrive/k > $ testx one two thee My brother in Posix, For the love all that is sustainable, take . out of your path. Kevin -- Problem reports: https://cygwin.com/problems.html FAQ:

Re: fresh install, when I run a c++ program I made from a cygterm it logs out

2024-10-15 Thread jeff via Cygwin
On 10/15/2024 03:48, Takashi Yano wrote: On Mon, 14 Oct 2024 14:18:04 -0700 jeff via Cygwin wrote: I have a test case. this is test.c: #include int    main(int argc, char *argv[]) {     for (int i = 0; i < argc; i++)     printf("%s\n", argv[i]); } compiled with gcc test.c -o testx.exe

Re: fresh install, when I run a c++ program I made from a cygterm it logs out

2024-10-15 Thread Takashi Yano via Cygwin
On Mon, 14 Oct 2024 14:18:04 -0700 jeff via Cygwin wrote: > I have a test case. > > this is test.c: > #include > int    main(int argc, char *argv[]) > { >     for (int i = 0; i < argc; i++) >     printf("%s\n", argv[i]); > } > > compiled with gcc test.c -o testx.exe > > when run from window