[SOLVED] - Doubts when building libgcc -mcmodel=kernel

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
User avatar
remizero
Posts: 3
Joined: Mon Feb 25, 2019 9:26 pm
Libera.chat IRC: remizero
Contact:

[SOLVED] - Doubts when building libgcc -mcmodel=kernel

Post by remizero »

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.
Last edited by remizero on Sat Mar 02, 2019 6:12 pm, edited 1 time in total.
Octocontrabass
Member
Member
Posts: 5501
Joined: Mon Mar 25, 2013 7:01 pm

Re: Doubts when building libgcc -mcmodel=kernel

Post by Octocontrabass »

remizero wrote:I have to build two libgcc?
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:If I have to do this, then I have to build two gcc?
If you use multilib, you only need one GCC. Otherwise, you'll have to build two.
remizero wrote:If this is so, do I have to build two binutils?
No.
remizero wrote:-mcmodel=kernel, as its name implies is used for kernel's compilation?
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=large is used for compilations of user mode applications?
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:in both cases they are used to make compilations for different objective platforms. Right?
I don't understand the question. What is an "objective platform"?
User avatar
Schol-R-LEA
Member
Member
Posts: 1925
Joined: Fri Oct 27, 2006 9:42 am
Location: Athens, GA, USA

Re: Doubts when building libgcc -mcmodel=kernel

Post by Schol-R-LEA »

Octocontrabass wrote:
remizero wrote:
remizero wrote:in both cases they are used to make compilations for different objective platforms. Right?
I don't understand the question. What is an "objective platform"?
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.
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.
User avatar
remizero
Posts: 3
Joined: Mon Feb 25, 2019 9:26 pm
Libera.chat IRC: remizero
Contact:

Re: Doubts when building libgcc -mcmodel=kernel

Post by remizero »

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
Octocontrabass
Member
Member
Posts: 5501
Joined: Mon Mar 25, 2013 7:01 pm

Re: Doubts when building libgcc -mcmodel=kernel

Post by Octocontrabass »

remizero wrote:Working even from my host system, then I would not need another gcc to compile applications in user space, right?
That's right.
User avatar
remizero
Posts: 3
Joined: Mon Feb 25, 2019 9:26 pm
Libera.chat IRC: remizero
Contact:

Re: [SOLVED] - Doubts when building libgcc -mcmodel=kernel

Post by remizero »

Thanks for a lot
Post Reply