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
In OpenNI2/ThirdParty/PSCommon/BuildSystem/Platform.Arm this line should probably be removed.
CFLAGS += -march=armv7-a -mtune=cortex-a9 -mfpu=neon -mfloat-abi=softfp #-mcpu=cortex-a8
Not all arm systems are cortex-a9, armv7-a, support neon and most importantly some use hard float abis. These CFLAGS should be specified at compile time for a specific platform by passing them into make.
For example -mfloat-abi=softfp creates build errors on Ubuntu 14.04 armhf.
It seems that the neon is required. It should probably be noted somewhere that OpenNI2 only supports ARM with NEON.
The text was updated successfully, but these errors were encountered:
In OpenNI2/ThirdParty/PSCommon/BuildSystem/Platform.Arm this line should probably be removed.
CFLAGS += -march=armv7-a -mtune=cortex-a9 -mfpu=neon -mfloat-abi=softfp #-mcpu=cortex-a8
Not all arm systems are cortex-a9, armv7-a, support neon and most importantly some use hard float abis. These CFLAGS should be specified at compile time for a specific platform by passing them into make.
For example -mfloat-abi=softfp creates build errors on Ubuntu 14.04 armhf.
It seems that the neon is required. It should probably be noted somewhere that OpenNI2 only supports ARM with NEON.
The text was updated successfully, but these errors were encountered: