Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

from what i read here everything we compile is depended on OS environment and its runtime libraries and APIs. so let say i want create my own OS and as far as i know to create OS programmers use host OS like Windows or Linux. my Os must have it's own file system with its own file extensions, RunTime libraries, apis and ofc kernel, but when we compile code under windows compiler will output .EXE file , which is depended on windows runtime libraries right ? so my question is how Oses are created if we compile its code and it will be depended on host OS runtime libraries in exe or PE format or compiler can output some other kind of files that can be independent from host OS?? i'm sorry if this question exists and i asked it again but i'm very curious how Oses are developed and how they work.

share|improve this question
This question is overly vague, please repost with a more directed and specific question. – bn. Dec 14 '12 at 17:39

closed as not a real question by Paul R, marc_s, Ricardo Lohmann, Pondlife, fthiella Dec 14 '12 at 21:06

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Before you start writing you own OS, you first need to learn about compiling and linking a basic program. There's two types of linking dynamic and static. If you link a program to a library dynamically that library needs to be loaded when your program runs. If you link the library statically, the code needed by your program is added directly into your executable. As such the library file is not needed. So if you are building an OS, you want to link your start up executables (like the Linux kernel) statically. Once your OS and file system is up and running executables can then start to use dynamic linking.

If you are serious about learning how to build an Operating System, I would recommend starting with Linux from Scratch as that will go over what an Operating System entails. You may also want to check out the text books used by Computer or Software Engineers in their Operating Systems classes as that will provide the theory behind the designs.

http://www.linuxfromscratch.org/

share|improve this answer
no i'm not going to write OS lol i just ask bcos i'm curious. i can only compile hello world and know some simple staff in C++ thanks for answers anyway.. but i want study assembly for x86 machines i took book called " art of assembly language " so which assembler u recomend fasm or nasm ?? and on which Operating system shall i begun assembly programing windows or linux?? – Hybrid Kernel Dec 14 '12 at 17:58
It would be easiest for you to stick with the same assembler as the book you are working with. As for which OS, that probably doesn't matter much as long as the assembler runs on your OS of choice. If you were learning C or C++, I would point you at Linux but for assembly that isn't necessary. – Codeguy007 Dec 14 '12 at 18:46

Not the answer you're looking for? Browse other questions tagged or ask your own question.