* Error compiling cygwin-snapshot-20020409-1
@ 2002-04-10 15:10 Steve Howe
2002-04-11 1:19 ` Pavel Tsekov
0 siblings, 1 reply; 9+ messages in thread
From: Steve Howe @ 2002-04-10 15:10 UTC (permalink / raw)
To: cygwin
Hello all,
The lastest snapshot fixes the previous INVALID_FILE_ATTRIBUTES
issue but is
not compilable either... I tried to compile the latest cygwin but got the
following errors.
Any clues?
Best Regards,
Howe
howe@ANGLA ~/cygwin-snapshot-20020409-1/winsup/cygwin
$ make
g++ -c -gstabs+ -O2 -MMD -fbuiltin ... assert.cc
g++ -c -gstabs+ -O2 -MMD -fbuiltin ... autoload.cc
g++ -c -gstabs+ -O2 -MMD -fbuiltin ... cygheap.cc
In file included from cygheap.cc:17:
fhandler.h: In method `select_stuff::select_stuff()':
fhandler.h:1089: implicit declaration of function `int memset(...)'
make: *** [cygheap.o] Error 1
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Error compiling cygwin-snapshot-20020409-1
2002-04-10 15:10 Error compiling cygwin-snapshot-20020409-1 Steve Howe
@ 2002-04-11 1:19 ` Pavel Tsekov
2002-04-11 7:37 ` Christopher Faylor
0 siblings, 1 reply; 9+ messages in thread
From: Pavel Tsekov @ 2002-04-11 1:19 UTC (permalink / raw)
To: Steve Howe; +Cc: cygwin
Hello Steve,
Wednesday, April 10, 2002, 11:44:44 PM, you wrote:
[snip]
SH> In file included from cygheap.cc:17:
SH> fhandler.h: In method `select_stuff::select_stuff()':
SH> fhandler.h:1089: implicit declaration of function `int memset(...)'
SH> make: *** [cygheap.o] Error 1
Obviously, this source file calls memset without including the
approapriate header file (string.h). I don't have the latest CVS sources to
verify this - what I've stated above is just and assumption based on
the gcc error message.
Btw no need to repeat ;)
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Error compiling cygwin-snapshot-20020409-1
2002-04-11 1:19 ` Pavel Tsekov
@ 2002-04-11 7:37 ` Christopher Faylor
2002-04-11 8:07 ` Re[2]: " Pavel Tsekov
2002-04-12 3:37 ` Steve Howe
0 siblings, 2 replies; 9+ messages in thread
From: Christopher Faylor @ 2002-04-11 7:37 UTC (permalink / raw)
To: cygwin
On Thu, Apr 11, 2002 at 10:10:28AM +0200, Pavel Tsekov wrote:
>Wednesday, April 10, 2002, 11:44:44 PM, you wrote:
>> In file included from cygheap.cc:17:
>SH> fhandler.h: In method `select_stuff::select_stuff()':
>SH> fhandler.h:1089: implicit declaration of function `int memset(...)'
>SH> make: *** [cygheap.o] Error 1
>
>Obviously, this source file calls memset without including the
>approapriate header file (string.h).
Not so obvious at all. How do you suppose I could generate a snapshot
if that was true?
>I don't have the latest CVS sources to verify this - what I've stated
>above is just and assumption based on the gcc error message.
If you can't check the source, why are you responding?
Since I can't see any reason for the error, I assume that the source
has been locally modified or the header files are screwed up.
>Btw no need to repeat ;)
That's for sure.
Basically, it seems to me that if you can't solve simple things like
basic compilation errors, you probably shouldn't be building cygwin
from scratch.
cgf
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re[2]: Error compiling cygwin-snapshot-20020409-1
2002-04-11 7:37 ` Christopher Faylor
@ 2002-04-11 8:07 ` Pavel Tsekov
2002-04-11 8:39 ` Christopher Faylor
2002-04-12 3:37 ` Steve Howe
1 sibling, 1 reply; 9+ messages in thread
From: Pavel Tsekov @ 2002-04-11 8:07 UTC (permalink / raw)
To: cygwin
Hello Christopher,
Thursday, April 11, 2002, 4:37:27 PM, you wrote:
CF> On Thu, Apr 11, 2002 at 10:10:28AM +0200, Pavel Tsekov wrote:
>>Wednesday, April 10, 2002, 11:44:44 PM, you wrote:
>>> In file included from cygheap.cc:17:
>>SH> fhandler.h: In method `select_stuff::select_stuff()':
>>SH> fhandler.h:1089: implicit declaration of function `int memset(...)'
>>SH> make: *** [cygheap.o] Error 1
>>
>>Obviously, this source file calls memset without including the
>>approapriate header file (string.h).
CF> Not so obvious at all. How do you suppose I could generate a snapshot
CF> if that was true?
I say this because of the gcc error message.
>>I don't have the latest CVS sources to verify this - what I've stated
>>above is just and assumption based on the gcc error message.
CF> If you can't check the source, why are you responding?
Because I'm mean...
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Error compiling cygwin-snapshot-20020409-1
2002-04-11 7:37 ` Christopher Faylor
2002-04-11 8:07 ` Re[2]: " Pavel Tsekov
@ 2002-04-12 3:37 ` Steve Howe
2002-04-12 8:15 ` Christopher Faylor
1 sibling, 1 reply; 9+ messages in thread
From: Steve Howe @ 2002-04-12 3:37 UTC (permalink / raw)
To: cygwin
"Christopher Faylor" <cgf@redhat.com> wrote in message
news:20020411143727.GB5214@redhat.com...
> On Thu, Apr 11, 2002 at 10:10:28AM +0200, Pavel Tsekov wrote:
> >Wednesday, April 10, 2002, 11:44:44 PM, you wrote:
> >> In file included from cygheap.cc:17:
> >SH> fhandler.h: In method `select_stuff::select_stuff()':
> >SH> fhandler.h:1089: implicit declaration of function `int memset(...)'
> >SH> make: *** [cygheap.o] Error 1
> >
> >Obviously, this source file calls memset without including the
> >approapriate header file (string.h).
>
> Not so obvious at all. How do you suppose I could generate a snapshot
> if that was true?
>
> >I don't have the latest CVS sources to verify this - what I've stated
> >above is just and assumption based on the gcc error message.
>
> If you can't check the source, why are you responding?
>
> Since I can't see any reason for the error, I assume that the source
> has been locally modified or the header files are screwed up.
None of these. Why don't you try yourself ?
> Basically, it seems to me that if you can't solve simple things like
> basic compilation errors, you probably shouldn't be building cygwin
> from scratch.
And you probably don't know know anything about me to say that.
And also you should do a working snapshot instead of being arrogant. You you
were so darn smart as you think the snapshot would be working. I just have
thousands of other things to do instead of making the software YOU develop
work. I guessed that could be a known flaw so I decided to ask fisrt before
trying to solve it myself.
If you can't help then just shutup instead. Do you have an orgasm when you
write those things ?
Howe
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/
^ permalink raw reply [flat|nested] 9+ messages in thread
* RE: Error compiling cygwin-snapshot-20020409-1
@ 2002-04-13 0:26 Robert Collins
0 siblings, 0 replies; 9+ messages in thread
From: Robert Collins @ 2002-04-13 0:26 UTC (permalink / raw)
To: Steve Howe, cygwin
> -----Original Message-----
> From: Steve Howe [mailto:howe@carcass.dhs.org]
> Sent: Friday, April 12, 2002 8:37 PM
> > Since I can't see any reason for the error, I assume that
> the source
> > has been locally modified or the header files are screwed up.
> None of these. Why don't you try yourself ?
>
> > Basically, it seems to me that if you can't solve simple
> things like
> > basic compilation errors, you probably shouldn't be building cygwin
> > from scratch.
> And also you should do a working snapshot instead of
> being arrogant.
Do you think through what you are writing before you write it? How do
you think the binary snapshots get created? If the snapshot won't build,
neither source nor binary are made available on the web pages.
> You you were so darn smart as you think the
> snapshot would be working. I just have thousands of other
> things to do instead of making the software YOU develop work.
It works quite fine for several thousand other users thank you very
much. Is *your* install working correctly? I don't know, and given the
attitude you portray in the email I'm replying to - I don't care. Chris
has, on occasion, been somewhat tough, but has also on those occasions
apologised. In this case I think he has been helpful, direct and
responsive, and you are being - dare I say it - abusive in return.
Hardly the way to get what *YOU* want is it?
> I guessed that could be a known flaw so I decided to ask
> fisrt before trying to solve it myself.
And you got an answer - It's not a known flaw. Wht's your problem?
> If you can't help then just shutup instead.
Chris did help. I really cannot grasp why you are reacting in the manner
you have.
<cut seriously offensive question>
Rob
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/
^ permalink raw reply [flat|nested] 9+ messages in thread
* Error compiling cygwin-snapshot-20020409-1
@ 2002-04-09 16:28 Steve Howe
0 siblings, 0 replies; 9+ messages in thread
From: Steve Howe @ 2002-04-09 16:28 UTC (permalink / raw)
To: cygwin
Hello all,
The lastest snapshot fixes the INVALID_FILE_ATTRIBUTES issue but is
not compilable either... any clues?
Best Regards,
Howe
howe@ANGLA ~/cygwin-snapshot-20020409-1/winsup/cygwin
$ make
g++ -c -gstabs+ -O2 -MMD -fbuiltin ... assert.cc
g++ -c -gstabs+ -O2 -MMD -fbuiltin ... autoload.cc
g++ -c -gstabs+ -O2 -MMD -fbuiltin ... cygheap.cc
In file included from cygheap.cc:17:
fhandler.h: In method `select_stuff::select_stuff()':
fhandler.h:1089: implicit declaration of function `int memset(...)'
make: *** [cygheap.o] Error 1
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2002-04-13 4:44 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-04-10 15:10 Error compiling cygwin-snapshot-20020409-1 Steve Howe
2002-04-11 1:19 ` Pavel Tsekov
2002-04-11 7:37 ` Christopher Faylor
2002-04-11 8:07 ` Re[2]: " Pavel Tsekov
2002-04-11 8:39 ` Christopher Faylor
2002-04-12 3:37 ` Steve Howe
2002-04-12 8:15 ` Christopher Faylor
-- strict thread matches above, loose matches on Subject: below --
2002-04-13 0:26 Robert Collins
2002-04-09 16:28 Steve Howe
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).