Victor Gallet
Victor Gallet
Thanks for the link, I'll try by going on the branch of the PR to test if that fix the issue. Actually yeah, I guess the real fix should be...
And just using the pointer address value of the string isn't enough? I mean, you just cast the pointer address value as a uintptr_t, and you then use this unique...
Of course, here's the full steps in few screenshots for the build/boostrap/make.com command on a git bash on windows :    
I'm pretty sure the error comes from the lines juste after the error, as it says the error happen when compiling the getintegercoefficients.o object file ;)
Okay, after running the command line alone, here's what I got, seems like a compiling error on line 112 of this file: 
I had the flag ```make -Wno-attributes ``` as a quick "fix", even it's not really a fix, that works for compiling this file, now get an other error. If anyone...
The new error:  With more details: 
The problem seems to be that the include directive is not working in assembly files, because if I copy paste the assembly macros in each file, instead of including the...
Update: After several try, it works know, by replacing every: ```C #include "libc/runtime/pc.internal.h" ``` In assembly files (512 in total), by: ```C .include "libc/runtime/pc.internal.h" ``` BUT, really weird, you need...