Re: Unable to execute Cygwin application within UDF format

2022-05-28 Thread Takashi Yano
On Sat, 28 May 2022 09:22:12 -0400 Ken Brown wrote: > On 5/27/2022 8:36 AM, Takashi Yano wrote: > > diff --git a/winsup/cygwin/cygheap.cc b/winsup/cygwin/cygheap.cc > > index 01b49468e..34c9e2bc7 100644 > > --- a/winsup/cygwin/cygheap.cc > > +++ b/winsup/cygwin/cygheap.cc > > @@ -183,6 +183,11 @@

Re: Unable to execute Cygwin application within UDF format

2022-05-28 Thread Ken Brown
On 5/27/2022 8:36 AM, Takashi Yano wrote: diff --git a/winsup/cygwin/cygheap.cc b/winsup/cygwin/cygheap.cc index 01b49468e..34c9e2bc7 100644 --- a/winsup/cygwin/cygheap.cc +++ b/winsup/cygwin/cygheap.cc @@ -183,6 +183,11 @@ init_cygheap::init_installation_root () if (p) p =

Re: Unable to execute Cygwin application within UDF format

2022-05-27 Thread Sam Edge
On 27/05/2022 10:18, Takashi Yano wrote: On Fri, 27 May 2022 16:47:09 +0800 Sam Lin wrote: I have also successfully executed that is to move cygwin1.dll to the root directory to execute. Will cygwin1.dll be supported to execute in UDF format in the future? As I wrote earlier, it doesn't

Re: Unable to execute Cygwin application within UDF format

2022-05-27 Thread Takashi Yano
On Fri, 27 May 2022 21:28:13 +0900 Takashi Yano wrote: > On Fri, 27 May 2022 19:51:23 +0900 > Takashi Yano wrote: > > diff --git a/winsup/cygwin/cygheap.cc b/winsup/cygwin/cygheap.cc > > index 01b49468e..c4031b919 100644 > > --- a/winsup/cygwin/cygheap.cc > > +++ b/winsup/cygwin/cygheap.cc > > @@

Re: Unable to execute Cygwin application within UDF format

2022-05-27 Thread Takashi Yano
On Fri, 27 May 2022 19:51:23 +0900 Takashi Yano wrote: > diff --git a/winsup/cygwin/cygheap.cc b/winsup/cygwin/cygheap.cc > index 01b49468e..c4031b919 100644 > --- a/winsup/cygwin/cygheap.cc > +++ b/winsup/cygwin/cygheap.cc > @@ -183,6 +183,8 @@ init_cygheap::init_installation_root () > if

Re: Unable to execute Cygwin application within UDF format

2022-05-27 Thread Takashi Yano
On Fri, 27 May 2022 18:18:49 +0900 Takashi Yano wrote: > On Fri, 27 May 2022 16:47:09 +0800 > Sam Lin wrote: > > I have also successfully executed that is to move cygwin1.dll to the root > > directory to execute. > > > > Will cygwin1.dll be supported to execute in UDF format in the future? > >

Re: Unable to execute Cygwin application within UDF format

2022-05-27 Thread Takashi Yano
On Fri, 27 May 2022 16:47:09 +0800 Sam Lin wrote: > I have also successfully executed that is to move cygwin1.dll to the root > directory to execute. > > Will cygwin1.dll be supported to execute in UDF format in the future? As I wrote earlier, it doesn't matter that the file system is UDF.

Re: Unable to execute Cygwin application within UDF format

2022-05-27 Thread Sam Lin
Hi , I have also successfully executed that is to move cygwin1.dll to the root directory to execute. Will cygwin1.dll be supported to execute in UDF format in the future? Thanks, Sam Takashi Yano 於 2022年5月27日 週五 下午12:32寫道: > On Fri, 27 May 2022 11:36:27 +0800 > Sam Lin wrote: > > I will see

Re: Unable to execute Cygwin application within UDF format

2022-05-27 Thread Takashi Yano
On Fri, 27 May 2022 13:31:20 +0900 Takashi Yano wrote: > On Fri, 27 May 2022 11:36:27 +0800 > Sam Lin wrote: > > I will see the problem on WIN10 or WIN SERVER, the duplicate steps are as > > follows: > > > > 1. Write a simple code 'hello world' program and compiled the > > executable file

Re: Unable to execute Cygwin application within UDF format

2022-05-26 Thread Takashi Yano
On Fri, 27 May 2022 11:36:27 +0800 Sam Lin wrote: > I will see the problem on WIN10 or WIN SERVER, the duplicate steps are as > follows: > > 1. Write a simple code 'hello world' program and compiled the > executable file using GCC. > > // hello.c > #include > > int main() { >

Unable to execute Cygwin application within UDF format

2022-05-26 Thread Sam Lin
Hi , I will see the problem on WIN10 or WIN SERVER, the duplicate steps are as follows: 1. Write a simple code 'hello world' program and compiled the executable file using GCC. // hello.c #include int main() { printf("Hello World\n"); return 0; } $ gcc hello.c -o hello.exe 2.