hxcpp
hxcpp copied to clipboard
Runtime files for c++ backend for haxe
```hxml -cp src -main Main --cpp bin/cpp -D dll_link -D HXCPP_M64 -D HXCPP-DEBUGGER ``` and Main.hx ```hx package; @:nativeGen class Main { public static function main() { trace('hello dll'); }...
**Environment** macos monterey 12.1 haxe 4.2.4 hxcpp 4.2.1 The error can be reproduced by compiling the following two modules for the cpp target. ``` //LogManager.hx package log; @:nativeGen interface Logger...
``` Incident Identifier: BEDE474E-71E2-44BE-AC0A-AA7A92C3616A Hardware Model: iPhone9,4 Process: Sanalika [72725] Path: /private/var/containers/Bundle/Application/27ADF417-7BBC-4E5A-BE8E-6197F85B0CBF/Sanalika.app/Sanalika Identifier: com.oyunstudyosu.sanalika.standalone Version: 1.0.0 (562) AppStoreTools: 13C90b AppVariant: 1:iPhone9,4:15 Beta: YES Code Type: ARM-64 (Native) Role: Foreground Parent...
I'm trying to compile an openfl application for the Windows target but am encountering heap corruption. The swf loader tries to parse out a huge json string (4.4 million characters...
Since hxcpp doesn't run from the NDK directory, it requires an absolute path to be able to access source.properties. Getting the version from the directory name is unaffected, which is...
Right now, specific compilation flags can't be enabled/disabled depending on the compiler: ```xml ``` (If this isn't actually true, this issue can be ignored. Documentation just needs to be added.)...
See [HaxeFoundation/haxe#10610](https://github.com/HaxeFoundation/haxe/pull/10610)
See https://github.com/openfl/lime/issues/1179
Hi @hughsando Tha GC fails when compiled with O1 or O2 in emscripten platform with webassembly. Works solid in O0. Any hint on clang flags to add to disable some...