om*
>I realize this version of Eclipse is from 2012. Also which version of
>JAVA Runtime should I be using with Eclipse?
>Regards,
>Eric Staley
https://cygwin.com/faq.html#faq.using.fixing-find_fast_cwd-warnings
--
Problem reports: https://cygwin.com/problems.html
FAQ:
I am receiving these WARNING messages when trying to compile a NIOS II
C/C++ project with Eclipse Indigo IDE
* 2 [main] sh 7356 find_fast_cwd: WARNING: Couldn't compute FAST_CWD
pointer. Please report this problem tothe public mailing list
cygwin@cygwin.com*
I realize this version
ctions (POSIX says it's unspecified whether
> they're functions or macros) and cast the filedescriptor number to
> unsigned internally or something similar.
I thought about that as well, but I'd like to keep it as close to FreeBSD
as possible. In theory, it would be even better t
; (1L <<
>> ((n) % NFDBITS)))
>>
>> int-casting the sizeof and using 1UL instead of 1L fixes the problem:
> Thanks. I pushed a patch which will show up in the next Cygwin release:
> https://sourceware.org/git/?p=newlib-cygwin.git;a=commitdiff;h=5717262b8ecf
>
> Funn
# define FD_ISSET(n, p) ((p)->fds_bits[(n)/NFDBITS] & (1L <<
> ((n) % NFDBITS)))
>
> int-casting the sizeof and using 1UL instead of 1L fixes the problem:
Thanks. I pushed a patch which will show up in the next Cygwin release:
https://sourceware.org/git/?p=newlib
Example:
#include
void f(int X)
{
fd_set set;
FD_ZERO(&set);
FD_SET(X,&set);
FD_CLR(X+1,&set);
(void)FD_ISSET(X+2,&set);
}
causes
fds.c:7:2: warning: conversion to ‘long unsigned int’ from ‘int’ may
change the sign of the result [-Wsign-conversion]
FD_SET(X,&set);
^~
On Thu, 11 Jul 2019 11:51:09, Vipul P wrote:
Here is a sample script to invoke awk:
$ cat ./gawk_error.sh
#!/bin/sh
echo "This:is:a:colon:separated:line:%%%:" | awk '{
gsub("\\%", "%25", $0);
gsub("\\:", "%3A", $0);
print
}'
As others said, your invocation is not idiomatic AWK. Anywher
quot;, "%25", $0);
>> gsub("\\:", "%3A", $0);
>> print
>> }'
> gsub(regexp, replacement[, target])
> echo "This:is:a:colon:separated:line:%%%:" | awk '{
> gsub(/%/, "%25");
> gsub(/:/, "%3A");
>
; | awk '{
> gsub("\\%", "%25", $0);
> gsub("\\:", "%3A", $0);
> print
> }'
?
gsub(regexp, replacement[, target])
echo "This:is:a:colon:separated:line:%%%:" | awk '{
gsub(/%/, "%25");
Hello,
Here is a sample script to invoke awk:
$ cat ./gawk_error.sh
#!/bin/sh
echo "This:is:a:colon:separated:line:%%%:" | awk '{
gsub("\\%", "%25", $0);
gsub("\\:", "%3A", $0);
print
}'
If I invoke it with gawk 5.0.1
On 9/27/2017 5:00 AM, Siegmar Gross wrote:
Hi Ken,
thank you very much for your answer. Unfortunately, I still get the
same messages.
I've updated my system to the latest package versions and I use
Cygwin x86_64 on top of Windows 10. Unfortunately, I get some
warnings when a start &
Hi Ken,
thank you very much for your answer. Unfortunately, I still get the
same messages.
I've updated my system to the latest package versions and I use
Cygwin x86_64 on top of Windows 10. Unfortunately, I get some
warnings when a start "emacs".
PC26 cygwin64 26 emacs
On 9/26/2017 6:18 AM, Siegmar Gross wrote:
Hi,
I've updated my system to the latest package versions and I use
Cygwin x86_64 on top of Windows 10. Unfortunately, I get some
warnings when a start "emacs".
PC26 cygwin64 26 emacs Cygwin.bat
PC26 cygwin64 27 libGL error: Screen is
Hi,
I've updated my system to the latest package versions and I use
Cygwin x86_64 on top of Windows 10. Unfortunately, I get some
warnings when a start "emacs".
PC26 cygwin64 26 emacs Cygwin.bat
PC26 cygwin64 27 libGL error: Screen is not Windows-DRI capable
** (emacs:9112): WA
Hello Emily,
On Sat, Nov 9, 2013 at 6:43 AM, Emily Jackson wrote:
> I am getting a "This page is suspect" warning from my Norton toolbar in
> Firefox when I go to any cygwin.com page; the full report says that
> http://cygwin.com/setup-x86.exe is a virus.
>
> Emily
>
> --
> Problem reports:
I am getting a "This page is suspect" warning from my Norton toolbar in
Firefox when I go to any cygwin.com page; the full report says that
http://cygwin.com/setup-x86.exe is a virus.
Emily
--
Problem reports: http://cygwin.com/problems.html
FAQ: http://cygwin.com/faq/
Doc
On Sun, Nov 18, 2012 at 01:41:04PM +, Uday S Reddy wrote:
>On 10/1/2012 1:18 AM, Christopher Faylor wrote:
>> On Sat, Sep 29, 2012 at 11:53:06AM -0400, Ken Brown wrote:
>>> On 9/29/2012 11:33 AM, Daniel Corbe wrote:
If this were an environment that I had customized on my own I might
a
On 11/18/2012 8:41 AM, Uday S Reddy wrote:
On 10/1/2012 1:18 AM, Christopher Faylor wrote:
On Sat, Sep 29, 2012 at 11:53:06AM -0400, Ken Brown wrote:
On 9/29/2012 11:33 AM, Daniel Corbe wrote:
If this were an environment that I had customized on my own I might
agree with you; however, this is
On 10/1/2012 1:18 AM, Christopher Faylor wrote:
On Sat, Sep 29, 2012 at 11:53:06AM -0400, Ken Brown wrote:
On 9/29/2012 11:33 AM, Daniel Corbe wrote:
If this were an environment that I had customized on my own I might
agree with you; however, this is a standard toolkit that I'm working
with and
On Sat, Sep 29, 2012 at 11:53:06AM -0400, Ken Brown wrote:
>On 9/29/2012 11:33 AM, Daniel Corbe wrote:
>> If this were an environment that I had customized on my own I might
>> agree with you; however, this is a standard toolkit that I'm working
>> with and its functionally portable to every platfo
On 9/29/2012 11:33 AM, Daniel Corbe wrote:
If this were an environment that I had customized on my own I might
agree with you; however, this is a standard toolkit that I'm working
with and its functionally portable to every platform I've tried to use
so far except for cygwin.
And the reason is
Ken Brown writes:
> On 9/28/2012 7:49 PM, Daniel Corbe wrote:
>>
>> I'm using emacs-w3m to render HTML messages in gnus on windows by way of
>> the cygwin w3m port. It's working, except every time w3m gets run I'm
>> greeted by this warning message:
>>
>> "tty" option detected in CYGWIN environm
On 9/28/2012 7:49 PM, Daniel Corbe wrote:
I'm using emacs-w3m to render HTML messages in gnus on windows by way of
the cygwin w3m port. It's working, except every time w3m gets run I'm
greeted by this warning message:
"tty" option detected in CYGWIN environment variable.
CYGWIN=tty is no longe
On Fri, Sep 28, 2012 at 7:49 PM, Daniel Corbe wrote:
>
> I'm using emacs-w3m to render HTML messages in gnus on windows by way of
> the cygwin w3m port. It's working, except every time w3m gets run I'm
> greeted by this warning message:
>
> "tty" option detected in CYGWIN environment variable.
>
I'm using emacs-w3m to render HTML messages in gnus on windows by way of
the cygwin w3m port. It's working, except every time w3m gets run I'm
greeted by this warning message:
"tty" option detected in CYGWIN environment variable.
CYGWIN=tty is no longer supported. Please remove it from your
CYG
JonY wrote:
On 1/5/2012 02:31, Christian Franke wrote:
Both are new issues not seen in previous releases. If desired, I could
resend this report to mingw-w64 list.
Christian
Yes, please do that. This is an odd problem indeed, maybe a missing
attribute qualifier.
Done.
Christian
--
Proble
On 1/5/2012 02:31, Christian Franke wrote:
> When printf/scanf functions from MinGW runtime are selected via
> __USE_MINGW_ANSI_STDIO, then format string checking is broken. This only
> affects the C++ compiler:
>
>
> $ cygcheck -f /usr/bin/i686-w64-mingw32-g++
> mingw64-i686-gcc-g++-4.5.3-4
>
>
When printf/scanf functions from MinGW runtime are selected via
__USE_MINGW_ANSI_STDIO, then format string checking is broken. This only
affects the C++ compiler:
$ cygcheck -f /usr/bin/i686-w64-mingw32-g++
mingw64-i686-gcc-g++-4.5.3-4
$ cat testfmt.c
#define __USE_MINGW_ANSI_STDIO 1
#include
On 2:59 PM, Eric Blake wrote:
On 04/13/2011 09:10 PM, Ryan Johnson wrote:
Hi all,
A recent cygwin update has started spewing warnings such as the
following when I do tab completion on a path containing spaces:
$ cd ~/Home/Documents/Pcygwin warning:
MS-DOS style path detected: ~/Home
On 04/13/2011 09:10 PM, Ryan Johnson wrote:
> Hi all,
>
> A recent cygwin update has started spewing warnings such as the
> following when I do tab completion on a path containing spaces:
>> $ cd ~/Home/Documents/Pcygwin warning:
>> MS-DOS style path detected: ~/Home/Doc
On Wed, Apr 13, 2011 at 11:10:14PM -0400, Ryan Johnson wrote:
>Hi all,
>
>A recent cygwin update has started spewing warnings such as the
>following when I do tab completion on a path containing spaces:
>> $ cd ~/Home/Documents/Pcygwin warning:
>> MS-DOS style path detec
Hi all,
A recent cygwin update has started spewing warnings such as the
following when I do tab completion on a path containing spaces:
$ cd ~/Home/Documents/Pcygwin warning:
MS-DOS style path detected: ~/Home/Documents/PC\ reviews\ 2011
Preferred POSIX equivalent is: ~/Home/Documents/PC
On 1/1/2011 3:12 PM, Carl Lund wrote:
Hi--
On running Cygwin setup today, Norton Security complained about two files
tee.ext and date.exe
Norton used its SONAR (see below) to detect what it thought was a high
security risk. They claimed programs were behaving suspicious on my computer.
One thi
Hi--
On running Cygwin setup today, Norton Security complained about two files
tee.ext and date.exe
Norton used its SONAR (see below) to detect what it thought was a high
security risk. They claimed programs were behaving suspicious on my
computer. One thing that flagged these files was that
On Mar 23 08:53, Yaakov S wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA256
>
> /usr/include/asm/byteorder.h:36: warning: inline function
> '__constant_ntohs' declared but never defined
> /usr/include/asm/byteorder.h:35: warning: inline function
> '__constant_ntohl' declared but never def
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256
/usr/include/asm/byteorder.h:36: warning: inline function
'__constant_ntohs' declared but never defined
/usr/include/asm/byteorder.h:35: warning: inline function
'__constant_ntohl' declared but never defined
These are first prototyped extern inline,
Hi all,
I'm new to openoffice, i lanched ./Configure under cygwin, i have warnings :
Internal freetype2 does not support emboldening
Use of uninitialized value in substitution (s///) at ./oowintool line 66
can you help me
Thanks
--
Unsubscribe info: http://cygwin.com/ml/#unsubs
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
According to -VASKO- on 1/26/2007 5:54 AM:
>
> So, to whom I should report about these warnings to get skilled suggestions
> for fast fixing or confirmations for safely ignoring it? Anybody can really
> help ? Thanks a lot.
>
>
So, to whom I should report about these warnings to get skilled suggestions
for fast fixing or confirmations for safely ignoring it? Anybody can really
help ? Thanks a lot.
--
View this message in context:
http://www.nabble.com/gettext-0.14.5---some-warnings-on-compiling-tf3105340.html
m SVN. It required gettext 0.14.5. I just run 'make src' command
> and download from http://ftp.gnu.org/gnu automatically stared with
> curl. Don't ask me, why. Patch for l10nflist.c is trivial, I just
> change some arguments types to 'const char*' instead
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
According to Eric Blake on 1/25/2007 6:31 AM:
>
> Or for that matter, explain why you need to compile from source. Cygwin
> comes with gettext 0.15 precompiled, so that you need not worry about
> compiling it yourself.
>
I will add this - gettext 0
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
According to Eric Blake on 1/25/2007 6:28 AM:
> According to -VASKO- on 1/25/2007 6:22 AM:
>> ===
>> ./l10nflist.c: In function `_nl_make_l10nflist':
>> ./l10nflist.c:343: warning: assignm
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
According to -VASKO- on 1/25/2007 6:22 AM:
> ===
> ./l10nflist.c: In function `_nl_make_l10nflist':
> ./l10nflist.c:343: warning: assignment makes pointer from integer without a
> cast
Co
mpile':
regex.c:3211: warning: comparison is always true due to limited range of
data type
===
I get warnings listed above when compiling gettext 0.14.5-1. I found fix for
l10nflist.c here:
http://gcc.gnu.org/ml/gcc/2006-09/msg00646.
/automake/automake.html#Extending-aclocal
I am including below (for others) a bash script that I use to fix this (so
that one pays better attention to other warnings generated by aclocal).
The proper fix for this is to have the libsmi, libmcrypt, and cppunit
projects fix the macros.
# ! /bin/bash
Hi,
On Tue, Aug 23, 2005 at 08:26:30PM -0500, Herb Martin wrote:
> Would someone running Exim 4.50+ (especially 4.52) on CygWin and using
> Microsoft Outlook or Outlook Express with SPA (NTLM) authentication to a
> flat file please search your Exim reject log for a warning of the following
> type
Would someone running Exim 4.50+ (especially 4.52) on CygWin and using
Microsoft Outlook or Outlook Express with SPA (NTLM) authentication to a
flat file please search your Exim reject log for a warning of the following
type (all one line):
2005-08-23 18:36:53 spa authenticator failed for
cpe-70-1
On 5/12/05, Mikael <[EMAIL PROTECTED]> wrote:
> I guess presume NULL is a macro evaulting to 0 in windows.h and a typedef
> for (void *)0 in , or?
No. Not in . Since you are using that header file, I assume
you are using C++. In C++, NULL is 0, not (void *)0 as it is in C.
>
> Since I want to ha
Hello, I'm using Cygwin to develop programs using Win32 for the GUI and
lot's of posix stuff for the "back-end". Anyway, I noticed that if I include
in a file, I have to include after it if I want to
receive warnings for converting non-pointer types to NULL.
I guess pre
Dave Korn wrote:
http://www.cygwin.com/ml/cygwin/2004-09/msg01621.html
Whoops. Blush! Forgot to check the archives.. Thanks.
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
F
> -Original Message-
> From: cygwin-owner On Behalf Of Shankar Unni
> Sent: 13 December 2004 19:27
> Dr. Volker Zell wrote:
>
> > A new version of 'man' has been uploaded to a server near you.
> > man NEWS:
> > =
> > man-1.5o1:
>
> With the new version, I'm getting the following
Dr. Volker Zell wrote:
A new version of 'man' has been uploaded to a server near you.
man NEWS:
=
man-1.5o1:
With the new version, I'm getting the following 4 messages every time I
run "man":
Unrecognized line in config file (ignored)
JNROFF LANG=ja_JP.UTF-8 /usr/bin/groff -Tnipp
At 07:38 PM 2/4/2004, vikie you wrote:
>Larry Hall,ÄúºÃ£¡
>
>Is there any option to export the errors and warnings to a file.
>Thanks.
Hm, this is an interesting approach. You ask a question on the Cygwin
list. I point out that the question is off-topic for the list and
vikie wrote:
> Larry Hall,您好!
Please address questions to the group.
> Is there any option to export the errors and warnings to a file.
> Thanks.
This is not a "cygwin" question, but a Win32 API question. Please read
the MSDN documentation to see how to read the
Larry Hall,您好!
Is there any option to export the errors and warnings to a file.
Thanks.
=== 2004-02-04 10:50:00 您在来信中写道:===
>At 07:05 AM 2/4/2004, vikie you wrote:
>
>>In VC++ program,I call the CreateProcess() fuction to run the
>> arm-920t-elf-
At 07:05 AM 2/4/2004, vikie you wrote:
>In VC++ program,I call the CreateProcess() fuction to run the
> arm-920t-elf-gcc.exe, How can I export the errors and warnings to a file.Thanks!
>
Sorry, this question is off-topic for this list. Here we talk about
Cygwin (
In VC++ program,I call the CreateProcess() fuction to run the
arm-920t-elf-gcc.exe, How can I export the errors and warnings to a file.Thanks!
vikie
[EMAIL PROTECTED]
2004-02-04
--
Unsubscribe info: http://cygwin.com/ml
I should have put some stronger caveats in the release announcement
about the use of the -o managed option to mount.
As people have discovered, it is not ready for prime time. And, even
if it was ready for prime time, it is definitely not something that you
want to use on all of your directories.
__declspec import/export
when building with shared libraries. I got most of ACE/TAO compiling, but
independent of setting the linker flags --enable-auto-import or
--disable-auto-import I keep getting warnings about auto-import. It is a
class with multiple statics and only on one of the statics the warning is
Responses below
Max.
- Original Message -
From: "Robert Collins" <[EMAIL PROTECTED]>
To: "Max Bowsher" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Sunday, March 03, 2002 9:20 PM
Subject: RE: w32api bugfix (was: Currently, CVS setup.exe does not c
> -Original Message-
> From: Max Bowsher [mailto:[EMAIL PROTECTED]]
> Sent: Sunday, March 03, 2002 9:36 PM
> To: [EMAIL PROTECTED]
> Subject: w32api bugfix (was: Currently, CVS setup.exe does
> not compile, due to warnings with 'warnings as errors' in
ect
'int proc();' means: ditto AND causes a warning (which, since setup
is compiled with 'warnings as errors' on, stops the build)
'int proc(void);' means: ditto
Summary:
The construct 'typedef int (WINAPI *FARPROC)();' in w32api causes an error
> -Original Message-
> From: Max Bowsher [mailto:[EMAIL PROTECTED]]
> What do the experts think?
Hmm, does C++ support the same feature? If not then an ifdef __cplusplus
might do it.
Rob
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http:/
Currently, CVS setup.exe does not compile, due to warnings with 'warnings as
errors' in effect. How best to change code to avoid warnings?
Warning in winsup/bz2lib/bzlib.c:
static char *bzerrorstrings[] = {
"OK"
This requires the insertion of a const qualifier.
On Thu, Dec 06, 2001 at 12:29:57PM -0500, John Peacock wrote:
>"H.Merijn Brand" wrote:
>>
>> the ualarm is still fatal on 1.3.6-2. I've just removed the second argument in
>>
>
>I found the following entry in winsup/cygwin/ChangeLog:
>
> 2001-11-27 Christopher Faylor <[EMAIL PROTECTED]>
>
>
"H.Merijn Brand" wrote:
>
> the ualarm is still fatal on 1.3.6-2. I've just removed the second argument in
>
I found the following entry in winsup/cygwin/ChangeLog:
2001-11-27 Christopher Faylor <[EMAIL PROTECTED]>
* cygwin.din (ualarm): New export.
(ualarm): New functio
66 matches
Mail list logo