hxcpp icon indicating copy to clipboard operation
hxcpp copied to clipboard

Runtime files for c++ backend for haxe

Results 181 hxcpp issues
Sort by recently updated
recently updated
newest added

Testing Haxe and hxcpp with this code (Lambda.hx): ``` /* Based on http://lisperator.net/pltut/ */ /* -----[ parser utils ]----- */ class InputStream { var _pos: Int; var _line: Int; public...

how to support utf-8 for trace ? -D What?

I try to compile a wasm via `lime test emscripten -webassembly` but I get this error following. How can i fix it and compile it? ``` Compiling group: hxcpp_std emcc...

Currently, in `android-toolchain-clang.xml`, flag `-static-libstdc++` is used. However, when using multiple shared libraries, it is recommended to link with libc++ dynamically (and embed libc++_shared.so in final apk) because multiple shared...

I stumbled upon a `Mbedtl` dependency in hxcpp with regard to SSL inside hxcpp. A little background: I know a friend who is trying to use haxeui as a static...

Error message: Error: /usr/local/lib/haxe/lib/hxcpp/4,0,0/src/hx/Thread.cpp:341:8: error: thread-local storage is not supported for the current target static thread_local ThreadInfoHolder threadHolder;

Haxe 4.1.1 and Windows 10. I was recommended on the forum to come here. Main program code ``` class ToolCore { public static var replaceable_func:Void -> Void; public function new()...

I am trying to build a dynamic library for android target, I am getting this error below ``` obj/android-opt-64/8a3cb82e___boot__.obj: file not recognized: File format not recognized ``` Full details ```...

When running `haxelib run hxcpp myProgram.cppia -v` or `bin/Cppia myProgram.cppia -v` calling `Sys.args ()` will return `["myProgram.cppia", "-v"]` instead of just `["-v"]` (like e.g. a cpp compiled version does). According...

I was testing an empty Haxeflixel template using “lime test windows” and everything went smoothly, “hello world” window shows up but if I use “lime build windows”, and then double...