tobil4sk

Results 165 issues of tobil4sk

The Hashlink haxelib library can be used to generate Visual Studio project files. These project files make use of a `HASHLINK` environment variable ([see here](https://github.com/HaxeFoundation/hashlink/blob/a46d1483cdfe7e6356dd0ffa3de732853f1a43d1/other/haxelib/templates/vs2019/__file__.vcxproj#L74-L90)), pointing to the location where...

Not really sure what could have changed, but the tests stopped working for me (even at older commits that worked previously). Firstly, there is this warning at the beginning: ```...

Revert to previous behaviour (pre #510), so that if a dependency fails to install, the failure is not simply ignored.

https://lib.haxe.org/legacy/ Error given: ``` Uncaught exception - /var/haxelib-s3fs/legacy/haxelib.db should be the same as /var/www/html/legacy/haxelib.db Called from ? line 1 Called from legacyhaxelib/Site.hx line 261 Called from legacyhaxelib/Site.hx line 45 Called...

A while ago I noticed that the `subdir` and `tag`/`revision` features weren't documented so I created a PR to do that #531. I didn't notice however that the reason for...

The CI does not run properly for PRs, so there's no automatic way of seeing whether a PR's tests are succeeding. It fails at this part of the push job:...

As said in the title, trying to do `Sys.println(null)` results in a segmentation fault. From having a look through the code, it seems that from Dynamic it goes straight to...

Cleans up install script and documents how to use all the build/install commands. For installation, there is also an `install` target provided via vshaxe-build, but that results in a longer...

I installed lix locally (on Linux) for a single project, not intending to use it globally. However, I later realised that my regular projects that don't use lix stopped compiling...

Example: ```haxe final b = a + {final x = 10; x * x;}; // this is fine final b = {final x = 10; x * x;} + a;...