hxcpp
hxcpp copied to clipboard
Runtime files for c++ backend for haxe
Using: * haxe 4.2.2 from brew * hxcpp 4.2.1 * Apple MacBook Pro 2020 with M1 chip (arm64) Trying to compile simple hello world: ```haxe ## main.hx: import lib.Logger; class...
I'm trying to create a small game with OpenFL for Linux. When building the binary the log ends with: ``` - Running command: strip -d ApplicationMain generated config=/home/somepath/Export/linux/obj/HxcppConfig.h generated exe=/home/somepath/Export/linux/obj/ApplicationMain...
On non-windows platforms `gettimeofday()` (time.h) is used in the hxcpp stdlib to get a timestamp for time-deltas, however, gettimeofday has several issues when used for this purpose: - It's linked...
Using hxcpp 4.0.19. When trying to compile ``` class EitherSupport { public static function getValue(e: Dynamic): Void { } } ``` I get a compilation error on cppia ``` Error...
Noticed that sometimes reading from the stdout of a process never returns on windows. Digging into things it seems like when the child process closes the stdout pipe isn't closed...
The crash is not systematic. Could even say pretty rare, but it gets reported from time to time. I have an app that reads from and writes to a sqlite...
Static inline fields return null when accessing them via reflect.
https://github.com/HaxeFoundation/haxe/pull/9935 Added array object for 64bit ints and a 64bit int hash store as well as removing a lot of the Int64 helper stuff.
Hi, I think i've found a bug in the GC generational, In MarkAll gSpecialObjectLock should be locked at begin, ``` void MarkAll(bool inGenerational) { // Finalizers must be marked before...
Tried to download Haxe to experiment and see what the story was like for using it to author libraries which expose C ABIs + interop with C/C++: ```ps1 C:\Users\rayga\tmp\haxe\cpp>haxe --version...