summaryrefslogtreecommitdiff
path: root/config.tests
diff options
context:
space:
mode:
authorGirish Ramakrishnan <girish.1.ramakrishnan@nokia.com>2012-03-08 04:08:58 -0800
committerQt by Nokia <qt-info@nokia.com>2012-03-09 14:54:09 +0100
commit0b1bc97509c34881b1ee2f3bc7283a5772be9a44 (patch)
tree54dca95561e77814a438ec7229ccb139feee24d6 /config.tests
parent1a03bd56a5f1a10e901166d87fe52ca2c7a18a25 (diff)
downloadqtjsbackend-0b1bc97509c34881b1ee2f3bc7283a5772be9a44.tar.gz
Don't assume hardfloat passing convention.
Add configure test to detect the floating point abi. Test the value of the test in the v8.pri to enable hardfloat usage. Change-Id: I2312763bb1b814915a74e734ab477ba66f1ee0d2 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
Diffstat (limited to 'config.tests')
-rw-r--r--config.tests/hardfloat/hardfloat.cpp48
-rw-r--r--config.tests/hardfloat/hardfloat.pro15
2 files changed, 63 insertions, 0 deletions
diff --git a/config.tests/hardfloat/hardfloat.cpp b/config.tests/hardfloat/hardfloat.cpp
new file mode 100644
index 0000000..7b36d5c
--- /dev/null
+++ b/config.tests/hardfloat/hardfloat.cpp
@@ -0,0 +1,48 @@
+/****************************************************************************
+**
+** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/
+**
+** This file is part of the config.tests of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this
+** file. Please review the following information to ensure the GNU Lesser
+** General Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU General
+** Public License version 3.0 as published by the Free Software Foundation
+** and appearing in the file LICENSE.GPL included in the packaging of this
+** file. Please review the following information to ensure the GNU General
+** Public License version 3.0 requirements will be met:
+** http://www.gnu.org/copyleft/gpl.html.
+**
+** Other Usage
+** Alternatively, this file may be used in accordance with the terms and
+** conditions contained in a signed written agreement between you and Nokia.
+**
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+int main(int, char**)
+{
+ // pretend to do some floating point math, but none of this is required
+ double a = 0.03, b = 16.05;
+ double c = a * b;
+ return (int)c;
+}
diff --git a/config.tests/hardfloat/hardfloat.pro b/config.tests/hardfloat/hardfloat.pro
new file mode 100644
index 0000000..6aa1dd8
--- /dev/null
+++ b/config.tests/hardfloat/hardfloat.pro
@@ -0,0 +1,15 @@
+CONFIG -= x11 qt
+SOURCES = hardfloat.cpp
+OBJECTS_DIR = obj
+QMAKE_CXXFLAGS += -MD
+
+equals(QT_ARCH, "arm"):unix {
+ test.commands = readelf -A hardfloat | grep -q \'Tag_ABI_VFP_args: VFP registers\'
+ test.depends = hardfloat
+ QMAKE_EXTRA_TARGETS += test
+
+ default.target = all
+ default.depends += test
+ QMAKE_EXTRA_TARGETS += default
+}
+