Delivery Error: check your mail delivery issues.

2018-10-13 Thread Postmaster
Message is from trusted source. Administrator IT Messages Bounce Error Notification � This is a system notification for cygwin@cygwin.com Email Administrator. Hello User,, cygwin@cygwin.com Mail Server is experience difficulty in delivering

Re: Fun with cp -R error when both foo and foo.exe exist

2018-10-09 Thread Dan Kegel
Right. My thinking was that the auto-suffix probing makes sense when running or checking for a program, but not when creating a program. (I could be wrong, and I imagine if I actually compiled and tested the hack I'd find out pretty quickly if it was at least obviously wrong.) O_BINARY doesn't n

Re: Fun with cp -R error when both foo and foo.exe exist

2018-10-09 Thread Eric Blake
On 10/9/18 11:21 AM, Dan Kegel wrote: On Tue, Oct 9, 2018 at 5:03 AM Eric Blake wrote: whether someone patches the cygwin dll or cp, it seems like some rather hairy code for what is normally a rare corner case, so it probably won't happen unless someone actually contributes a patch. Right. H

Re: Fun with cp -R error when both foo and foo.exe exist

2018-10-09 Thread Dan Kegel
On Tue, Oct 9, 2018 at 5:03 AM Eric Blake wrote: > whether someone patches the cygwin dll or cp, it seems like some rather > hairy code for what is normally a rare corner case, so it probably won't > happen unless someone actually contributes a patch. Right. Here's a completely untested guess pa

Re: Fun with cp -R error when both foo and foo.exe exist

2018-10-09 Thread Eric Blake
On 10/9/18 1:22 AM, Marco Atzeri wrote: Am 08.10.2018 um 23:24 schrieb Dan Kegel: A nice workaround might be for the cygwin version of cp could arrange to wait to create .exe files until after any potential non-suffixed file has been processed... not sure how easy that would be. Apologies if

Re: Fun with cp -R error when both foo and foo.exe exist

2018-10-08 Thread Marco Atzeri
Am 08.10.2018 um 23:24 schrieb Dan Kegel: A nice workaround might be for the cygwin version of cp could arrange to wait to create .exe files until after any potential non-suffixed file has been processed... not sure how easy that would be. Apologies if this has already been discussed. - Dan

Fun with cp -R error when both foo and foo.exe exist

2018-10-08 Thread Dan Kegel
Everybody who uses cygwin knows that if foo and foo.exe exist, you can do cp foo bar cp foo.exe bar.exe but not cp foo.exe bar.exe cp foo bar because of the unavoidable magic in cygwin that lets you execute foo when you really mean foo.exe. Well, it just bit me again during a buildbot try

Re: error in opengrad software

2018-09-25 Thread Michael Haubenwallner
Hi, On 09/25/2018 08:53 AM, nithan santiago wrote: > Hi, > i am using a Dell inspiron 5368 model with 7th gen i3 processor with 4 gb > ram and runs in windows 10 64-bit version. I am getting an error in running > this program(OpenGrADS), it shows that "couldn't compute FAS

error in opengrad software

2018-09-24 Thread nithan santiago
Hi, i am using a Dell inspiron 5368 model with 7th gen i3 processor with 4 gb ram and runs in windows 10 64-bit version. I am getting an error in running this program(OpenGrADS), it shows that "couldn't compute FAST_CWD pointer", if u have solution please reply as soon as possible,

Re: John The Ripper Error

2018-09-08 Thread Marco Atzeri
Am 08.09.2018 um 21:59 schrieb Alexander Weiß: Hello, i have tested John The Ripper for Windows and with the zip2john.exe i got this error in the screenshot: http://prntscr.com/ks5cwe Please help me. Best regards from Germany, Alexander Weiß https://cygwin.com/faq.html#faq.using.fixing

John The Ripper Error

2018-09-08 Thread Alexander Weiß
Hello, i have tested John The Ripper for Windows and with the zip2john.exe i got this error in the screenshot: http://prntscr.com/ks5cwe Please help me. Best regards from Germany, Alexander Weiß -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com

Re: RCS Error report - Couldn't compute FAST_CWD pointer

2018-09-07 Thread Marco Atzeri
Am 07.09.2018 um 15:04 schrieb Theresa Campbell: . 0 [main] diff 620 find_fast_cwd: WARNING: Couldn't compute FAST_CWD pointer. Please report this problem to the public mailing list cygwin@cygwin.com done Kindest Regards, Theresa Campbell https://cygwin.com/faq.html#faq.using.fixing

RCS Error report - Couldn't compute FAST_CWD pointer

2018-09-07 Thread Theresa Campbell
>> . 0 [main] diff 620 find_fast_cwd: WARNING: Couldn't compute FAST_CWD pointer. Please report this problem to the public mailing list cygwin@cygwin.com done Kindest Regards, Theresa Campbell For the BEST response from AUC support, please send e-mails to supp...@admins.com

Re: error in "cygpath" behavior

2018-09-01 Thread Thomas Wolff
Am 31.08.2018 um 22:05 schrieb Eric Blake: On 08/31/2018 02:48 PM, cyg Simple wrote: Don't forget the possibility that '..' points to a symlink which Windows will not understand. $ mkdir -p /foo/baz $ ln -s /foo /bar $ cd /bar/baz $ cygpath -w .. Except .. never points to a symlink.  It alw

Re: error in "cygpath" behavior

2018-08-31 Thread Brian Inglis
On 2018-08-31 16:34, Steven Penny wrote: > On Fri, 31 Aug 2018 10:57:34, Corinna Vinschen wrote: >> Long-standing behaviour.  ".." in Cygwin and ".." in Windows can totally >> disagree.  The path is always convert to absolute at this point in favor >> of correct output.  There's also the additional

Re: error in "cygpath" behavior

2018-08-31 Thread Achim Gratz
Steven Penny writes: > I am not understanding - it appears that "dot-dot" (..) is well defined by > POSIX: […] > so it would appears that ".." would be an acceptable return value in any case. Except that you've asked for a Windows path, not POSIX, and you have no idea what Windows' idea of the CWD

Re: error in "cygpath" behavior

2018-08-31 Thread Steven Penny
On Fri, 31 Aug 2018 10:57:34, Corinna Vinschen wrote: Long-standing behaviour. ".." in Cygwin and ".." in Windows can totally disagree. The path is always convert to absolute at this point in favor of correct output. There's also the additional restriction (though not in this case) that relati

Re: error in "cygpath" behavior

2018-08-31 Thread Eric Blake
On 08/31/2018 02:48 PM, cyg Simple wrote: Don't forget the possibility that '..' points to a symlink which Windows will not understand. $ mkdir -p /foo/baz $ ln -s /foo /bar $ cd /bar/baz $ cygpath -w .. Except .. never points to a symlink. It always points to the physical directory that c

Re: error in "cygpath" behavior

2018-08-31 Thread cyg Simple
On 8/31/2018 4:57 AM, Corinna Vinschen wrote: > On Aug 30 21:37, Steven Penny wrote: >> It is my understanding that given relative input, "cygpath" shall produce >> relative output unless given "-a" option. However I noticed a discrepancy. >> These >> are all correct: >> >>$ cygpath . >>.

Re: error in "cygpath" behavior

2018-08-31 Thread Corinna Vinschen
On Aug 30 21:37, Steven Penny wrote: > It is my understanding that given relative input, "cygpath" shall produce > relative output unless given "-a" option. However I noticed a discrepancy. > These > are all correct: > >$ cygpath . >. > >$ cygpath .. >.. > >$ cygpath -w . >

error in "cygpath" behavior

2018-08-30 Thread Steven Penny
It is my understanding that given relative input, "cygpath" shall produce relative output unless given "-a" option. However I noticed a discrepancy. These are all correct: $ cygpath . . $ cygpath .. .. $ cygpath -w . . This is not: $ cygpath -w .. C:\cygwin64\home\ -

Re: /usr/include/ssp/wchar.h:78:1: error: unknown type name ‘FILE’ (during cygport package build)

2018-08-16 Thread waterlan
Ken Brown schreef op 2018-08-16 20:20: On 8/16/2018 2:11 PM, waterlan wrote: Ken Brown schreef op 2018-05-14 14:35: This is a newlib issue that has been fixed: https://cygwin.com/git/gitweb.cgi?p=newlib-cygwin.git;a=commitdiff;h=829820af6e5bccefe93485023e93821807fb99b8;hp=e494b560350cabef9412

Re: /usr/include/ssp/wchar.h:78:1: error: unknown type name ‘FILE’ (during cygport package build)

2018-08-16 Thread Ken Brown
-I/usr/include -DDEBUG=0 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DUNIX -DWCD_USECURSES  -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED  -c wcwidth.c -o wcwidth.o In file included from /usr/include/ssp/wchar.h:5:0,   from /usr/include/wchar.h:336,   from wcwidth.c:62: /usr/inclu

Re: /usr/include/ssp/wchar.h:78:1: error: unknown type name ‘FILE’ (during cygport package build)

2018-08-16 Thread waterlan
-D_FILE_OFFSET_BITS=64 -DUNIX -DWCD_USECURSES -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED -c wcwidth.c -o wcwidth.o In file included from /usr/include/ssp/wchar.h:5:0, from /usr/include/wchar.h:336, from wcwidth.c:62: /usr/include/ssp/wchar.h:78:1: error: unknown ty

Re: Error

2018-08-02 Thread steve shepard
ygwin-ow...@cygwin.com on behalf of Andrey Repin Sent: Tuesday, July 31, 2018 1:11 PM To: Medina, Adela; cygwin@cygwin.com Subject: Re: Error Greetings, Medina, Adela! > 1 [main] make 1972 find_fast_cwd: WARNING: Couldn't compute FAST_CWD > pointer. Please report this problem to >

Re: WEST Error

2018-08-02 Thread Marco Atzeri
4 find_fast_cwd: WARNING: Couldn't compute FAST_CWD pointer. Please report this problem to and File "D:\Ph.D_Project\WEST\Tutorial\MyTuto\MyMeso\MyMesoCalc\ANU1D135C10M\run.py", line 84, in os.remove(r"./process/helsol") WindowsError: [Error 2] The system can

WEST Error

2018-08-02 Thread Somphol Chiwamongkhonkarn
Please report this problem to and File "D:\Ph.D_Project\WEST\Tutorial\MyTuto\MyMeso\MyMesoCalc\ANU1D135C10M\run.py", line 84, in os.remove(r"./process/helsol") WindowsError: [Error 2] The system cannot find the file specified: './process/helsol' How i

Re: Error

2018-07-31 Thread Andrey Repin
for target `all' failed > make: *** [all] Error 127 This is a WARNING, not an error. And the wording of it indicates that you are using a very, very, very old Cygwin version. The probem was fixed over a decade ago. See http://cygwin.com/faq/faq.html#faq.using.fixing-find_fast_cwd-warnin

Error

2018-07-31 Thread Medina, Adela
1 [main] make 1972 find_fast_cwd: WARNING: Couldn't compute FAST_CWD pointer. Please report this problem to the public mailing list cygwin@cygwin.com cd submodules && make all make: /bin/sh: Command not found Makefile:2: recipe for target `all' failed make: *** [all] Err

Re: binutils-2.29-1 Dwarf Error

2018-07-26 Thread Marco Atzeri
Am 25.07.2018 um 15:26 schrieb Marco Atzeri: Jon, just noted the "Dwarf Error" is back for i686 .. $ nm -l a.exe | grep Dwarf nm: Dwarf Error: Could not find abbrev number 45. The main issue I have is not the emission of the Error, that seems limited to just 1 per shared lib, bu

binutils-2.29-1 Dwarf Error

2018-07-25 Thread Marco Atzeri
Jon, just noted the "Dwarf Error" is back for i686 https://sourceware.org/ml/cygwin/2017-07/msg00053.html $ cat getcwd.c #include #include int main () { char buf[PATH_MAX]; getcwd (buf, PATH_MAX); } $ gcc getcwd.c $ nm -l a.exe | grep Dwarf nm: Dwarf Error: Could not f

Re: Error when installing cygwin software

2018-07-24 Thread Marco Atzeri
Am 24.07.2018 um 13:39 schrieb Ngọc Anh Phạm: Hi,I'm install cygwin 2.35 and now I am getting the following error: Hi Phạm, there is no version 2.35 as last one is 2.10.0-1 So I suspect you are installing something else or a very old version, or you are confusing the version fo cygwin

Error when installing cygwin software

2018-07-24 Thread Ngọc Anh Phạm
Hi,I'm install cygwin 2.35 and now I am getting the following error: + Bash 872 find_fast_cwd: WARNING: Couldn't compute FAST_CWD pointer. I am using windows 10 I tried reinstalling I tried againg uninstalling and installing in a different directory Can you give me a way to solve th

Re: clang-family: error after --help (inconsistent command line options)

2018-07-23 Thread Olivier FAURAX
0.1-2) show this error when calling, e.g., exe --help: : CommandLine Error: Option 'disable-symbolication' registered more than once! LLVM ERROR: inconsistency in registered CommandLine options - clang-check.exe - clang-format.exe - clang-import-test.exe - clang-offload-bundler.exe - c

Re: How can I troubleshoot this error: address space is already occupied?

2018-07-19 Thread Adam Dinwoodie
On Thu, 19 Jul 2018 at 19:38, Sam Habiel wrote: > A quick internet search didn't show me anything interesting. Any ideas > on how I can troubleshoot this? > > 1 [main] mumps 7644 child_info_fork::abort: address space needed > by 'cygz.dll' (0xB4) is already occupied Please try the advice

How can I troubleshoot this error: address space is already occupied?

2018-07-19 Thread Sam Habiel
A quick internet search didn't show me anything interesting. Any ideas on how I can troubleshoot this? 1 [main] mumps 7644 child_info_fork::abort: address space needed by 'cygz.dll' (0xB4) is already occupied --Sam -- Problem reports: http://cygwin.com/problems.html FAQ:

Re: Perl child_info_fork runtime error

2018-07-08 Thread Ulli Horlacher
To resume my mail: On Wed 2018-05-30 (12:57), Ulli Horlacher wrote: > > One of my Perl programs produces strange runtime errors on a Windows 7 > system (CYGWIN_NT-6.1 32bit) of my colleague: > > 0 [main] perl 4232 child_info_fork::abort: address space needed >by 'Encode.dll' (0x37

Re: Error in PS2 Classic GUI

2018-07-08 Thread Doug Henderson
On 8 July 2018 at 07:24, Qaiser Farooq wrote: > When i tried to encrypt WWE smack down here comes the pain ps2 game 4.4gb > it showed me this error "invalid number of arguments for encryption" > > Please help You may need to quote any file name that contains spaces.. H

Re: Error in PS2 Classic GUI

2018-07-08 Thread Brian Inglis
On 2018-07-08 09:42, Marco Atzeri wrote: > Am 08.07.2018 um 15:24 schrieb Qaiser Farooq: >> When i tried to encrypt WWE smack down here comes the pain ps2 game 4.4gb >> it showed me this error "invalid number of arguments for encryption" >> >> Please help &g

Re: Error in PS2 Classic GUI

2018-07-08 Thread Marco Atzeri
Am 08.07.2018 um 15:24 schrieb Qaiser Farooq: When i tried to encrypt WWE smack down here comes the pain ps2 game 4.4gb it showed me this error "invalid number of arguments for encryption" Please help please help us to help you. From your mail we have no clue of what you are doin

Error in PS2 Classic GUI

2018-07-08 Thread Qaiser Farooq
When i tried to encrypt WWE smack down here comes the pain ps2 game 4.4gb it showed me this error "invalid number of arguments for encryption" Please help -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation:

Re: linker error with gcc flag -mfunction-return=thunk

2018-06-25 Thread Corinna Vinschen
t; > The compiler used is gcc-7.3.0 with binutils-2.29.1.20171006 (current), > > > and the easiest test case here is: > > > > > > $ echo 'int main() { return 0; }' > conftest.c > > > $ gcc -mfunction-return=thunk conftest.c > > > /tmp/cc

Re: linker error with gcc flag -mfunction-return=thunk

2018-06-25 Thread Corinna Vinschen
t; > > $ echo 'int main() { return 0; }' > conftest.c > > $ gcc -mfunction-return=thunk conftest.c > > /tmp/ccv1Ird0.o:conftest.c:(.text+0x1a): relocation truncated to fit: > > R_X86_64_32S against `.text' > > collect2: error: ld returned 1 exit status > &

Re: linker error with gcc flag -mfunction-return=thunk

2018-06-25 Thread Corinna Vinschen
conftest.c > /tmp/ccv1Ird0.o:conftest.c:(.text+0x1a): relocation truncated to fit: > R_X86_64_32S against `.text' > collect2: error: ld returned 1 exit status > > Not sure though where to finally report this problem: > * openssh, as they should do a link-test rather than comp

linker error with gcc flag -mfunction-return=thunk

2018-06-25 Thread Michael Haubenwallner
ompiler used is gcc-7.3.0 with binutils-2.29.1.20171006 (current), and the easiest test case here is: $ echo 'int main() { return 0; }' > conftest.c $ gcc -mfunction-return=thunk conftest.c /tmp/ccv1Ird0.o:conftest.c:(.text+0x1a): relocation truncated to fit: R_X86_64_32S against

Re: unable to map cygSDL error

2018-06-22 Thread Ken Brown
figures out the underlying cause of the "unable to map" error for cygSDL*.dll, my only suggestion is to try to work around the problem as I did for gimp: avoid using SDL. In your case, I think SDL is brought in via the package libwx_gtk3u3.0_0. If you look at the source for that packa

Re: unable to map cygSDL error

2018-06-22 Thread massimiliano
. > > Until someone figures out the underlying cause of the "unable to map" > error for cygSDL*.dll, my only suggestion is to try to work around the > problem as I did for gimp: avoid using SDL. In your case, I think SDL > is brought in via the package libwx_gtk3u3.0_0. If y

Re: unable to map cygSDL error

2018-06-15 Thread Ken Brown
if you can help me solve the problem. Until someone figures out the underlying cause of the "unable to map" error for cygSDL*.dll, my only suggestion is to try to work around the problem as I did for gimp: avoid using SDL. In your case, I think SDL is brought in via the package libwx

Re: Perl child_info_fork runtime error

2018-06-06 Thread Ulli Horlacher
On Wed 2018-06-06 (17:49), Marco Atzeri wrote: > >> No, it's most likely (or should be, anyway) an XS library for the Encode > >> module of Perl. The address it gets loaded to is awfully low, so it's > >> either BLODA or you're using another library that's occupying the reabse > >> space for this

Re: Perl child_info_fork runtime error

2018-06-06 Thread Marco Atzeri
On 6/6/2018 5:31 PM, Ulli Horlacher wrote: On Mon 2018-06-04 (21:24), Achim Gratz wrote: Ulli Horlacher writes: No, it's most likely (or should be, anyway) an XS library for the Encode module of Perl. The address it gets loaded to is awfully low, so it's either BLODA or you're using another

Re: Perl child_info_fork runtime error

2018-06-06 Thread Ulli Horlacher
On Mon 2018-06-04 (21:24), Achim Gratz wrote: > Ulli Horlacher writes: > > > /client/bin is a directory which I have created. > > It should not collide with anything. > > So what's in there, is in PATH etc. pp. In /client/bin are my own programs, mostly Perl scripts and yes, it is in $PATH. >

Re: Perl child_info_fork runtime error

2018-06-04 Thread Achim Gratz
Ulli Horlacher writes: > /client/bin is a directory which I have created. > It should not collide with anything. So what's in there, is in PATH etc. pp. > The problem is: > > [main] perl 4232 child_info_fork::abort: address space needed by 'Encode.dll' > (0x37) is already occupied > > Encode

Re: Perl child_info_fork runtime error

2018-06-04 Thread Ulli Horlacher
On Wed 2018-05-30 (21:56), Achim Gratz wrote: > Ulli Horlacher writes: > > > Line 106 in /client/bin/fexsend is: > > That path looks suspiciously like something not properly packaged for > Cygwin. If so, it may use DLL that are not rebased and collide with > Cygwin's. /client/bin is a directory

Re: Perl child_info_fork runtime error

2018-05-30 Thread Achim Gratz
Ulli Horlacher writes: > Line 106 in /client/bin/fexsend is: That path looks suspiciously like something not properly packaged for Cygwin. If so, it may use DLL that are not rebased and collide with Cygwin's. Regards, Achim. -- +<[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]

Perl child_info_fork runtime error

2018-05-30 Thread Ulli Horlacher
rt: address space needed by 'Encode.dll' (0x37) is already occupied Can't fork, trying again in 5 seconds at /client/bin/fexsend line 106. I have never seen such an error before, neither with UNIX, nor with cygwin. I cannot reproduce this error on my Windows (7 and 8, 32 a

Re: httpd/sshd will not start due to "failed to create proxy mutex" error

2018-05-27 Thread sin_vraal
I ended up having a similar problem with mod_rewrite. tapping in, in the event someone else needs the assist. >in httpd.conf: LoadModule rewrite_module modules/mod_rewrite.so >error_log: Function not implemented: AH00023: Couldn't create the rewrite-map mutex I solved with "Mutex flock:/etc/htt

Re: ERROR: There was a serious problem creating a privileged user.

2018-05-27 Thread Nuzhna Pomoshch via cygwin
> *** Info: password for the installed services which use (or will soon use) >>>> *** Info: the 'host+cyg_server' account. >>>> passwd: unknown user host+cyg_server >>>> *** Warning: Setting password expiry for user 'host+cyg_server' fa

Re: ERROR: There was a serious problem creating a privileged user.

2018-05-22 Thread Brian Inglis
cyg_server' account. >>> passwd: unknown user host+cyg_server >>> *** Warning: Setting password expiry for user 'host+cyg_server' failed! >>> *** Warning: Please check that password never expires or set it ot your >>> needs. >>> No user or

Re: ERROR: There was a serious problem creating a privileged user.

2018-05-22 Thread Nuzhna Pomoshch via cygwin
nown user host+cyg_server > > *** Warning: Setting password expiry for user 'host+cyg_server' failed! > > *** Warning: Please check that password never expires or set it ot your > > needs. > > No user or group 'host+cyg_server known. > > *** Warning: A

Re: Error using git-svn (module List::Util: No such process at /usr/share/perl5/5.26/XSLoader.pm line 96)

2018-05-22 Thread Achim Gratz
Ivan Garcia Sainz-Aja writes: > I fixed my problem with git-svn downgrading perl-Scalar-List-Utils to > version 1.49 (instead of 1.50) from here > > http://mirrors.kernel.org/sourceware/cygwin/x86/release/ > perl-Scalar-List-Utils/ > > I'm attaching the file cygcheck.out This doesn't show the mo

Re: Error using git-svn (module List::Util: No such process at /usr/share/perl5/5.26/XSLoader.pm line 96)

2018-05-22 Thread Ivan Garcia Sainz-Aja
slash\bin\cygfontenc-1.dll - os=4.0 img=1.0 sys=4.0 "cygfontenc-1.dll" v0.0 ts=2012-03-12 07:21 40k 2018/05/22 C:\Users\IGSAIN~1\DOCUME~1\MOBAXT~1\slash\bin\cygform-8.dll - os=4.0 img=1.0 sys=4.0 "cygform-8.dll" v0.0 ts=2009-03-01 07:32 5

Re: Error using git-svn (module List::Util: No such process at /usr/share/perl5/5.26/XSLoader.pm line 96)

2018-05-22 Thread Adam Dinwoodie
On Tue, 22 May 2018 at 09:35, Ivan Garcia Sainz-Aja wrote: > Hi all, > I'm getting the following error using git-svn (I think the only change I > made was that I updated subversion) > ➤ git svn rebase > Can't load '/usr/lib/perl5/vendor_perl/5.26/i686-cygwi

Error using git-svn (module List::Util: No such process at /usr/share/perl5/5.26/XSLoader.pm line 96)

2018-05-22 Thread Ivan Garcia Sainz-Aja
Hi all, I'm getting the following error using git-svn (I think the only change I made was that I updated subversion) ➤ git svn rebase Can't load '/usr/lib/perl5/vendor_perl/5.26/i686-cygwin-threads-64int/auto/List/Util/Util.dll' for module List::Util: No such process at /

Re: ERROR: There was a serious problem creating a privileged user.

2018-05-21 Thread Marco Atzeri
g_server' account. passwd: unknown user host+cyg_server *** Warning: Setting password expiry for user 'host+cyg_server' failed! *** Warning: Please check that password never expires or set it ot your needs. No user or group 'host+cyg_server known. *** Warning: Assigning the appropria

ERROR: There was a serious problem creating a privileged user.

2018-05-21 Thread Nuzhna Pomoshch via cygwin
** Warning: Setting password expiry for user 'host+cyg_server' failed! *** Warning: Please check that password never expires or set it ot your needs. No user or group 'host+cyg_server known. *** Warning: Assigning the appropriate privileges to user 'host+cyg_server' failed! *

Re: /usr/include/ssp/wchar.h:78:1: error: unknown type name ‘FILE’ (during cygport package build)

2018-05-14 Thread Ken Brown
BUG=0 -D_LARGEFILE_SOURCE > -D_FILE_OFFSET_BITS=64 -DUNIX -DWCD_USECURSES -D_XOPEN_SOURCE > -D_XOPEN_SOURCE_EXTENDED -c wcwidth.c -o wcwidth.o > > In file included from /usr/include/ssp/wchar.h:5:0, > from /usr/include/wchar.h:336, > from wcw

Re: /usr/include/ssp/wchar.h:78:1: error: unknown type name ‘FILE’ (during cygport package build)

2018-05-13 Thread Achim Gratz
Hans-Bernhard Bröker writes: > That does look rather weird. Why would one write that instead of just > -D_FORTIFY_SOURCE=2 ? That's what cygport does and Yaakov said he'd copied it from Fedora. But yes, that _is_ unexpected and it did break stuff elsewehere. Regards, Achim. -- +<[Q+ Matrix-12

Re: /usr/include/ssp/wchar.h:78:1: error: unknown type name ‘FILE’ (during cygport package build)

2018-05-13 Thread Hans-Bernhard Bröker
$ gcc -D_FORTIFY_SOURCE=1 -fstack-protector-strong -c twchar.c -O2 -D_XOPEN_SOURCE In file included from /usr/include/ssp/wchar.h:5:0, from /usr/include/wchar.h:336, from twchar.c:1: /usr/include/ssp/wchar.h:78:1: error: unknown type name 'FILE'

/usr/include/ssp/wchar.h:78:1: error: unknown type name ‘FILE’ (during cygport package build)

2018-05-13 Thread waterlan
EXTENDED -c wcwidth.c -o wcwidth.o In file included from /usr/include/ssp/wchar.h:5:0, from /usr/include/wchar.h:336, from wcwidth.c:62: /usr/include/ssp/wchar.h:78:1: error: unknown type name 'FILE' __ssp_decl(wchar_t *, fgetws, (wchar_t *__restrict __buf, i

Re: SSHD error child_info_fork

2018-05-06 Thread Marco Atzeri
On 5/6/2018 3:35 PM, Tasslehoff Burrfoot wrote: Hi, I recently noticed a problem with sshd on one of my Windows 10 updated to the recent 1803 update. First of all I'm using cygwin x86 updated to the latest packages, during sshd startup I have no errors in the Windows Event Log using services.msc

SSHD error child_info_fork

2018-05-06 Thread Tasslehoff Burrfoot
same launching sshd deamon from console. I have no firewall blocking connections and the ssh client is connecting from a debian host on lan on the same subnet (no networking issues). When I try to connect to the cygwin sshd deamon I get this error: ssh_exchange_identification: read: Connectio

Error

2018-05-05 Thread Maxime M
This is very strange, I downloaded johntheripper from the official website and I get this error: 1 [main] john 10244 find_fast_cwd: WARNING: Couldn't compute FAST_CWD pointer. Please report this problem to the public mailing list cygwin@cygwin.com Cygwin was not installed on my pc. -- Pr

Re: i encountered this error while running the tool john the ripper on my laptop

2018-05-03 Thread Brian Inglis
On 2018-05-04 00:06, Nitishreddy Nani wrote: > 1 [main] john 10212 find_fast_cwd: WARNING: Couldn't compute FAST_CWD > pointer. Please report this problem to the public mailing list > cygwin@cygwin.com > please help me solving this This is just a warning to please upgrade Cygwin as explained at:

i encountered this error while running the tool john the ripper on my laptop

2018-05-03 Thread Nitishreddy Nani
1 [main] john 10212 find_fast_cwd: WARNING: Couldn't compute FAST_CWD pointer. Please report this problem to the public mailing list cygwin@cygwin.com please help me solving this -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentat

Re: Problem with Ocaml dllunix.so, flexdll error: cannot relocate, target is too far

2018-05-03 Thread Andy Li
Hi, On Thu, May 3, 2018 at 6:07 AM, David Conrad wrote: > > Cannot load required shared library dllunix. > Reason: /usr/lib/ocaml/stublibs/dllunix.so: flexdll error: cannot > relocate RELOC_REL32, target is too far: 0xfffc12f78b5f > 0x12f78b5f. This is a known issue. A wo

clang-family: error after --help (inconsistent command line options)

2018-05-01 Thread Jannick
Hello, I can confirm the bug reported in early April (https://sourceware.org/ml/cygwin/2018-04/msg00021.html, author cc'ed): The following friends of the clang-... application family (5.0.1-2) show this error when calling, e.g., exe --help: : CommandLine Error: Option 'disable-sym

Re: Error Report

2018-04-21 Thread Brian Inglis
On 2018-04-21 17:58, Henrique Oliveira wrote: > I'm found this problem with instructions to send you guys on top, not sure > what's wrong but happy to comply, let me know what else info you need. > Microsoft Windows [Version 10.0.16299.371] > (c) 2017 Microsoft Corporation. All rights reserved. > C

Error Report

2018-04-21 Thread Henrique Oliveira
Hi! I'm found this problem with instructions to send you guys on top, not sure what's wrong but happy to comply, let me know what else info you need. Microsoft Windows [Version 10.0.16299.371] (c) 2017 Microsoft Corporation. All rights reserved. C:\Users\Tingao>ls -l 0 [main] ls 15288 fin

Re: Error no 2 ,3

2018-04-21 Thread Brian Inglis
On 2018-04-21 01:21, Geetakshi Kandpal wrote: > 1. I've already installed cygwin and NS2 software successfully but as soon > as I give the command 'startx' in the cygwin shell , I get error no 2 and 3. > (Unable to connect to X server.) Install a local X server by select

Error no 2 ,3

2018-04-21 Thread Geetakshi Kandpal
1.I've already installed cygwin and NS2 software successfully but as soon as I give the command 'startx' in the cygwin shell , I get error no 2 and 3. (Unable to connect to X server.) 2.    Also at the beginning it says 'couldn't compute FAST_CWD point. Please r

Re: rsync error | Couldn't compute FAST_CWD pointer.

2018-04-20 Thread steve shepard
For what it's worth, I ran into this problem with support on a FPGA project; the update info along with the link for the CygWin error: http://terasic.yubacollegecompsci.com/ [http://yubacollegecompsci.com/images/Steve.jpg1zA]<http://terasic.yubacollegecompsci.com/> Spring 2016 Tera

Re: rsync error | Couldn't compute FAST_CWD pointer.

2018-04-20 Thread Marco Atzeri
list cygwin@cygwin.com If you could help in resolving this issue would be helpful. Thanks, Amod It is a warning not an error. See FAQ https://cygwin.com/faq.html#faq.using.fixing-find_fast_cwd-warnings Please note that you should highlight the issue to DeltaCopy as they are using an old v

rsync error | Couldn't compute FAST_CWD pointer.

2018-04-20 Thread Amod Raje
Hello, I am trying to deploy DeltaCopy which uses rsync on windows for backup. I am facing below issue when client tries to connect to server. Executing: rsync.exe -v -rlt -z --chmod=a=rw,Da+x --delete "/cygdrive/C/Testing/Defects_Report/

Re: croos compiler error

2018-04-05 Thread Mark Geisert
s with "cc: error: spawn: No such file or directory". See attached file. I have tried to install/get a spawn package with the setup-x86_64 command. There is no spawn package. I cannot get any further on the build. I have looked everywhere and no use. Let me know what I am missing or

croos compiler error

2018-04-05 Thread Mark A. Engel
cygwin64: I have been trying to build the cross compiler tool for my Windows 10. I have installed cygwin64 and is working well. I downloaded the crosstool-0.43 version. I have executed "sh demo-x86_64.sh" and after a bout 10 minutes of building the build fails with "cc: e

Re: report (error)

2018-04-04 Thread Brian Inglis
On 2018-04-04 20:52, LUIS MORA via cygwin wrote: > i have a problema with Python > 0 [main] WIN32wgrib2 1424 find_fast_cwd: WARNING: Couldn't compute FAST_CWD > pointer. Please report this problem to the public mailing list > cygwin@cygwin.com > 0 [main] WIN32wgrib2 3804 find_fast_cwd: WARNING: Co

report (error)

2018-04-04 Thread LUIS MORA via cygwin
Good night i have a problema with Python 0 [main] WIN32wgrib2 1424 find_fast_cwd: WARNING: Couldn't compute FAST_CWD pointer.  Please report this problem to the public mailing list cygwin@cygwin.com 0 [main] WIN32wgrib2 3804 find_fast_cwd: WARNING: Couldn't compute FAST_CWD pointer.  Please repor

Re: Hexiom Solver Error: Anchor Not Found

2018-04-04 Thread Daniel Hartmeier
On Wed, Apr 04, 2018 at 06:48:07PM +0800, SY Tang wrote: > However, try as I might, I am unable to get it to work, I first got an > error which says: *"WARNING: Couldn't compute FAST_CWD pointer"*, which I > believe i self-fixed by running in Windows XP compatibility mode

Re: Hexiom Solver Error: Anchor Not Found

2018-04-04 Thread David Stacey
On 04/04/18 11:48, SY Tang wrote: I recently downloaded your Hexiom solver from your webpage out of interest (and desperation after failing hundreds of times at the 6x6 size puzzle... :(). However, try as I might, I am unable to get it to work, I first got an error which says: *"WA

Hexiom Solver Error: Anchor Not Found

2018-04-04 Thread SY Tang
Hello, I recently downloaded your Hexiom solver from your webpage out of interest (and desperation after failing hundreds of times at the 6x6 size puzzle... :(). However, try as I might, I am unable to get it to work, I first got an error which says: *"WARNING: Couldn't compute FAST_C

Re: Error in Cygwin 32 Bit in WIN 10 OS 64bit

2018-03-29 Thread Marco Atzeri
On 29/03/2018 08:02, SRI HARSHA Bulusu wrote: Hi, While running the build of software,i have encountered the following error *[main] make 12276 E:\tools\cygwin\bin\make.exe: *** fatal error - couldn't allocate heap, Win32 error 487, base 0x112, top 0x131, reserve_size 20

Re: Error in Cygwin 32 Bit in WIN 10 OS 64bit

2018-03-29 Thread Brian Inglis
On 2018-03-29 09:02, SRI HARSHA Bulusu wrote: > While running the build of software,i have encountered the following error > " > *[main] make 12276 E:\tools\cygwin\bin\make.exe: *** fatal error - couldn't > allocate heap, Win32 error 487, base 0x112, top 0x131,

Error in Cygwin 32 Bit in WIN 10 OS 64bit

2018-03-29 Thread SRI HARSHA Bulusu
Hi, While running the build of software,i have encountered the following error " *[main] make 12276 E:\tools\cygwin\bin\make.exe: *** fatal error - couldn't allocate heap, Win32 error 487, base 0x112, top 0x131, reserve_size 2027520, allocsize 2031616, page_const 4096* *

Re: Error in Delta Copy

2018-03-26 Thread Adam Dinwoodie
On 26 March 2018 at 12:45, Alfonso Querol wrote: > Hello, > > I'm using DeltaCopy V1.4 in a Windows Server 2012R2 Essentials and I have > the next error although the copy goes aparently well. > > "Executing: rsync.exe -v -rlt -z --chmod=a=rw,Da+x --delete

Error in Delta Copy

2018-03-26 Thread Alfonso Querol
Hello, I'm using DeltaCopy V1.4 in a Windows Server 2012R2 Essentials and I have the next error although the copy goes aparently well. "Executing: rsync.exe -v -rlt -z --chmod=a=rw,Da+x --delete "/cygdrive/C/x/xx/" "xxx.xxx.xxx.xx::ServMnDatos/

Re: Error in Generating XWin

2018-03-24 Thread Marco Atzeri
On 24/03/2018 06:51, Roshan Jha wrote: Respected Sir, I am facing problem in starting XWin using (Startx). It shows some fatal error such as not connecting to X-server, or resource not available, or connection refused. Dear Roshan, you are a bit vague. You need to be more precise on what you

Error in Generating XWin

2018-03-23 Thread Roshan Jha
Respected Sir, I am facing problem in starting XWin using (Startx). It shows some fatal error such as not connecting to X-server, or resource not available, or connection refused. Along with it, "1 [main] bash 1744 find_fast_cwd: WARNING: Couldn't compute FAST_CWD pointer."

Re: error

2018-03-23 Thread Marco Atzeri
On 23/03/2018 22:10, Arthur Philippi Bianco wrote: 1 [main] sh 7968 find_fast_cwd: WARNING: Couldn't compute FAST_CWD pointer. Please report this problem to the public mailing list cygwin@cygwin.com Hi Arthur, we assume you are using a software that includes an old version of cygwin1.dll sha

error

2018-03-23 Thread Arthur Philippi Bianco
1 [main] sh 7968 find_fast_cwd: WARNING: Couldn't compute FAST_CWD pointer. Please report this problem to the public mailing list cygwin@cygwin.com -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/doc

Re: error report

2018-03-23 Thread David Stacey
On 22/03/18 21:26, philipkibble.btinternet.com via cygwin wrote: 2018-03-22 20:47:34,174 - astrotortilla - INFO - Waiting for scope to stop 2018-03-22 20:47:34,174 - astrotortilla - INFO - Connecting to camera... 2018-03-22 20:47:34,174 - astrotortilla - INFO - Exposing: 5.00 seconds 2018-03-2

<    1   2   3   4   5   6   7   8   9   10   >