You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During haxe ios.hxml
the generated code has a missing :: for the Dynamic reference in the below class
This issue also seems to show up in xcode when using Lime to compile the code - lime build ios
hxml file contents:
-main Main
-lib heaps
-lib random
-lib lime
-cpp build/ios
-D HXCPP_ARM64
-D ios
--class-path Source
Error seen after build attempt:
./src/hxd/impl/Allocator/BufferFlags_Impl.cpp:52:65: error: must use 'class' tag to refer to type 'Dynamic' in this scope
52 | bool BufferFlags_Impl__obj::__GetStatic(const ::String &inName, Dynamic &outValue, ::hx::PropertyAccess inCallProp)
| ^
| class
./src/hxd/impl/Allocator/BufferFlags_Impl.cpp:33:28: note: class 'Dynamic' is hidden by a non-type declaration of 'Dynamic' here
33 | int BufferFlags_Impl__obj::Dynamic;
The text was updated successfully, but these errors were encountered:
Mdbaker19
changed the title
Error compiling Heaps and Haxe project to IOS with hxml
Error compiling project to IOS with hxml ::Dynamic in BufferFlags
Dec 31, 2024
During haxe ios.hxml
the generated code has a missing :: for the Dynamic reference in the below class
This issue also seems to show up in xcode when using Lime to compile the code - lime build ios
hxml file contents:
-main Main
-lib heaps
-lib random
-lib lime
-cpp build/ios
-D HXCPP_ARM64
-D ios
--class-path Source
Error seen after build attempt:
./src/hxd/impl/Allocator/BufferFlags_Impl.cpp:52:65: error: must use 'class' tag to refer to type 'Dynamic' in this scope
52 | bool BufferFlags_Impl__obj::__GetStatic(const ::String &inName, Dynamic &outValue, ::hx::PropertyAccess inCallProp)
| ^
| class
./src/hxd/impl/Allocator/BufferFlags_Impl.cpp:33:28: note: class 'Dynamic' is hidden by a non-type declaration of 'Dynamic' here
33 | int BufferFlags_Impl__obj::Dynamic;
The text was updated successfully, but these errors were encountered: