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
This has to do with the __ARM_EABI__ conditional in unpack_template.h / pack_template.h.
If I set a build setting __ARM_EABI__ = 1, then it works, but this kinda sucks. Is there another way to conditionalize this hack for that platform without messing up the build for iOS?
The text was updated successfully, but these errors were encountered:
Thank you for reporting the problem. The ARM_EABI conditional in unpack_template.h and pack_template.h are required for dispatch the proccess ARM EABI / OABI.
I don't have iOS developing environment. I asked some iOS developers.The macro ARM_EABI is not defined on iOS developing environment. I don't know why, and I think that ARM_EABI should be defined is the platform is EABI. If we could get some different predefined macro for iOS, I would implement using it.
This has to do with the
__ARM_EABI__
conditional in unpack_template.h / pack_template.h.If I set a build setting
__ARM_EABI__ = 1
, then it works, but this kinda sucks. Is there another way to conditionalize this hack for that platform without messing up the build for iOS?The text was updated successfully, but these errors were encountered: