iOS: Don't try to use NEON drawhelpers, we don't build them

On iOS we don't build the NEON drawhelpers as they are implemented using
GAS syntax assembly, so prevent drawhelpers.cpp from trying to use them.

Follow-up to 01c59ac857.

Change-Id: I3e3dc9b0e1d780db3184413d2ff3010ac8dcd37b
Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
This commit is contained in:
Tor Arne Vestbø 2014-01-16 18:47:49 +01:00 committed by The Qt Project
parent e5066a3a2e
commit f34cba5db4

View File

@ -53,6 +53,13 @@
# endif
#endif
#include <qglobal.h>
#ifdef Q_OS_IOS
// We don't build the NEON drawhelpers as they are implemented partly
// in GAS syntax assembly, which is not supported by the iOS toolchain.
#undef __ARM_NEON__
#endif
#include <qstylehints.h>
#include <qguiapplication.h>
#include <qatomic.h>