Hi, I'm new to the community. I'm taking my first steps in the study and development of an OS.
In the readings of the osdev wiki there is something that is not clear to me in the Building libgcc for mcmodel=kernel https://wiki.osdev.org/Building_libgcc_ ... l%3Dkernel.
The question I have is:
I have to build two libgcc?
If I have to do this, then I have to build two gcc?
If this is so, do I have to build two binutils?
On the other hand, from what I have understood so far:
-mcmodel=kernel, as its name implies is used for kernel's compilation?
-mcmodel=large is used for compilations of user mode applications?
in both cases they are used to make compilations for different objective platforms. Right?
Thanks in advance for your answers.
[SOLVED] - Doubts when building libgcc -mcmodel=kernel
[SOLVED] - Doubts when building libgcc -mcmodel=kernel
Last edited by remizero on Sat Mar 02, 2019 6:12 pm, edited 1 time in total.
-
- Member
- Posts: 5501
- Joined: Mon Mar 25, 2013 7:01 pm
Re: Doubts when building libgcc -mcmodel=kernel
Yes, but I think you can use the multilib system to do it. The documentation for that is here and a guide for setting it up is here.remizero wrote:I have to build two libgcc?
If you use multilib, you only need one GCC. Otherwise, you'll have to build two.remizero wrote:If I have to do this, then I have to build two gcc?
No.remizero wrote:If this is so, do I have to build two binutils?
It's used for higher-half kernels, where all code and statically-allocated data is in the highest 2GB of the virtual address space. If your kernel is not located there, you must use a different memory model.remizero wrote:-mcmodel=kernel, as its name implies is used for kernel's compilation?
It can be, but it's only really useful if you need more than 2GB of address space for your code and static data. The generated code is slightly less efficient, too. The default -mcmodel=small works best in most cases.remizero wrote:-mcmodel=large is used for compilations of user mode applications?
I don't understand the question. What is an "objective platform"?remizero wrote:in both cases they are used to make compilations for different objective platforms. Right?
- Schol-R-LEA
- Member
- Posts: 1925
- Joined: Fri Oct 27, 2006 9:42 am
- Location: Athens, GA, USA
Re: Doubts when building libgcc -mcmodel=kernel
I believe remizero means 'objective' in the sense of 'goal', here, not in the sense of 'not subjective', so 'target platform' would be the more typical wording.Octocontrabass wrote:remizero wrote:I don't understand the question. What is an "objective platform"?remizero wrote:in both cases they are used to make compilations for different objective platforms. Right?
Rev. First Speaker Schol-R-LEA;2 LCF ELF JAM POEE KoR KCO PPWMTF
Ordo OS Project
Lisp programmers tend to seem very odd to outsiders, just like anyone else who has had a religious experience they can't quite explain to others.
Ordo OS Project
Lisp programmers tend to seem very odd to outsiders, just like anyone else who has had a religious experience they can't quite explain to others.
Re: Doubts when building libgcc -mcmodel=kernel
Thanks for such a quick response.
Exactly that's what I meant Schol-R-LEA, sorry for my poor English
What I meant was target platform, but it does not matter anymore, your explanation has been a great help to move forward and clear doubts.
But now the next question arises.
Working even from my host system, then I would not need another gcc to compile applications in user space, right?
therefore the question of whether to build two gcc
Exactly that's what I meant Schol-R-LEA, sorry for my poor English
What I meant was target platform, but it does not matter anymore, your explanation has been a great help to move forward and clear doubts.
But now the next question arises.
Working even from my host system, then I would not need another gcc to compile applications in user space, right?
therefore the question of whether to build two gcc
-
- Member
- Posts: 5501
- Joined: Mon Mar 25, 2013 7:01 pm
Re: Doubts when building libgcc -mcmodel=kernel
That's right.remizero wrote:Working even from my host system, then I would not need another gcc to compile applications in user space, right?
Re: [SOLVED] - Doubts when building libgcc -mcmodel=kernel
Thanks for a lot