-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/5.7' into dev
Conflicts: configure 5.7 now supports clang on android; but dev re-worked configure src/gui/kernel/qevent.h One side renamed a parameter of a constructor; the other added an alternate constructor on the next line. Applied the rename to both for consistency. tests/auto/tools/moc/tst_moc.cpp Each side added a new test at the end. .qmake.conf Ignored 5.7's change to MODULE_VERSION. configure.json No conflict noticed by git; but changes in 5.7 were needed for the re-worked configure to accommodate 5.7's stricter handling of C++11. Change-Id: I9cda53836a32d7bf83828212c7ea00b1de3e09d2
- Loading branch information
Showing
96 changed files
with
2,147 additions
and
789 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ COMPILER=$1 | |
VERBOSE=$2 | ||
|
||
case "$COMPILER" in | ||
icpc) | ||
*icpc) | ||
cat >header.h <<EOF | ||
#define HEADER_H | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# qmake configuration for building with android-g++ | ||
MAKEFILE_GENERATOR = UNIX | ||
QMAKE_PLATFORM = android | ||
QMAKE_COMPILER = gcc clang llvm | ||
|
||
CONFIG += android_install unversioned_soname unversioned_libname android_deployment_settings | ||
|
||
include(../common/linux.conf) | ||
include(../common/clang.conf) | ||
include(../common/android-base-head.conf) | ||
|
||
NDK_LLVM_PATH = $$NDK_ROOT/toolchains/llvm/prebuilt/$$NDK_HOST | ||
QMAKE_CC = $$NDK_LLVM_PATH/bin/clang | ||
QMAKE_CXX = $$NDK_LLVM_PATH/bin/clang++ | ||
QMAKE_GCC = $$NDK_TOOLCHAIN_PATH/bin/$$NDK_TOOLS_PREFIX-g++ | ||
|
||
equals(ANDROID_TARGET_ARCH, armeabi-v7a): \ | ||
QMAKE_CFLAGS = -target armv7-none-linux-androideabi | ||
else: equals(ANDROID_TARGET_ARCH, armeabi): \ | ||
QMAKE_CFLAGS = -target armv5te-none-linux-androideabi | ||
else: equals(ANDROID_TARGET_ARCH, arm64-v8a): \ | ||
QMAKE_CFLAGS = -target aarch64-none-linux-android | ||
else: equals(ANDROID_TARGET_ARCH, x86): \ | ||
QMAKE_CFLAGS = -target i686-none-linux-android | ||
else: equals(ANDROID_TARGET_ARCH, x86_64): \ | ||
QMAKE_CFLAGS = -target x86_64-none-linux-android | ||
else: equals(ANDROID_TARGET_ARCH, mips): \ | ||
QMAKE_CFLAGS += -target mipsel-none-linux-android | ||
else: equals(ANDROID_TARGET_ARCH, mips64): \ | ||
QMAKE_CFLAGS = -target mips64el-none-linux-android | ||
|
||
include(../common/android-base-tail.conf) |
Oops, something went wrong.