博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
qt5 embeded compile
阅读量:4059 次
发布时间:2019-05-25

本文共 22343 字,大约阅读时间需要 74 分钟。

#!/bin/bash

./configure -prefix /home/shell.albert/oristar/build \
-release \
-opensource \
-confirm-license \
-no-c++11 \
-shared \
-process \
-largefile \
-accessibility \
-qt-sql-sqlite \
-qt-sql-mysql \
-plugin-sql-sqlite \
-plugin-sql-mysql \
-no-qml-debug \
-no-sse2 \
-no-sse3 \
-no-ssse3 \
-no-sse4.1 \
-no-sse4.2 \
-no-avx \
-no-avx2 \
-no-mips_dsp \
-no-mips_dspr2 \
-no-pkg-config \
-qt-zlib \
-mtdev \
-no-journald \
-qt-libpng \
-qt-libjpeg \
-qt-freetype \
-no-harfbuzz \
-openssl \
-qt-pcre \
-qt-xcb \
-xkb-config-root \
-qt-xkbcommon \
-xinput2 \
-xcb-xlib \
-glib \
-no-pulseaudio \
-no-alsa \
-no-gtkstyle \
-make libs \
-make tools \
-nomake examples \
-verbose \
-no-nis \
-no-cups \
-iconv \
-evdev \
-icu \
-fontcofig \
-strip \
-no-pch \
-dbus \
-xcb \
-no-eglfs \
-directfb \
-linuxfb \
-no-kms \
-qpa xcb  \
-xplatform linux-arm-gnueabi-g++  \
-qreal float \
-no-opengl

Running configuration tests...

Warning: Disabling pkg-config since PKG_CONFIG_LIBDIR is not set.
Warning: Disabling pkg-config since PKG_CONFIG_SYSROOT_DIR is not set.
Determining architecture... ()
/opt/arm/4.4.3/bin/arm-none-linux-gnueabi-g++ -c -pipe -g -Wall -W -fPIE  -I../../mkspecs/linux-arm-gnueabi-g++ -I. -o arch.o arch.cpp
/opt/arm/4.4.3/bin/arm-none-linux-gnueabi-g++  -o arch arch.o    
    Found architecture in binary
CFG_ARCH="arm"
CFG_CPUFEATURES=""
Determining architecture... ()
g++ -c -pipe -g -Wall -W -fPIE  -I../../mkspecs/linux-g++ -I. -o arch.o arch.cpp
g++  -o arch arch.o    
    Found architecture in binary
CFG_HOST_ARCH="x86_64"
CFG_HOST_CPUFEATURES=" mmx sse sse2"
System architecture: 'arm'
Host architecture: 'x86_64'
floatmath auto-detection... ()
/opt/arm/4.4.3/bin/arm-none-linux-gnueabi-g++ -c -pipe -O2 -Wall -W -fPIE  -I../../../mkspecs/linux-arm-gnueabi-g++ -I. -o floatmath.o floatmath.cpp
floatmath.cpp:44: warning: unused parameter 'argc'
floatmath.cpp:44: warning: unused parameter 'argv'
/opt/arm/4.4.3/bin/arm-none-linux-gnueabi-g++ -Wl,-O1 -o floatmath floatmath.o    
floatmath enabled.
sse2 auto-detection... ()
/opt/arm/4.4.3/bin/arm-none-linux-gnueabi-g++ -c -pipe -msse2 -g -Wall -W -fPIE  -I../../../mkspecs/linux-arm-gnueabi-g++ -I. -o sse2.o sse2.cpp
cc1plus: error: unrecognized command line option "-msse2"
Makefile:376: recipe for target 'sse2.o' failed
gmake: *** [sse2.o] Error 1
sse2 disabled.
mtdev auto-detection... ()
Project ERROR: mtdev development package not found
mtdev disabled.
DB2 auto-detection... ()
/opt/arm/4.4.3/bin/arm-none-linux-gnueabi-g++ -c -pipe -O2 -Wall -W -fPIE  -I../../../mkspecs/linux-arm-gnueabi-g++ -I. -o db2.o db2.cpp
db2.cpp:42:20: error: sqlcli.h: No such file or directory
db2.cpp:43:21: error: sqlcli1.h: No such file or directory
Makefile:376: recipe for target 'db2.o' failed
gmake: *** [db2.o] Error 1
DB2 disabled.
InterBase auto-detection... ()
/opt/arm/4.4.3/bin/arm-none-linux-gnueabi-g++ -c -pipe -O2 -Wall -W -fPIE  -I../../../mkspecs/linux-arm-gnueabi-g++ -I. -o ibase.o ibase.cpp
ibase.cpp:42:19: error: ibase.h: No such file or directory
Makefile:376: recipe for target 'ibase.o' failed
gmake: *** [ibase.o] Error 1
InterBase disabled.
MySQL (thread-safe) auto-detection... ()
/opt/arm/4.4.3/bin/arm-none-linux-gnueabi-g++ -c -pipe -O2 -Wall -W -fPIE  -I../../../mkspecs/linux-arm-gnueabi-g++ -I. -I/usr/include/mysql -o mysql.o ../mysql/mysql.cpp
/opt/arm/4.4.3/bin/arm-none-linux-gnueabi-g++ -Wl,-O1 -o mysql_r mysql.o   -L/usr/lib64 -lpthread -lz -lm -lssl -lcrypto -ldl -lmysqlclient_r
/opt/arm/4.4.3/bin/../lib/gcc/arm-none-linux-gnueabi/4.4.3/../../../../arm-none-linux-gnueabi/bin/ld: skipping incompatible /usr/lib64/libpthread.so when searching for -lpthread
/usr/lib64/libz.so: file not recognized: File format not recognized
collect2: ld returned 1 exit status
Makefile:166: recipe for target 'mysql_r' failed
gmake: *** [mysql_r] Error 1
MySQL (thread-safe) disabled.
MySQL (thread-unsafe) auto-detection... ()
/opt/arm/4.4.3/bin/arm-none-linux-gnueabi-g++ -c -pipe -O2 -Wall -W -fPIE  -I../../../mkspecs/linux-arm-gnueabi-g++ -I. -I/usr/include/mysql -o mysql.o mysql.cpp
/opt/arm/4.4.3/bin/arm-none-linux-gnueabi-g++ -Wl,-O1 -o mysql mysql.o   -L/usr/lib64 -lpthread -lz -lm -lssl -lcrypto -ldl -lmysqlclient
/opt/arm/4.4.3/bin/../lib/gcc/arm-none-linux-gnueabi/4.4.3/../../../../arm-none-linux-gnueabi/bin/ld: skipping incompatible /usr/lib64/libpthread.so when searching for -lpthread
/usr/lib64/libz.so: file not recognized: File format not recognized
collect2: ld returned 1 exit status
Makefile:166: recipe for target 'mysql' failed
gmake: *** [mysql] Error 1
MySQL (thread-unsafe) disabled.
OCI auto-detection... ()
/opt/arm/4.4.3/bin/arm-none-linux-gnueabi-g++ -c -pipe -O2 -Wall -W -fPIE  -I../../../mkspecs/linux-arm-gnueabi-g++ -I. -o oci.o oci.cpp
oci.cpp:42:17: error: oci.h: No such file or directory
Makefile:376: recipe for target 'oci.o' failed
gmake: *** [oci.o] Error 1
OCI disabled.
ODBC auto-detection... ()
/opt/arm/4.4.3/bin/arm-none-linux-gnueabi-g++ -c -pipe -O2 -Wall -W -fPIE  -I../../../mkspecs/linux-arm-gnueabi-g++ -I. -o odbc.o odbc.cpp
odbc.cpp:45:17: error: sql.h: No such file or directory
odbc.cpp:46:20: error: sqlext.h: No such file or directory
Makefile:376: recipe for target 'odbc.o' failed
gmake: *** [odbc.o] Error 1
ODBC disabled.
iODBC auto-detection... ()
/opt/arm/4.4.3/bin/arm-none-linux-gnueabi-g++ -c -pipe -O2 -Wall -W -fPIE  -I../../../mkspecs/linux-arm-gnueabi-g++ -I. -o iodbc.o iodbc.cpp
iodbc.cpp:42:17: error: sql.h: No such file or directory
iodbc.cpp:43:20: error: sqlext.h: No such file or directory
Makefile:376: recipe for target 'iodbc.o' failed
gmake: *** [iodbc.o] Error 1
iODBC disabled.
PostgreSQL auto-detection... ()
/opt/arm/4.4.3/bin/arm-none-linux-gnueabi-g++ -c -pipe -O2 -Wall -W -fPIE  -I../../../mkspecs/linux-arm-gnueabi-g++ -I. -o psql.o psql.cpp
psql.cpp:42:22: error: libpq-fe.h: No such file or directory
psql.cpp: In function 'int main(int, char**)':
psql.cpp:46: error: 'PQescapeBytea' was not declared in this scope
psql.cpp:47: error: 'PQunescapeBytea' was not declared in this scope
Makefile:376: recipe for target 'psql.o' failed
gmake: *** [psql.o] Error 1
PostgreSQL disabled.
SQLite2 auto-detection... ()
/opt/arm/4.4.3/bin/arm-none-linux-gnueabi-g++ -c -pipe -O2 -Wall -W -fPIE  -I../../../mkspecs/linux-arm-gnueabi-g++ -I. -o sqlite2.o sqlite2.cpp
sqlite2.cpp:42:20: error: sqlite.h: No such file or directory
Makefile:376: recipe for target 'sqlite2.o' failed
gmake: *** [sqlite2.o] Error 1
SQLite2 disabled.
TDS auto-detection... ()
/opt/arm/4.4.3/bin/arm-none-linux-gnueabi-g++ -c -pipe -O2 -Wall -W -fPIE  -I../../../mkspecs/linux-arm-gnueabi-g++ -I. -o tds.o tds.cpp
tds.cpp:42:22: error: sybfront.h: No such file or directory
tds.cpp:43:19: error: sybdb.h: No such file or directory
Makefile:376: recipe for target 'tds.o' failed
gmake: *** [tds.o] Error 1
TDS disabled.
NIS auto-detection... ()
/opt/arm/4.4.3/bin/arm-none-linux-gnueabi-g++ -c -pipe -O2 -Wall -W -fPIE  -I../../../mkspecs/linux-arm-gnueabi-g++ -I. -o nis.o nis.cpp
/opt/arm/4.4.3/bin/arm-none-linux-gnueabi-g++ -Wl,-O1 -o nis nis.o   -lnsl
NIS enabled.
POSIX iconv auto-detection... ()
/opt/arm/4.4.3/bin/arm-none-linux-gnueabi-g++ -c -pipe -O2 -Wall -W -fPIE  -I../../../mkspecs/linux-arm-gnueabi-g++ -I. -o iconv.o iconv.cpp
/opt/arm/4.4.3/bin/arm-none-linux-gnueabi-g++ -Wl,-O1 -o iconv iconv.o    
POSIX iconv enabled.
D-Bus auto-detection... ()
/opt/arm/4.4.3/bin/arm-none-linux-gnueabi-g++ -c -pipe -O2 -Wall -W -fPIE  -I../../../mkspecs/linux-arm-gnueabi-g++ -I. -o dbus.o dbus.cpp
dbus.cpp:43:23: error: dbus/dbus.h: No such file or directory
dbus.cpp:46:2: error: #error Needs at least dbus version 1
dbus.cpp: In function 'int main(int, char**)':
dbus.cpp:51: error: 'dbus_shutdown' was not declared in this scope
Makefile:376: recipe for target 'dbus.o' failed
gmake: *** [dbus.o] Error 1
D-Bus disabled.
Glib auto-detection... ()
/opt/arm/4.4.3/bin/arm-none-linux-gnueabi-g++ -c -pipe -O2 -Wall -W -fPIE  -I../../../mkspecs/linux-arm-gnueabi-g++ -I. -o glib.o glib.cpp
glib.cpp:44:18: error: glib.h: No such file or directory
glib.cpp: In function 'int main(int, char**)':
glib.cpp:49: error: 'GSource' was not declared in this scope
glib.cpp:49: error: 'source' was not declared in this scope
glib.cpp:50: error: 'GPollFD' was not declared in this scope
glib.cpp:50: error: 'pollfd' was not declared in this scope
glib.cpp:51: error: 'g_thread_supported' was not declared in this scope
glib.cpp:52: error: 'NULL' was not declared in this scope
glib.cpp:52: error: 'g_thread_init' was not declared in this scope
glib.cpp:53: error: 'g_main_context_default' was not declared in this scope
glib.cpp:54: error: 'g_source_new' was not declared in this scope
glib.cpp:55: error: 'g_source_add_poll' was not declared in this scope
Makefile:376: recipe for target 'glib.o' failed
gmake: *** [glib.o] Error 1
Glib disabled.
ICU auto-detection... ()
/opt/arm/4.4.3/bin/arm-none-linux-gnueabi-g++ -c -pipe -O2 -Wall -W -fPIE  -I../../../mkspecs/linux-arm-gnueabi-g++ -I. -o icu.o icu.cpp
icu.cpp:42:28: error: unicode/utypes.h: No such file or directory
icu.cpp:43:26: error: unicode/ucol.h: No such file or directory
icu.cpp:44:29: error: unicode/ustring.h: No such file or directory
icu.cpp: In function 'int main(int, char**)':
icu.cpp:48: error: 'UErrorCode' was not declared in this scope
icu.cpp:48: error: expected ';' before 'status'
icu.cpp:49: error: 'UCollator' was not declared in this scope
icu.cpp:49: error: 'collator' was not declared in this scope
icu.cpp:49: error: 'status' was not declared in this scope
icu.cpp:49: error: 'ucol_open' was not declared in this scope
icu.cpp:50: error: 'U_FAILURE' was not declared in this scope
icu.cpp:52: error: 'ucol_close' was not declared in this scope
Makefile:376: recipe for target 'icu.o' failed
gmake: *** [icu.o] Error 1
ICU disabled.
FontConfig auto-detection... ()
/opt/arm/4.4.3/bin/arm-none-linux-gnueabi-g++ -c -pipe -O2 -Wall -W -fPIE  -I../../../mkspecs/linux-arm-gnueabi-g++ -I. -o fontconfig.o fontconfig.cpp
fontconfig.cpp:42:22: error: ft2build.h: No such file or directory
fontconfig.cpp:43:10: error: #include expects "FILENAME" or <FILENAME>
fontconfig.cpp:44:35: error: fontconfig/fontconfig.h: No such file or directory
fontconfig.cpp:47:4: error: #error "This version of fontconfig is tool old, it is missing the FC_RGBA_UNKNOWN define"
fontconfig.cpp:51:4: error: #error "This version of freetype is too old."
fontconfig.cpp: In function 'int main(int, char**)':
fontconfig.cpp:56: error: 'FT_Face' was not declared in this scope
fontconfig.cpp:56: error: expected ';' before 'face'
fontconfig.cpp:57: error: 'face' was not declared in this scope
fontconfig.cpp:58: error: 'FcPattern' was not declared in this scope
fontconfig.cpp:58: error: 'pattern' was not declared in this scope
Makefile:379: recipe for target 'fontconfig.o' failed
gmake: *** [fontconfig.o] Error 1
FontConfig disabled.
libudev auto-detection... ()
/opt/arm/4.4.3/bin/arm-none-linux-gnueabi-g++ -c -pipe -O2 -Wall -W -fPIE  -I../../../mkspecs/linux-arm-gnueabi-g++ -I. -o libudev.o libudev.cpp
libudev.cpp:42:21: error: libudev.h: No such file or directory
libudev.cpp: In function 'int main()':
libudev.cpp:46: error: 'udev' was not declared in this scope
libudev.cpp:46: error: 'u' was not declared in this scope
libudev.cpp:46: error: 'udev_new' was not declared in this scope
libudev.cpp:47: error: 'udev_unref' was not declared in this scope
Makefile:376: recipe for target 'libudev.o' failed
gmake: *** [libudev.o] Error 1
libudev disabled.
evdev auto-detection... ()
/opt/arm/4.4.3/bin/arm-none-linux-gnueabi-g++ -c -pipe -O2 -Wall -W -fPIE  -I../../../mkspecs/linux-arm-gnueabi-g++ -I. -o evdev.o evdev.cpp
/opt/arm/4.4.3/bin/arm-none-linux-gnueabi-g++ -Wl,-O1 -o evdev evdev.o    
evdev enabled.
XLib auto-detection... ()
/opt/arm/4.4.3/bin/arm-none-linux-gnueabi-g++ -c -pipe -O2 -Wall -W -fPIE  -I../../../mkspecs/linux-arm-gnueabi-g++ -I. -o xlib.o xlib.cpp
xlib.cpp:42:22: error: X11/Xlib.h: No such file or directory
xlib.cpp: In function 'int main(int, char**)':
xlib.cpp:46: error: 'Display' was not declared in this scope
xlib.cpp:46: error: 'd' was not declared in this scope
xlib.cpp:46: error: 'NULL' was not declared in this scope
xlib.cpp:46: error: 'XOpenDisplay' was not declared in this scope
xlib.cpp:47: error: 'XCloseDisplay' was not declared in this scope
Makefile:385: recipe for target 'xlib.o' failed
gmake: *** [xlib.o] Error 1
XLib disabled.
Xrender auto-detection... ()
/opt/arm/4.4.3/bin/arm-none-linux-gnueabi-g++ -c -pipe -O2 -Wall -W -fPIE  -I../../../mkspecs/linux-arm-gnueabi-g++ -I. -o xrender.o xrender.cpp
xrender.cpp:42:22: error: X11/Xlib.h: No such file or directory
xrender.cpp:43:36: error: X11/extensions/Xrender.h: No such file or directory
xrender.cpp:46:4: error: #error "Required Xrender version 0.6 not found."
Makefile:385: recipe for target 'xrender.o' failed
gmake: *** [xrender.o] Error 1
Xrender disabled.
XInput2 auto-detection... ()
/opt/arm/4.4.3/bin/arm-none-linux-gnueabi-g++ -c -pipe -O2 -Wall -W -fPIE  -I../../../mkspecs/linux-arm-gnueabi-g++ -I. -o xinput2.o xinput2.cpp
xinput2.cpp:42:22: error: X11/Xlib.h: No such file or directory
xinput2.cpp:43:36: error: X11/extensions/XInput2.h: No such file or directory
xinput2.cpp:44:32: error: X11/extensions/Xge.h: No such file or directory
xinput2.cpp:47:4: error: #error "Missing XInput_2_0 #define"
xinput2.cpp: In function 'int main(int, char**)':
xinput2.cpp:53: error: 'Display' was not declared in this scope
xinput2.cpp:53: error: 'dpy' was not declared in this scope
xinput2.cpp:54: error: 'XEvent' was not declared in this scope
xinput2.cpp:54: error: expected ';' before 'xevent'
xinput2.cpp:55: error: 'xevent' was not declared in this scope
xinput2.cpp:55: error: 'XGetEventData' was not declared in this scope
xinput2.cpp:56: error: 'XFreeEventData' was not declared in this scope
xinput2.cpp:59: error: 'XIEvent' was not declared in this scope
xinput2.cpp:59: error: 'xievent' was not declared in this scope
xinput2.cpp:62: error: 'XIDeviceEvent' was not declared in this scope
xinput2.cpp:62: error: 'xideviceevent' was not declared in this scope
xinput2.cpp:65: error: 'XIHierarchyEvent' was not declared in this scope
xinput2.cpp:65: error: 'xihierarchyevent' was not declared in this scope
xinput2.cpp:70: error: 'Atom' was not declared in this scope
xinput2.cpp:70: error: 'atoms' was not declared in this scope
xinput2.cpp:70: error: 'XIListProperties' was not declared in this scope
xinput2.cpp:72: error: 'XFree' was not declared in this scope
Makefile:385: recipe for target 'xinput2.o' failed
gmake: *** [xinput2.o] Error 1
XInput2 disabled.
xcb auto-detection... ()
/opt/arm/4.4.3/bin/arm-none-linux-gnueabi-g++ -c -pipe -O2 -Wall -W -fPIE  -I../../../mkspecs/linux-arm-gnueabi-g++ -I. -o xcb.o xcb.cpp
xcb.cpp:42:21: error: xcb/xcb.h: No such file or directory
xcb.cpp: In function 'int main(int, char**)':
xcb.cpp:47: error: 'xcb_connection_t' was not declared in this scope
xcb.cpp:47: error: 't' was not declared in this scope
xcb.cpp:47: error: 'xcb_connect' was not declared in this scope
Makefile:376: recipe for target 'xcb.o' failed
gmake: *** [xcb.o] Error 1
xcb disabled.
The test for linking against libxcb failed!
 You might need to install dependency packages for libxcb.
 See src/plugins/platforms/xcb/README.
bioequ@localhost:~/tools/qt-everywhere-opensource-src-5.3.2>
bioequ@localhost:~/tools/qt-everywhere-opensource-src-5.3.2> ifconfig
Absolute path to 'ifconfig' is '/sbin/ifconfig', so running it may require superuser privileges (eg. root).
bioequ@localhost:~/tools/qt-everywhere-opensource-src-5.3.2>
 

linaro@linaro-ubuntu-desktop:~/qt5emb$ ls

bin  imports  lib      plugins  qml      qt.conf~      ZSubtitle
doc  include  mkspecs  PMS.ini  qt.conf  translations
linaro@linaro-ubuntu-desktop:~/qt5emb$ cat qt.conf
[Paths]
Prefix=/home/linaro/qt5emb
Libraries=lib
Binaries=bin
Plugins=plugins
linaro@linaro-ubuntu-desktop:~/qt5emb$ ./ZSubtitle
This application failed to start because it could not find or load the Qt platform plugin "xcb".
Available platform plugins are: linuxfb, minimal, offscreen.
Reinstalling the application may fix this problem.
已放弃 (核心已转储)
linaro@linaro-ubuntu-desktop:~/qt5emb$ ./ZSubtitle -platform linuxfb
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
^C
linaro@linaro-ubuntu-desktop:~/qt5emb$ ./ZSubtitle -platform linuxfb
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
c^C
linaro@linaro-ubuntu-desktop:~/qt5emb$ ./ZSubtitle -platform linuxfb
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
^C
linaro@linaro-ubuntu-desktop:~/qt5emb$ clear
linaro@linaro-ubuntu-desktop:~/qt5emb$ ./ZSubtitle -platform linuxfb
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
^C
linaro@linaro-ubuntu-desktop:~/qt5emb$ ./ZSubtitle -platform linuxfb
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
^C
linaro@linaro-ubuntu-desktop:~/qt5emb$ ./ZSubtitle -platform linuxfb
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
QSqlDatabase: QMYSQL driver not loaded
QSqlDatabase: available drivers: QSQLITE
open database failed! QSqlError("", "Driver not loaded", "Driver not loaded")
^C

转载地址:http://tzzji.baihongyu.com/

你可能感兴趣的文章
QT打开项目提示no valid settings file could be found
查看>>
Win10+VS+ESP32环境搭建
查看>>
android 代码实现圆角
查看>>
flutter-解析json
查看>>
android中shader的使用
查看>>
java LinkedList与ArrayList迭代器遍历和for遍历对比
查看>>
drat中构造方法
查看>>
JavaScript的一些基础-数据类型
查看>>
ReactNative使用Redux例子
查看>>
Promise的基本使用
查看>>
coursesa课程 Python 3 programming 统计文件有多少单词
查看>>
course_2_assessment_6
查看>>
coursesa课程 Python 3 programming course_2_assessment_7 多参数函数练习题
查看>>
coursesa课程 Python 3 programming course_2_assessment_8 sorted练习题
查看>>
在unity中建立最小的shader(Minimal Shader)
查看>>
1.3 Debugging of Shaders (调试着色器)
查看>>
关于phpcms中模块_tag.class.php中的pc_tag()方法的含义
查看>>
linux安装usb wifi接收器
查看>>
多线程使用随机函数需要注意的一点
查看>>
getpeername,getsockname
查看>>