summaryrefslogtreecommitdiffstats
path: root/config.tests/hostcompiler
diff options
context:
space:
mode:
Diffstat (limited to 'config.tests/hostcompiler')
-rw-r--r--config.tests/hostcompiler/hostcompiler.pro9
-rw-r--r--config.tests/hostcompiler/main.cpp9
2 files changed, 0 insertions, 18 deletions
diff --git a/config.tests/hostcompiler/hostcompiler.pro b/config.tests/hostcompiler/hostcompiler.pro
deleted file mode 100644
index 5a80246ab..000000000
--- a/config.tests/hostcompiler/hostcompiler.pro
+++ /dev/null
@@ -1,9 +0,0 @@
-option(host_build)
-
-gcc:equals(QT_ARCH, "x86_64"):contains(QT_TARGET_ARCH, "arm"):!contains(QT_TARGET_ARCH, "arm64") {
- QMAKE_CXXFLAGS += -m32
- QMAKE_LFLAGS += -m32
-}
-
-SOURCES = main.cpp
-
diff --git a/config.tests/hostcompiler/main.cpp b/config.tests/hostcompiler/main.cpp
deleted file mode 100644
index 1676f7a26..000000000
--- a/config.tests/hostcompiler/main.cpp
+++ /dev/null
@@ -1,9 +0,0 @@
-// Copyright (C) 2018 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
-
-#include <stdio.h>
-int main()
-{
- printf("This works\n");
- return 0;
-}