make [2]:*** [o.le-v7-g / ApplicationName] make [1]:*** [debug] make:*** [Device-Debug]

时间:2014-10-29 05:39:02

标签: compilation blackberry-10 blackberry-cascades

我正在尝试构建黑莓10级联应用程序。当我将代码部署到我的设备时,我遇到了错误。你能帮忙吗?

make[2]: *** [o.le-v7-g/ApplicationName] Error 1 ApplicationName C/C++ Problem
make[1]: *** [debug] Error 2 ApplicationName C/C++ Problem
make: *** [Device-Debug] Error 2 ApplicationName C/C++ Problem

.pro文件看起来像这样

APP_NAME = ApplicationName

CONFIG += qt warn_on cascades10

include(config.pri)
LIBS += -lbbdata
LIBS += -lbb

Main.cpp文件内容在

之下
#include "applicationui.hpp"
#include "sqlconnect.hpp"

#include <bb/cascades/Application>

#include <QLocale>
#include <QTranslator>

#include <Qt/qdeclarativedebug.h>

using namespace bb::cascades;

Q_DECL_EXPORT int main(int argc, char **argv)
{
    Application app(argc, argv);

    // Create the Application UI object, this is where the main.qml file
    // is loaded and the application scene is set.
    ApplicationUI appui;

    // Enter the application main event loop.
    return Application::exec();
}

1 个答案:

答案 0 :(得分:0)

我正在研究几个网站,然后我从构建日志中找到了 LIBS + = - lbbsystem。最初我不知道如何阅读日志但是由于这个编译错误,我学到了它。

http://supportforums.blackberry.com/t5/Native-Development/make-2-o-le-v7-g-ApplicationName-make-1-debug-make-Device-Debug/m-p/3010212#M68425有详细信息