On Sat, 17 Jan 2026 10:58:50 -0500
Kurt Miller <[email protected]> wrote:
> with that addition it builds ok on aarch64. Not sure I fully
> understood the test instructions. This command fails:
>
> m2$ haxe -hl out/main.c -main Main
> Called from
> /usr/obj/ports/haxe-4.3.6/haxe-4.3.6/std/neko/_std/EReg.hx line 205
> Uncaught exception - load.c(237) : Failed to load library :
> regexp.ndll (File not found) Error: Build failed
CLI syntax is a bit weird. I ran the hello world on amd64 this way:
babcom6:haxe$ cat Main.hx
class Main {
static public function main():Void {
// Single line comment
trace("Hello World");
}
}
babcom6:haxe$ haxe -hl test.hl -main Main
babcom6:haxe$ l
Main.hx test.hl
babcom6:haxe$ hl test.hl
Main.hx:4: Hello World
babcom6:haxe$