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