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

vswhere.exe may exist even if VS 2017 is not installed, or it's installed but the c++ tools are not. If this is the case, we should keep looking for an...

got a null pointer exception in this line while trying to profile with hxScout https://github.com/HaxeFoundation/hxcpp/blob/master/src/hx/Telemetry.cpp#L207 ```` Exception thrown: read access violation. this->_last_obj-> was nullptr. ```` this is callstack ![image](https://user-images.githubusercontent.com/2820168/29750682-c5789f5c-8b4c-11e7-90ff-34a79e97e1cb.png)

I'm trying to compile a Haxe library I'm writing with hxcpp so I can debug it. I would try debugging it as JavaScript, but it relies on the `sys` package...

Hi. Something weird is happening to me lately related to this code in `BuildTools.hx`: ``` if (args.length>0) { var last:String = (new Path(args[args.length-1])).toString(); var isRootDir = last=="/"; if (!isRootDir) {...

On Win 10, after installing the haxelib `minimingw` I'm setting the environment variable `toolchain=mingw` and try to compile a project with: ``` > haxe -cpp bin/cpp -D HXCPP_VERBOSE -lib travix...

Embind is used to bind C++ functions and classes to JavaScript, so that the compiled code can be used in a natural way by “normal” JavaScript. According to this documentation...

Native.h depends on stdio for `size_t` (line 146)

There doesn't seem to have a reason for not enabling it in Linux, and doing so allows a much safer GC operation - right now we've just hit a bug...

cpp.Pointer is null when build for windows x64 hxcpp version is 4.0.8 ,haxe version 4.0.0 rc2 build and test use this project https://github.com/wighawag/hxcpp-test and win32 is build and run ok...

Currently, ``Std.parseFloat()`` in HXCPP relies on ``strtod()``: https://github.com/HaxeFoundation/hxcpp/blob/31500dc4bdc1b78729f6865c5a419a4ec5e2acaf/src/hx/StdLibs.cpp#L669-L683 The problem with ``strtod()`` is that its parsing of floats is dependant on the current locale. I learnt that the hard way...