quickjs-ng / quickjs

QuickJS, the Next Generation: a mighty JavaScript engine
https://quickjs-ng.github.io/quickjs/
MIT License
1.06k stars 94 forks source link

MSVC build error? #522

Closed wuqi closed 2 months ago

wuqi commented 2 months ago

image

The __extension__ in quickjs.c makes a lot of compile errors when use msvc2022,clang is ok.I don't know how to correct it image

saghul commented 2 months ago

I was looking into something similar yesterday.

I think you can drop the extension marker and ignore warning C4200 and it should work.

wuqi commented 2 months ago

I was looking into something similar yesterday.

I think you can drop the extension marker and ignore warning C4200 and it should work.

Thank you ,I define the __extension__ to empty and it works.