I am porting NewLib for my own OS by following a tutorial.
It says that once I finished my crt0, I have to "link it as the first object". How can I do that?
|
I am porting NewLib for my own OS by following a tutorial. It says that once I finished my crt0, I have to "link it as the first object". How can I do that? |
||||
|
That means precisely what is says. When an application for your OS is being linked, the crt0 must be the very first object file on linker's command line: before any other object file. Traditionally, UNIX linkers resolve a symbol by making a look up starting from first object/library looping over to the last object/library. Putting Additionally, as pointed by R.., traditional linkers assume that application's entry point is at the beginning of the code segment. That also fits to the source code found on the linked page: first symbol in the code is E.g. running
One can see that crt1 is first object on the command line. Looking at the linker script ( |
|||||||
|
|
One way, for testing at least, is to place crt0.o as the first file on the compiler or linker command line. For production, you'd put it in the linker command file. |
|||
|
|