c++ - 在 OS X 上构建 Qt QIBASE 驱动程序

标签 c++ macos qt firebird qmake

我在为 Qt 构建 QIBASE SQL 驱动程序时遇到问题,以便能够在 OS X 上将 Firebird 与 Qt 结合使用。

我找到了这个快速指南:http://qt-project.org/doc/qt-4.8/sql-driver.html#qibase但好像不太正确。

Firebird 已安装,其头文件为:

/Library/Frameworks/Firebird.framework/Headers/

dylib 文件是:

/Library/Frameworks/Firebird.framework/Libraries/

我已经从以下位置下载了 Qt 4.8.4 源代码:http://qt-project.org/downloads#qt-lib并将其提取到:

~/devel/qt

所以我更改了第一个链接上的代码:

cd $QTDIR/src/plugins/sqldrivers/ibase
qmake "INCLUDEPATH+=/opt/interbase/include" "LIBS+=-L/opt/interbase/lib -lfbclient" ibase.pro
make

致:

cd ~/devel/qt/src/plugins/sqldrivers/ibase
qmake -spec macx-g++ "INCLUDEPATH+=/Library/Frameworks/Firebird.framework/Headers" "LIBS+=-L/Library/Frameworks/Firebird.framework/Libraries -lfbclient" ibase.pro
make

我从 make 中收到以下错误:

In file included from main.cpp:44:
../../../sql/drivers/ibase/qsql_ibase.h:47:46: error: QtSql/private/qsqlcachedresult_p.h: No such file or directory
In file included from main.cpp:44:
../../../sql/drivers/ibase/qsql_ibase.h:58: error: expected class-name before ‘{’ token
../../../sql/drivers/ibase/qsql_ibase.h:70: error: ‘QSqlCachedResult’ has not been declared
../../../sql/drivers/ibase/qsql_ibase.h:70: error: expected ‘,’ or ‘...’ before ‘&’ token
make[1]: *** [debug/main.o] Error 1
make: *** [debug] Error 2

所以我运行mdfind qsqlcachedresult_p.h | grep qsqlcachedresult_p.h 我得到的唯一结果是:

~/devel/qt/src/sql/kernel/qsqlcachedresult_p.h
~/devel/qt/include/QtSql/private/qsqlcachedresult_p.h

请记住,它似乎并不作为我安装的 Qt SDK 的一部分存在,并且位于 /Library/Frameworks/Qt*.framework 的默认位置。

所以我尝试将 devel qt src 文件添加到 INCLUDEPATH 并尝试再次运行 qmake:

cd ~/devel/qt/src/plugins/sqldrivers/ibase
qmake -spec macx-g++ "INCLUDEPATH+=~/devel/qt/include" "INCLUDEPATH+=/Library/Frameworks/Firebird.framework/Headers" "LIBS+=-L/Library/Frameworks/Firebird.framework/Libraries -lfbclient" ibase.pro
make

但现在我收到一大堆“未命名类型”错误以及 error: #error “Qt 尚未移植到此架构”error: #error “Qt 未正确配置,请运行配置”错误:../../src/corelib/global/qconfig.h:没有这样的文件或目录。 make 返回的全部内容在这里:

In file included from ../../../../include/QtCore/../../src/corelib/global/qglobal.h:62,
                 from ../../../../include/QtCore/qglobal.h:1,
                 from ../../../../include/QtCore/../../src/corelib/global/qnamespace.h:45,
                 from ../../../../include/QtCore/qnamespace.h:1,
                 from ../../../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h:45,
                 from ../../../../include/QtCore/qobjectdefs.h:1,
                 from ../../../../include/QtCore/../../src/corelib/kernel/qobject.h:47,
                 from ../../../../include/QtCore/qobject.h:1,
                 from ../../../../include/QtCore/../../src/corelib/plugin/qplugin.h:45,
                 from ../../../../include/QtCore/qplugin.h:1,
                 from /Library/Frameworks/QtSql.framework/Versions/4/Headers/qsqldriverplugin.h:45,
                 from main.cpp:42:
../../../../include/QtCore/qconfig.h:1:46: error: ../../src/corelib/global/qconfig.h: No such file or directory
make -f Makefile.Debug
g++ -c -pipe -g -gdwarf-2 -arch x86_64 -Xarch_x86_64 -mmacosx-version-min=10.5 -fvisibility=hidden -fvisibility-inlines-hidden -Wall -W -fPIC -DQT_NO_CAST_TO_ASCII -DQT_NO_CAST_FROM_ASCII -DQT_PLUGIN -DQT_SQL_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/local/Qt4.8/mkspecs/macx-g++ -I. -I/Library/Frameworks/QtCore.framework/Versions/4/Headers -I/usr/include/QtCore -I/Library/Frameworks/QtSql.framework/Versions/4/Headers -I/usr/include/QtSql -I/usr/include -I../../../../include -I/Library/Frameworks/Firebird.framework/Versions/A/Headers -Idebug -F/Library/Frameworks -o debug/main.o main.cpp
In file included from ../../../../include/QtCore/qglobal.h:1,
                 from ../../../../include/QtCore/../../src/corelib/global/qnamespace.h:45,
                 from ../../../../include/QtCore/qnamespace.h:1,
                 from ../../../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h:45,
                 from ../../../../include/QtCore/qobjectdefs.h:1,
                 from ../../../../include/QtCore/../../src/corelib/kernel/qobject.h:47,
                 from ../../../../include/QtCore/qobject.h:1,
                 from ../../../../include/QtCore/../../src/corelib/plugin/qplugin.h:45,
                 from ../../../../include/QtCore/qplugin.h:1,
                 from /Library/Frameworks/QtSql.framework/Versions/4/Headers/qsqldriverplugin.h:45,
                 from main.cpp:42:
../../../../include/QtCore/../../src/corelib/global/qglobal.h:1572:4: error: #error "Qt not configured correctly, please run configure"
../../../../include/QtCore/../../src/corelib/global/qglobal.h:2705:6: error: #error "Qt not configured correctly, please run configure"
In file included from ../../../../include/QtCore/qatomic_arch.h:1,
                 from ../../../../include/QtCore/../../src/corelib/thread/qbasicatomic.h:227,
                 from ../../../../include/QtCore/qbasicatomic.h:1,
                 from ../../../../include/QtCore/../../src/corelib/thread/qatomic.h:46,
                 from ../../../../include/QtCore/qatomic.h:1,
                 from ../../../../include/QtCore/../../src/corelib/tools/qbytearray.h:45,
                 from ../../../../include/QtCore/qbytearray.h:1,
                 from ../../../../include/QtCore/../../src/corelib/tools/qstring.h:46,
                 from ../../../../include/QtCore/qstring.h:1,
                 from ../../../../include/QtCore/../../src/corelib/kernel/qobject.h:48,
                 from ../../../../include/QtCore/qobject.h:1,
                 from ../../../../include/QtCore/../../src/corelib/plugin/qplugin.h:45,
                 from ../../../../include/QtCore/qplugin.h:1,
                 from /Library/Frameworks/QtSql.framework/Versions/4/Headers/qsqldriverplugin.h:45,
                 from main.cpp:42:
../../../../include/QtCore/../../src/corelib/arch/qatomic_arch.h:96:4: error: #error "Qt has not been ported to this architecture"
In file included from ../../../../include/QtCore/qnamespace.h:1,
                 from ../../../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h:45,
                 from ../../../../include/QtCore/qobjectdefs.h:1,
                 from ../../../../include/QtCore/../../src/corelib/kernel/qobject.h:47,
                 from ../../../../include/QtCore/qobject.h:1,
                 from ../../../../include/QtCore/../../src/corelib/plugin/qplugin.h:45,
                 from ../../../../include/QtCore/qplugin.h:1,
                 from /Library/Frameworks/QtSql.framework/Versions/4/Headers/qsqldriverplugin.h:45,
                 from main.cpp:42:
../../../../include/QtCore/../../src/corelib/global/qnamespace.h:51: error: ‘QtValidLicenseForCoreModule’ does not name a type
In file included from ../../../../include/QtCore/qobjectdefs.h:1,
                 from ../../../../include/QtCore/../../src/corelib/kernel/qobject.h:47,
                 from ../../../../include/QtCore/qobject.h:1,
                 from ../../../../include/QtCore/../../src/corelib/plugin/qplugin.h:45,
                 from ../../../../include/QtCore/qplugin.h:1,
                 from /Library/Frameworks/QtSql.framework/Versions/4/Headers/qsqldriverplugin.h:45,
                 from main.cpp:42:
../../../../include/QtCore/../../src/corelib/kernel/qobjectdefs.h:51: error: ‘QtValidLicenseForCoreModule’ does not name a type
In file included from ../../../../include/QtCore/qchar.h:1,
                 from ../../../../include/QtCore/../../src/corelib/tools/qstring.h:45,
                 from ../../../../include/QtCore/qstring.h:1,
                 from ../../../../include/QtCore/../../src/corelib/kernel/qobject.h:48,
                 from ../../../../include/QtCore/qobject.h:1,
                 from ../../../../include/QtCore/../../src/corelib/plugin/qplugin.h:45,
                 from ../../../../include/QtCore/qplugin.h:1,
                 from /Library/Frameworks/QtSql.framework/Versions/4/Headers/qsqldriverplugin.h:45,
                 from main.cpp:42:
../../../../include/QtCore/../../src/corelib/tools/qchar.h:51: error: ‘QtValidLicenseForCoreModule’ does not name a type
In file included from ../../../../include/QtCore/qbasicatomic.h:1,
                 from ../../../../include/QtCore/../../src/corelib/thread/qatomic.h:46,
                 from ../../../../include/QtCore/qatomic.h:1,
                 from ../../../../include/QtCore/../../src/corelib/tools/qbytearray.h:45,
                 from ../../../../include/QtCore/qbytearray.h:1,
                 from ../../../../include/QtCore/../../src/corelib/tools/qstring.h:46,
                 from ../../../../include/QtCore/qstring.h:1,
                 from ../../../../include/QtCore/../../src/corelib/kernel/qobject.h:48,
                 from ../../../../include/QtCore/qobject.h:1,
                 from ../../../../include/QtCore/../../src/corelib/plugin/qplugin.h:45,
                 from ../../../../include/QtCore/qplugin.h:1,
                 from /Library/Frameworks/QtSql.framework/Versions/4/Headers/qsqldriverplugin.h:45,
                 from main.cpp:42:
../../../../include/QtCore/../../src/corelib/thread/qbasicatomic.h:51: error: ‘QtValidLicenseForCoreModule’ does not name a type
In file included from ../../../../include/QtCore/qatomic.h:1,
                 from ../../../../include/QtCore/../../src/corelib/tools/qbytearray.h:45,
                 from ../../../../include/QtCore/qbytearray.h:1,
                 from ../../../../include/QtCore/../../src/corelib/tools/qstring.h:46,
                 from ../../../../include/QtCore/qstring.h:1,
                 from ../../../../include/QtCore/../../src/corelib/kernel/qobject.h:48,
                 from ../../../../include/QtCore/qobject.h:1,
                 from ../../../../include/QtCore/../../src/corelib/plugin/qplugin.h:45,
                 from ../../../../include/QtCore/qplugin.h:1,
                 from /Library/Frameworks/QtSql.framework/Versions/4/Headers/qsqldriverplugin.h:45,
                 from main.cpp:42:
../../../../include/QtCore/../../src/corelib/thread/qatomic.h:52: error: ‘QtValidLicenseForCoreModule’ does not name a type
In file included from ../../../../include/QtCore/qbytearray.h:1,
                 from ../../../../include/QtCore/../../src/corelib/tools/qstring.h:46,
                 from ../../../../include/QtCore/qstring.h:1,
                 from ../../../../include/QtCore/../../src/corelib/kernel/qobject.h:48,
                 from ../../../../include/QtCore/qobject.h:1,
                 from ../../../../include/QtCore/../../src/corelib/plugin/qplugin.h:45,
                 from ../../../../include/QtCore/qplugin.h:1,
                 from /Library/Frameworks/QtSql.framework/Versions/4/Headers/qsqldriverplugin.h:45,
                 from main.cpp:42:
../../../../include/QtCore/../../src/corelib/tools/qbytearray.h:71: error: ‘QtValidLicenseForCoreModule’ does not name a type
In file included from ../../../../include/QtCore/qstring.h:1,
                 from ../../../../include/QtCore/../../src/corelib/kernel/qobject.h:48,
                 from ../../../../include/QtCore/qobject.h:1,
                 from ../../../../include/QtCore/../../src/corelib/plugin/qplugin.h:45,
                 from ../../../../include/QtCore/qplugin.h:1,
                 from /Library/Frameworks/QtSql.framework/Versions/4/Headers/qsqldriverplugin.h:45,
                 from main.cpp:42:
../../../../include/QtCore/../../src/corelib/tools/qstring.h:73: error: ‘QtValidLicenseForCoreModule’ does not name a type
In file included from ../../../../include/QtCore/qiterator.h:1,
                 from ../../../../include/QtCore/../../src/corelib/tools/qlist.h:45,
                 from ../../../../include/QtCore/qlist.h:1,
                 from ../../../../include/QtCore/../../src/corelib/kernel/qobject.h:50,
                 from ../../../../include/QtCore/qobject.h:1,
                 from ../../../../include/QtCore/../../src/corelib/plugin/qplugin.h:45,
                 from ../../../../include/QtCore/qplugin.h:1,
                 from /Library/Frameworks/QtSql.framework/Versions/4/Headers/qsqldriverplugin.h:45,
                 from main.cpp:42:
../../../../include/QtCore/../../src/corelib/tools/qiterator.h:58: error: ‘QtValidLicenseForCoreModule’ does not name a type
In file included from ../../../../include/QtCore/qalgorithms.h:1,
                 from ../../../../include/QtCore/../../src/corelib/tools/qlist.h:47,
                 from ../../../../include/QtCore/qlist.h:1,
                 from ../../../../include/QtCore/../../src/corelib/kernel/qobject.h:50,
                 from ../../../../include/QtCore/qobject.h:1,
                 from ../../../../include/QtCore/../../src/corelib/plugin/qplugin.h:45,
                 from ../../../../include/QtCore/qplugin.h:1,
                 from /Library/Frameworks/QtSql.framework/Versions/4/Headers/qsqldriverplugin.h:45,
                 from main.cpp:42:
../../../../include/QtCore/../../src/corelib/tools/qalgorithms.h:51: error: ‘QtValidLicenseForCoreModule’ does not name a type
In file included from ../../../../include/QtCore/qlist.h:1,
                 from ../../../../include/QtCore/../../src/corelib/kernel/qobject.h:50,
                 from ../../../../include/QtCore/qobject.h:1,
                 from ../../../../include/QtCore/../../src/corelib/plugin/qplugin.h:45,
                 from ../../../../include/QtCore/qplugin.h:1,
                 from /Library/Frameworks/QtSql.framework/Versions/4/Headers/qsqldriverplugin.h:45,
                 from main.cpp:42:
../../../../include/QtCore/../../src/corelib/tools/qlist.h:66: error: ‘QtValidLicenseForCoreModule’ does not name a type
In file included from ../../../../include/QtCore/qscopedpointer.h:1,
                 from ../../../../include/QtCore/../../src/corelib/kernel/qobject.h:54,
                 from ../../../../include/QtCore/qobject.h:1,
                 from ../../../../include/QtCore/../../src/corelib/plugin/qplugin.h:45,
                 from ../../../../include/QtCore/qplugin.h:1,
                 from /Library/Frameworks/QtSql.framework/Versions/4/Headers/qsqldriverplugin.h:45,
                 from main.cpp:42:
../../../../include/QtCore/../../src/corelib/tools/qscopedpointer.h:49: error: ‘QtValidLicenseForCoreModule’ does not name a type
In file included from ../../../../include/QtCore/qobject.h:1,
                 from ../../../../include/QtCore/../../src/corelib/plugin/qplugin.h:45,
                 from ../../../../include/QtCore/qplugin.h:1,
                 from /Library/Frameworks/QtSql.framework/Versions/4/Headers/qsqldriverplugin.h:45,
                 from main.cpp:42:
../../../../include/QtCore/../../src/corelib/kernel/qobject.h:60: error: ‘QtValidLicenseForCoreModule’ does not name a type
In file included from ../../../../include/QtCore/qpointer.h:1,
                 from ../../../../include/QtCore/../../src/corelib/plugin/qplugin.h:46,
                 from ../../../../include/QtCore/qplugin.h:1,
                 from /Library/Frameworks/QtSql.framework/Versions/4/Headers/qsqldriverplugin.h:45,
                 from main.cpp:42:
../../../../include/QtCore/../../src/corelib/kernel/qpointer.h:51: error: ‘QtValidLicenseForCoreModule’ does not name a type
In file included from ../../../../include/QtCore/qplugin.h:1,
                 from /Library/Frameworks/QtSql.framework/Versions/4/Headers/qsqldriverplugin.h:45,
                 from main.cpp:42:
../../../../include/QtCore/../../src/corelib/plugin/qplugin.h:52: error: ‘QtValidLicenseForCoreModule’ does not name a type
In file included from ../../../../include/QtCore/qiodevice.h:1,
                 from ../../../../include/QtCore/../../src/corelib/io/qdatastream.h:46,
                 from ../../../../include/QtCore/qdatastream.h:1,
                 from ../../../../include/QtCore/../../src/corelib/tools/qstringlist.h:46,
                 from ../../../../include/QtCore/qstringlist.h:1,
                 from ../../../../include/QtCore/../../src/corelib/plugin/qfactoryinterface.h:46,
                 from ../../../../include/QtCore/qfactoryinterface.h:1,
                 from /Library/Frameworks/QtSql.framework/Versions/4/Headers/qsqldriverplugin.h:46,
                 from main.cpp:42:
../../../../include/QtCore/../../src/corelib/io/qiodevice.h:61: error: ‘QtValidLicenseForCoreModule’ does not name a type
In file included from ../../../../include/QtCore/qdatastream.h:1,
                 from ../../../../include/QtCore/../../src/corelib/tools/qstringlist.h:46,
                 from ../../../../include/QtCore/qstringlist.h:1,
                 from ../../../../include/QtCore/../../src/corelib/plugin/qfactoryinterface.h:46,
                 from ../../../../include/QtCore/qfactoryinterface.h:1,
                 from /Library/Frameworks/QtSql.framework/Versions/4/Headers/qsqldriverplugin.h:46,
                 from main.cpp:42:
../../../../include/QtCore/../../src/corelib/io/qdatastream.h:57: error: ‘QtValidLicenseForCoreModule’ does not name a type
../../../../include/QtCore/../../src/corelib/io/qdatastream.h:97: error: ‘BigEndian’ is not a member of ‘QSysInfo’
../../../../include/QtCore/../../src/corelib/io/qdatastream.h:98: error: ‘LittleEndian’ is not a member of ‘QSysInfo’
In file included from ../../../../include/QtCore/qregexp.h:1,
                 from ../../../../include/QtCore/../../src/corelib/tools/qstringlist.h:48,
                 from ../../../../include/QtCore/qstringlist.h:1,
                 from ../../../../include/QtCore/../../src/corelib/plugin/qfactoryinterface.h:46,
                 from ../../../../include/QtCore/qfactoryinterface.h:1,
                 from /Library/Frameworks/QtSql.framework/Versions/4/Headers/qsqldriverplugin.h:46,
                 from main.cpp:42:
../../../../include/QtCore/../../src/corelib/tools/qregexp.h:56: error: ‘QtValidLicenseForCoreModule’ does not name a type
In file included from ../../../../include/QtCore/qstringmatcher.h:1,
                 from ../../../../include/QtCore/../../src/corelib/tools/qstringlist.h:50,
                 from ../../../../include/QtCore/qstringlist.h:1,
                 from ../../../../include/QtCore/../../src/corelib/plugin/qfactoryinterface.h:46,
                 from ../../../../include/QtCore/qfactoryinterface.h:1,
                 from /Library/Frameworks/QtSql.framework/Versions/4/Headers/qsqldriverplugin.h:46,
                 from main.cpp:42:
../../../../include/QtCore/../../src/corelib/tools/qstringmatcher.h:51: error: ‘QtValidLicenseForCoreModule’ does not name a type
In file included from ../../../../include/QtCore/qstringlist.h:1,
                 from ../../../../include/QtCore/../../src/corelib/plugin/qfactoryinterface.h:46,
                 from ../../../../include/QtCore/qfactoryinterface.h:1,
                 from /Library/Frameworks/QtSql.framework/Versions/4/Headers/qsqldriverplugin.h:46,
                 from main.cpp:42:
../../../../include/QtCore/../../src/corelib/tools/qstringlist.h:59: error: ‘QtValidLicenseForCoreModule’ does not name a type
In file included from ../../../../include/QtCore/qfactoryinterface.h:1,
                 from /Library/Frameworks/QtSql.framework/Versions/4/Headers/qsqldriverplugin.h:46,
                 from main.cpp:42:
../../../../include/QtCore/../../src/corelib/plugin/qfactoryinterface.h:52: error: ‘QtValidLicenseForCoreModule’ does not name a type
In file included from main.cpp:42:
/Library/Frameworks/QtSql.framework/Versions/4/Headers/qsqldriverplugin.h:52: error: ‘QtValidLicenseForSqlModule’ does not name a type
In file included from ../../../../include/QtCore/qmetatype.h:1,
                 from ../../../../include/QtCore/../../src/corelib/kernel/qvariant.h:48,
                 from ../../../../include/QtCore/qvariant.h:1,
                 from ../../../../include/QtSql/../../src/sql/kernel/qsqlresult.h:45,
                 from ../../../../include/QtSql/qsqlresult.h:1,
                 from ../../../sql/drivers/ibase/qsql_ibase.h:45,
                 from main.cpp:44:
../../../../include/QtCore/../../src/corelib/kernel/qmetatype.h:60: error: ‘QtValidLicenseForCoreModule’ does not name a type
In file included from ../../../../include/QtCore/qmap.h:1,
                 from ../../../../include/QtCore/../../src/corelib/kernel/qvariant.h:49,
                 from ../../../../include/QtCore/qvariant.h:1,
                 from ../../../../include/QtSql/../../src/sql/kernel/qsqlresult.h:45,
                 from ../../../../include/QtSql/qsqlresult.h:1,
                 from ../../../sql/drivers/ibase/qsql_ibase.h:45,
                 from main.cpp:44:
../../../../include/QtCore/../../src/corelib/tools/qmap.h:59: error: ‘QtValidLicenseForCoreModule’ does not name a type
In file included from ../../../../include/QtCore/qpair.h:1,
                 from ../../../../include/QtCore/../../src/corelib/tools/qhash.h:49,
                 from ../../../../include/QtCore/qhash.h:1,
                 from ../../../../include/QtCore/../../src/corelib/kernel/qvariant.h:50,
                 from ../../../../include/QtCore/qvariant.h:1,
                 from ../../../../include/QtSql/../../src/sql/kernel/qsqlresult.h:45,
                 from ../../../../include/QtSql/qsqlresult.h:1,
                 from ../../../sql/drivers/ibase/qsql_ibase.h:45,
                 from main.cpp:44:
../../../../include/QtCore/../../src/corelib/tools/qpair.h:51: error: ‘QtValidLicenseForCoreModule’ does not name a type
In file included from ../../../../include/QtCore/qhash.h:1,
                 from ../../../../include/QtCore/../../src/corelib/kernel/qvariant.h:50,
                 from ../../../../include/QtCore/qvariant.h:1,
                 from ../../../../include/QtSql/../../src/sql/kernel/qsqlresult.h:45,
                 from ../../../../include/QtSql/qsqlresult.h:1,
                 from ../../../sql/drivers/ibase/qsql_ibase.h:45,
                 from main.cpp:44:
../../../../include/QtCore/../../src/corelib/tools/qhash.h:55: error: ‘QtValidLicenseForCoreModule’ does not name a type
In file included from ../../../../include/QtCore/qvariant.h:1,
                 from ../../../../include/QtSql/../../src/sql/kernel/qsqlresult.h:45,
                 from ../../../../include/QtSql/qsqlresult.h:1,
                 from ../../../sql/drivers/ibase/qsql_ibase.h:45,
                 from main.cpp:44:
../../../../include/QtCore/../../src/corelib/kernel/qvariant.h:57: error: ‘QtValidLicenseForCoreModule’ does not name a type
In file included from ../../../../include/QtCore/qvector.h:1,
                 from ../../../../include/QtSql/../../src/sql/kernel/qsqlresult.h:46,
                 from ../../../../include/QtSql/qsqlresult.h:1,
                 from ../../../sql/drivers/ibase/qsql_ibase.h:45,
                 from main.cpp:44:
../../../../include/QtCore/../../src/corelib/tools/qvector.h:64: error: ‘QtValidLicenseForCoreModule’ does not name a type
In file included from ../../../../include/QtSql/qsql.h:1,
                 from ../../../../include/QtSql/../../src/sql/kernel/qsqlresult.h:47,
                 from ../../../../include/QtSql/qsqlresult.h:1,
                 from ../../../sql/drivers/ibase/qsql_ibase.h:45,
                 from main.cpp:44:
../../../../include/QtSql/../../src/sql/kernel/qsql.h:51: error: ‘QtValidLicenseForSqlModule’ does not name a type
In file included from ../../../../include/QtSql/qsqlresult.h:1,
                 from ../../../sql/drivers/ibase/qsql_ibase.h:45,
                 from main.cpp:44:
../../../../include/QtSql/../../src/sql/kernel/qsqlresult.h:53: error: ‘QtValidLicenseForSqlModule’ does not name a type
In file included from ../../../../include/QtSql/qsqldriver.h:1,
                 from ../../../sql/drivers/ibase/qsql_ibase.h:46,
                 from main.cpp:44:
../../../../include/QtSql/../../src/sql/kernel/qsqldriver.h:57: error: ‘QtValidLicenseForSqlModule’ does not name a type
make[1]: *** [debug/main.o] Error 1
make: *** [debug] Error 2

有人知道我做错了什么吗?

最佳答案

已修复,以供将来引用:

我打开了 ibase.pro 并添加了以下几行:

INCLUDEPATH += /Library/Frameworks/Firebird.framework/Headers
LIBS += -framework Firebird

然后我打开 qsql_ibase.pri 并删除以下行:

unix {
    !contains(LIBS, .*gds.*):!contains(LIBS, .*libfb.*):LIBS += -lgds
} else {
    !contains(LIBS, .*gds.*):!contains(LIBS, .*fbclient.*) {
        win32-borland:LIBS += gds32.lib
        else:LIBS += -lgds32_ms
    }
}

然后我为神秘的 qsqlcachedresult_p.h 文件创建了一个符号链接(symbolic link),因此它是所有其他 Qt header 所在的位置:

mkdir /Library/Frameworks/QtSql.framework/Headers/private
ln -s ~/devel/qt/src/sql/kernel/qsqlcachedresult_p.h /Library/Frameworks/QtSql.framework/Headers/private/qsqlcachedresult_p.h

QIBASE 驱动程序现在可以像这样构建:

cd ~/devel/qt/src/plugins/sqldrivers/ibase
qmake -spec macx-g++ ibase.pro
make

关于c++ - 在 OS X 上构建 Qt QIBASE 驱动程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15341663/

相关文章:

c++ - Libharu pdf 创作 : How to know the size of the printed text

编译时的 C++ 展开循环

xcode - 在 Swift 中向 Xcode 项目添加和打开 PDF 文件

c - 如何在没有 XCode IDE 的情况下在 Mac Leopard 上用 C 进行编程?

c++ - Qt 中的 2D 游戏 : Initializing monsters and passing dynamically allocated array as a pointer parameter

c++ - Qt moc 失败且没有错误消息

c++ - 使用 QComboBox C++ 进行过滤

c++ - 如何在windows平台上使用c++信号

c++ - 将 C++ 代码从 VS2003 迁移到 VS2010 后出现错误 C2678,错误 C2679 : binary '=' : no operator found which takes a right-hand operand of type 'int'

c++ - OpenCV (C++/Qt) - cornerSubPix 错误