public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* c++ header file for <exception> in which cygwin package?
@ 2011-05-07  8:10 ankur d
  2011-05-07 10:29 ` Csaba Raduly
  0 siblings, 1 reply; 3+ messages in thread
From: ankur d @ 2011-05-07  8:10 UTC (permalink / raw)
  To: cygwin


Hi,

Is anybody here knowing where exactly this c++ <exception> header file
exists in Cygwin package? Because I have downloaded all the packages under
development branch of cygwin. I can see other standard header files like
stdio.h, stdlib.h, etc. but this exception.h is not there. 

Thanks.
-- 
View this message in context: http://old.nabble.com/c%2B%2B-header-file-for-%3Cexception%3E-in-which-cygwin-package--tp31564589p31564589.html
Sent from the Cygwin list mailing list archive at Nabble.com.


--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: c++ header file for <exception> in which cygwin package?
  2011-05-07  8:10 c++ header file for <exception> in which cygwin package? ankur d
@ 2011-05-07 10:29 ` Csaba Raduly
  2011-05-07 10:54   ` ankur d
  0 siblings, 1 reply; 3+ messages in thread
From: Csaba Raduly @ 2011-05-07 10:29 UTC (permalink / raw)
  To: cygwin

On Sat, May 7, 2011 at 10:10 AM, ankur d <ankur.neebalit@gmail.com> wrote:
>
> Hi,
>
> Is anybody here knowing where exactly this c++ <exception> header file
> exists in Cygwin package? Because I have downloaded all the packages under
> development branch of cygwin. I can see other standard header files like
> stdio.h, stdlib.h, etc. but this exception.h is not there.
>

$ find /lib/gcc/i686-pc-cygwin/ -name exception
/lib/gcc/i686-pc-cygwin/3.4.4/include/c++/exception
/lib/gcc/i686-pc-cygwin/4.3.4/include/c++/exception

The C headers "belong" to to the system, so they are under /usr/include.
<exception> is a C++ header and as such it belongs to GCC (g++)

If you don't have the above files, then you don't have g++ installed.

See also

http://cygwin.com/cgi-bin2/package-grep.cgi?grep=exception%24

Hope this helps,
Csaba
-- 
GCS a+ e++ d- C++ ULS$ L+$ !E- W++ P+++$ w++$ tv+ b++ DI D++ 5++
The Tao of math: The numbers you can count are not the real numbers.
Life is complex, with real and imaginary parts.
"Ok, it boots. Which means it must be bug-free and perfect. " -- Linus Torvalds
"People disagree with me. I just ignore them." -- Linus Torvalds

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: c++ header file for <exception> in which cygwin package?
  2011-05-07 10:29 ` Csaba Raduly
@ 2011-05-07 10:54   ` ankur d
  0 siblings, 0 replies; 3+ messages in thread
From: ankur d @ 2011-05-07 10:54 UTC (permalink / raw)
  To: cygwin




Csaba Raduly-2 wrote:
> 
> On Sat, May 7, 2011 at 10:10 AM, ankur d <ankur.neebalit@gmail.com> wrote:
>>
>> Hi,
>>
>> Is anybody here knowing where exactly this c++ <exception> header file
>> exists in Cygwin package? Because I have downloaded all the packages
>> under
>> development branch of cygwin. I can see other standard header files like
>> stdio.h, stdlib.h, etc. but this exception.h is not there.
>>
> 
> $ find /lib/gcc/i686-pc-cygwin/ -name exception
> /lib/gcc/i686-pc-cygwin/3.4.4/include/c++/exception
> /lib/gcc/i686-pc-cygwin/4.3.4/include/c++/exception
> 
> The C headers "belong" to to the system, so they are under /usr/include.
> <exception> is a C++ header and as such it belongs to GCC (g++)
> 
> If you don't have the above files, then you don't have g++ installed.
> 
> See also
> 
> http://cygwin.com/cgi-bin2/package-grep.cgi?grep=exception%24
> 
> Hope this helps,
> Csaba
> -- 
> GCS a+ e++ d- C++ ULS$ L+$ !E- W++ P+++$ w++$ tv+ b++ DI D++ 5++
> The Tao of math: The numbers you can count are not the real numbers.
> Life is complex, with real and imaginary parts.
> "Ok, it boots. Which means it must be bug-free and perfect. " -- Linus
> Torvalds
> "People disagree with me. I just ignore them." -- Linus Torvalds
> 
> --
> Problem reports:       http://cygwin.com/problems.html
> FAQ:                   http://cygwin.com/faq/
> Documentation:         http://cygwin.com/docs.html
> Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
> 
> 
> 

Hey, 

Thanks for the reply. These packages were already installed, but I was
looking for exception header file under "\Cygwin\usr\include\" as other
headers mentioned above (stdio.h, stdlib.h, etc.) were present in this
directory.

Thanks.

-- 
View this message in context: http://old.nabble.com/c%2B%2B-header-file-for-%3Cexception%3E-comes-under-which-cygwin-package--tp31564589p31565339.html
Sent from the Cygwin list mailing list archive at Nabble.com.


--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-05-07 10:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-05-07  8:10 c++ header file for <exception> in which cygwin package? ankur d
2011-05-07 10:29 ` Csaba Raduly
2011-05-07 10:54   ` ankur d

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).