O Ubuntu SDK IDE fecha com falha de segmentação ao executar o código de exemplo

0

Instalei o Ubuntu SDK de ppa:ubuntu-sdk-team/ppa no Ubuntu 14.04 LTS 64bit. Então eu criei o kit de dispositivos ubuntu-sdk-15.04 armhf. Quando tento executar com CTRL + R exemplo abaixo de: link Ubuntu SDK IDE pára com falha de segmentação.

import QtQuick 2.0
import Ubuntu.Components 1.1

/*!
    \brief MainView with a Label and Button elements.
*/

MainView {
    id: root
    // objectName for functional testing purposes (autopilot-qt5)
    objectName: "mainView"

    // Note! applicationName needs to match the "name" field of the click manifest
    applicationName: "currencyconverter.yourname"

    /*
     This property enables the application to change orientation
     when the device is rotated. The default is false.
    */
    //automaticOrientation: true

    // Removes the old toolbar and enables new features of the new header.
    useDeprecatedToolbar: false

    width: units.gu(100)
    height: units.gu(75)

    property real margins: units.gu(2)
    property real buttonWidth: units.gu(9)

    Page {
        title: i18n.tr("Currency Converter")

    }
}

Eu pensei que o pacote ubuntu-sdk do PPA tem tudo o que é necessário, mas acontece que não é Na minha opinião eu preciso de pacotes adicionais não mencionados no tutorial instalado para poder começar a desenvolver para o Ubuntu. Quais são esses pacotes adicionais?

    
por Fih 02.03.2016 / 14:18

1 resposta

0

A solução está instalando ubuntu-sdk-dev package de ppa:ubuntu-sdk-team/ppa

sudo apt-get install ubuntu-sdk-dev

Atualmente há um bug link pacote ubuntu-sdk-ide que está faltando algumas dependências .

    
por Fih 02.03.2016 / 18:17