Where can I find some serious documentation about using g++?
I intend to make an object oriented kernel in C++, but I have no idea how g++ works. Like:
What parameters must I pass to g++ to exclude standard librabries?
What operators must I implement?
How does g++ work?
How the output code looks like?
Thanks
G++ Question
RE:G++ Question
Type "info gcc" at your shell prompt. If you have gcc properly installed on a linux/unix system that should work. It should tell you *almost* everything you need to know about gcc (including g++). As for options, you probably want to look at the following: -nostdinc, -fno-builtin and -fno-exceptions. (They will be listed under gcc options, not g++ options.) You'll probably also want to use a linker script. For information about that, use "info ld". As for operators that you must implement, just new and delete (assuming you use them). All other operators for built-in data types are implemented for you.