Joey
Joey
I am back and working on integrating ``hxb`` into the testing system. I am running into this issue though: This simple go code compiled into Haxe is giving **false** when...
Huh strange the output didn't even print out, for windows, perhaps I am handling the sys output wrong on it. Thanks for the tip I will use the diff dump...
I've been digging through the dump diffs, it seems most of the differences I don't think actually effect the output, such as error interfaces and constants. I will figure out...
I found it, it was because I was not setting the same defines on hxb, so it was using different number types. Thanks for help with the dump information!
Hxb is now working successfully in the testing system. unit testing: 5min4sec unit testing -> 2min50sec std testing: 5min58sec -> 4min36sec Overall build time 13min30sec -> 10min8sec This is a...
Having issues with this: https://github.com/HaxeFoundation/haxe/issues/11780
This is now resolved, will have more information later.
@Simn Thought I'd share a quick update. So this is Go's standard library web server transpiled to Haxe code, then compiling the resulting code. ## Without HXB: ```sh haxe build.hxml...
I think uintptr is going to need a rework as well.
Looked at the latest implementation pointers create a unique address using a globalAdress and mutext to prevent race conditions. ```go package main func main() { s := 0 s2 :=...