Nicolas Cannasse

Results 285 comments of Nicolas Cannasse

HAXEPATH is set by Windows installer. We don't want users on Windows to have to run haxelib setup before being able to install libraries.

That's usually how I would do :) So if at some point HAXEPATH was used someone must have had a problem with it. Can't tell unless we look at full...

Yes, native Int64 support is not yet complete

@back2dos I actually had hscript as dev version, but it also prompted it for other libraries I had never installed. Try with a fresh haxelib repo and install ufront to...

I'm fine with following anything that is quite standardized as NPM seems to be, as long as we keep backward compatibility with our previous format, so users can continue downloading...

hi ! I think you need a bit more than hl_enter_thread_stack in order to correctly init the VM. You need to call both hl_global_init() and hl_register_thread() As for the helpers,...

It comes from there https://github.com/HaxeFoundation/hscript/blob/master/hscript/Parser.hx#L980-L989, any idea how to fix this @Simn ?

I'm not sure, we didn't unit test it on PHP/Python at this time I think

Maybe doing & 0xFFFFFFFF on these platforms would work ?

Seems indeed like a race condition. I guess we would need to move queue_mutex + threads_queues init inside the following block: ```haxe static function __init_() { queue_mutex = new Mutex();...