SomeRanDev / reflaxe.CPP

An alternative C++ target for Haxe that generates dependent-less, GC-less C++17 code.
MIT License
72 stars 5 forks source link

Compile Error: std not in class path #5

Closed onehundredfeet closed 1 year ago

onehundredfeet commented 1 year ago

Haxe-to-UnboundCPP/src/unboundcompiler/UnboundCompiler.hx:437: characters 15-28 : Type not found : ucpp.Compiler

since I'm including using haxelib, the class path only seems to find src and not std.

onehundredfeet commented 1 year ago

Adding : --class-path ../../Haxe-to-UnboundCPP/std to my project worked, not sure how to fix this given multiple paths in the haxelib.

SomeRanDev commented 1 year ago

Hello! This could possibly be due to incorrect installation? Check out the instructions at here.

The nightly part at the end of the haxelib git command is important, since that's the branch that combines all the source folders together for distribution. 😅

onehundredfeet commented 1 year ago

Yup. I was working out of the repo.

Thanks.