Are there any popular open source projects written in C++? [closed] - c++

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I've read the source code of a few popular open source projects like apache, nginx...
All of them are written in C, is there one written in C++?
It should be run-able program, not framework...

KDE
and up, to 30 characters and beyond.

Mozilla Firefox is written (mainly) in C++.

You may want to check out this list : http://www2.research.att.com/~bs/applications.html

Related

TagLib tutorial [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
Are there any TagLib tutorials, how-to's, examples, etc. for Taglib with C++ (Qt)? I only found the API Documantation with its very very basic example. But it is hard to find more examples.
Take a look at the examples provided with the source code of the library. They are not Qt based, but is enough to start programming with Taglib and Qt.

Why there is no any standard Gateway Interface for languages C and/or C++ as WSGI for Python? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
Or is there any? I would be happy to know if any.
Thank you.
ISAPI on Windows/IIS. NSAPI is supported by a number of vendors.
The closest to a gateway standard for C/C++ would be FastCGI. Otherwise modules for specific web servers is the norm.

What are the points to be kept in mind while porting c++ code from Linux to Windows? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I have started to port a project which involves C++, qt , MySql codes.These codes are written for Linux and I am porting them to Windows. So my question, are there any general points to be kept in mind while porting these codes from Linux to Windows? Please help me out here.
I am working on a sililar project, and what I have noted thus far is that the path names are different from Unix to Windows, the header files are not exactly the same between the two, and the size of variables are sometimes different. Here are some useful links as well:
http://www.willydev.net/descargas/prev/UNIX.pdf
http://suacommunity.com/dictionary/index.php

Where to start with FastCGI and C++ [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
Anyone have any links or resource regarding writing a proper C++ FastCGI application? (on top of Apache using mod_fastcgi or mod_fcgid).
I suggest you fastcgi++, which is an alternative to the FDK.
It is much more easy to use and is in a C++ way.
The obvious one would be the FastCGI Development Kit (for C/C++).

Are there any tools that are able to do cyclomatics on Pro*C++ sources? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
Are there any tools that are able to do code metrics on Pro*C++ sources?
I haven't been able to find anything specific via Google.
Does anyone have any experience with this?
Pro*C can generate valid C++ files, for code metrics tools on standard c++ Google is your friend.