Hello, does anyone know why GCC is inserting these into my code?
__fixdfti, __fixunsdfti, __floattixf, __divti3, __modti3, __udivti3, __umodti3
GCC Auto generated code:__fixdfti, __fixunsdfti, __floattixf
Re: GCC Auto generated code:__fixdfti, __fixunsdfti, __float
Found it, (Value % 10), where value is int128
-
- Member
- Posts: 5590
- Joined: Mon Mar 25, 2013 7:01 pm
Re: GCC Auto generated code:__fixdfti, __fixunsdfti, __float
Thanks, why do I need to do that?Octocontrabass wrote:You need to link with libgcc.
-
- Member
- Posts: 5590
- Joined: Mon Mar 25, 2013 7:01 pm
Re: GCC Auto generated code:__fixdfti, __fixunsdfti, __float
Because GCC always produces code that requires libgcc.
Re: GCC Auto generated code:__fixdfti, __fixunsdfti, __float
That makes sense, thanks. LOLOctocontrabass wrote:Because GCC always produces code that requires libgcc.