Victor Gallet

Results 9 comments of 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 : ![image](https://user-images.githubusercontent.com/20202017/211163206-9130fe44-ca29-4137-9b14-f015d802a379.png) ![image](https://user-images.githubusercontent.com/20202017/211163229-69586286-cf25-42e4-839a-774b12662d64.png) ![image](https://user-images.githubusercontent.com/20202017/211163255-15c4ef71-2edf-42de-92a8-6be05920851c.png) ![image](https://user-images.githubusercontent.com/20202017/211163274-35f5cc3c-a1e1-4dce-bd3a-39b9766a2cce.png)

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: ![image](https://user-images.githubusercontent.com/20202017/211163398-8effae82-16cf-433c-8fc6-0c91d3e9967b.png)

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: ![image](https://user-images.githubusercontent.com/20202017/211164875-88c3ae5f-6926-4abc-a07d-db2a5a4a392c.png) With more details: ![image](https://user-images.githubusercontent.com/20202017/211164882-a320fe68-ddb9-4747-819d-fcf68180b047.png)

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...