• Eskil Abrahamsen Blomfeldt's avatar
    Android: Add "unversioned_libname" configuration · a162a3cb
    Eskil Abrahamsen Blomfeldt authored
    
    On Android, there's a limitation set on the names of the libraries
    you deploy that they must start with "lib" and end with ".so", so
    Android apps will link against and deploy with the unversioned
    libQt5FooBar.so libraries. When cross-compiling on Windows however,
    due to the lack of symbolic links, the only installed library
    used to be the main library target "libQt5FooBar.so.X.Y.Z" (for
    version X.Y.Z.) This has been worked around in packaging, but
    breaks building add-on modules on top of Qt, and is clearly
    wrong.
    
    This patch introduces a new "unversioned_libname" configuration
    in qmake which is currently only supported for the Unix makefile
    generator and only enabled for Android builds. When it is enabled,
    only the unversioned library "libQt5FooBar.so" will be created.
    
    Task-number: QTBUG-38347
    Change-Id: Ia8897ca7a23a62e2a526d0e02854899b02eb19dc
    Reviewed-by: default avatarOswald Buddenhagen <oswald.buddenhagen@digia.com>
    a162a3cb
qv4arraydata_p.h 8.59 KiB
/****************************************************************************
**
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the QtQml module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL21$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia. For licensing terms and
** conditions see http://qt.digia.com/licensing. For further information
** use the contact form at http://qt.digia.com/contact-us.
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 or version 3 as published by the Free
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
** following information to ensure the GNU Lesser General Public License
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
** In addition, as a special exception, Digia gives you certain additional
** rights. These rights are described in the Digia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
** $QT_END_LICENSE$
****************************************************************************/
#ifndef QV4ARRAYDATA_H
#define QV4ARRAYDATA_H
#include "qv4global_p.h"
#include "qv4managed_p.h"
#include "qv4property_p.h"
#include "qv4sparsearray_p.h"
QT_BEGIN_NAMESPACE
namespace QV4 {
#define V4_ARRAYDATA \
    public: \
        Q_MANAGED_CHECK \
        static const QV4::ArrayVTable static_vtbl; \
        static inline const QV4::ManagedVTable *staticVTable() { return &static_vtbl.managedVTable; } \
        template <typename T> \
        QV4::Returned<T> *asReturned() { return QV4::Returned<T>::create(this); } \
        V4_MANAGED_SIZE_TEST \
        const Data *d() const { return &static_cast<const Data &>(Managed::data); } \
        Data *d() { return &static_cast<Data &>(Managed::data); }
struct ArrayData;
struct ArrayVTable
    ManagedVTable managedVTable;
    uint type;
    ArrayData *(*reallocate)(Object *o, uint n, bool enforceAttributes);
    ReturnedValue (*get)(const ArrayData *d, uint index);
    bool (*put)(Object *o, uint index, ValueRef value);
    bool (*putArray)(Object *o, uint index, Value *values, uint n);
    bool (*del)(Object *o, uint index);
    void (*setAttribute)(Object *o, uint index, PropertyAttributes attrs);
    PropertyAttributes (*attribute)(const ArrayData *d, uint index);
    void (*push_front)(Object *o, Value *values, uint n);