tobil4sk

Results 366 comments of tobil4sk

Are you sure the problem is with `Sys.getCwd()`? I've run into similar issues where the strings returned from system functions were correct, but they were printed incorrectly: https://github.com/HaxeFoundation/hxcpp/pull/880 Maybe test:...

The correct fix might be to add this library here instead: https://github.com/openfl/lime/blob/95baa58effaff3f6158d642873dd329a8f6e048a/templates/cpp/static/BuildMain.xml#L37

I suppose an issue with the reverse iterator is that it could be used with values that are unknown at compile time, e.g. ```haxe final x = getSomeInt(); // Forward...

> Anything changed fairly recently which could cause this? I think this is due to https://github.com/HaxeFoundation/haxe/pull/11653. Previously the haxelib binary had the same rpath as the neko binary, which included...

Hello, this seems to contradict the troubleshooting page: https://docs.github.com/en/pages/configuring-a-custom-domain-for-your-github-pages-site/troubleshooting-custom-domains-and-github-pages#cname-errors > If you are publishing from a custom GitHub Actions workflow, any CNAME file is ignored and is not required. Which...

The official guide for neovim treesitter says to move these manually: https://github.com/nvim-treesitter/nvim-treesitter#adding-parsers. If this is added to the official nvim-treesitter plugin, the extra configuration steps can be avoided. Aside from...

The arm64 builds of neko are now available at https://build.haxe.org/builds/neko/mac-arm64/. However, the mac installer package script needs to be updated to use a universal binary for neko as well.

The next step is to create universal neko binaries. The easiest way to do this is to update the neko repo so that it also creates them. The makefile for...

> I guess I should set compressed to false to avoid that haxelib try to unzip an already decompressed data This was only done for neko, which means it is...

MSVC also warns about this: ``` ...\src\hlc_main.c(133,14): warning C4013: 'wmain' undefined; assuming extern returning int ```