1

我在尝试为 Android 编译 Qt 5(在 linux x86_64 上)时遇到此错误:

cc1plus: error: -Werror=literal-suffix: no option -Wliteral-suffix

有人见过它或知道如何解决它吗?

编译器版本是“arm-linux-androideabi-g++ (GCC) 4.7”

发生错误时 make 正在运行的整个编译命令:

/home/triumph/Documents/android-ndk-r8e/toolchains/arm-linux-androideabi-4.7/prebuilt/linux-x86_64/bin/arm-linux-androideabi-g++ -c -Wno-psabi -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -ffunction-sections -funwind-tables -fstack-protector -fno-short-enums -DANDROID -Wa,--noexecstack -std=gnu++0x -Werror -Wno-error=cpp -Wno-error=deprecated-declarations -Wno-error=strict-overflow -Wno-error=literal-suffix -g -g -gdwarf-2 -marm -O0 -fno-omit-frame-pointer -fvisibility=hidden -fvisibility-inlines-hidden -Wall -Wno-psabi -W -D_REENTRANT -fPIC -DQT_NO_PRINTER -DQT_NO_PRINTDIALOG -DQT_NO_LIBUDEV -DQT_NO_XCB -DQT_NO_XKBCOMMON -DQT_NO_USING_NAMESPACE -DQT_BUILD_CORE_LIB -DQT_BUILDING_QT -DQT_NO_CAST_TO_ASCII -DQT_ASCII_CAST_WARNINGS -DQT_MOC_COMPAT -DQT_USE_QSTRINGBUILDER -DQT_DEPRECATED_WARNINGS -DQT_DISABLE_DEPRECATED_BEFORE=0x050000 -DPCRE_HAVE_CONFIG_H -DQT_CORE_LIB -I../../mkspecs/android-g++ -I. -I../../include -I../../include/QtCore -I../../include/QtCore/5.2.0 -I../../include/QtCore/5.2.0/QtCore -Iglobal -I../3rdparty/pcre -I../3rdparty/harfbuzz/src -I../3rdparty/md5 -I../3rdparty/md4 -I../3rdparty/sha3 -I.moc/debug-shared -I/home/triumph/Documents/android-ndk-r8e/sources/cxx-stl/gnu-libstdc++/4.7/include -I/home/triumph/Documents/android-ndk-r8e/sources/cxx-stl/gnu-libstdc++/4.7/libs/armeabi-v7a/include -I/home/triumph/Documents/android-ndk-r8e/platforms/android-9/arch-arm/usr/include -o .obj/debug-shared/qabstractanimation.o animation/qabstractanimation.cpp
4

3 回答 3

2

The problem is a fix made to qt_common.qrf.

The following line was added inside a code block for GCC 4.6 to 4.8, but it references a compiler directive added to GCC 4.7, and therefore produces failing Makefiles when used with GCC 4.6

            android: QMAKE_CXXFLAGS += -Wno-error=literal-suffix

The solution is to modify the file and add a condition on that line:

        contains(ver, "4\\.[78]") { // Doesn't apply to 4.6
            android: QMAKE_CXXFLAGS += -Wno-error=literal-suffix
    }
于 2013-10-28T15:47:36.870 回答
0

我得到了同样的错误。我通过从 Makefile (./qt5/qtbase/src/corelib/) 的 CXXFLAGS 行中删除“-Wno-error=literal-suffix”来解决这个问题。

我还在 corelib/global/qlogging.cpp 中的 switch 语句中添加了一些 default: 条目,它处理了 msgType(例如 QtFatalMsg:等),因为编译器抱怨 QtTraceMsg 没有被处理。我将默认情况视为“警告”(将其视为致命错误可能更安全)。

ps 我使用当前 git (5.2alpha) 和 Laszlo 的“官方构建说明”建议的自定义 ndk-r8e 版本遇到了错误。使用带有 qt git tag v5.1.1 的 google 最新的 ndk-r9 时,我没有收到此错误(我不知道是不同的 ndk 还是不同的 git 版本造成了差异)。

于 2013-10-03T07:40:24.763 回答
0

将 5.2.0-alpha1 标签与自定义 android-ndk-r8e 一起使用时,我遇到了同样的问题。

通过切换到 v5.1.1 进行修复:

从您之前的构建尝试中清理。利用

git clean -f

在您的 qt5 目录以及任何脏的子模块目录中。之后,从您的 qt5 目录:

git checkout v5.1.1
git submodule update --recursive

用你的 QT ./configure 命令(和任何参数)重新配置,然后 make。

于 2013-10-07T07:42:28.330 回答