Пример #1
0
def load_release_android_armv8_settings(conf):
    """
    Setup all compiler and linker settings shared over all android armv8 configurations
    for the "release" configuration
    """

    conf.load_android_armv8_common_settings()
def load_profile_android_armv8_settings(conf):
    """
    Setup all compiler and linker settings shared over all android armv8 configurations
    for the "profile" configuration
    """
    conf.load_android_armv8_common_settings()

    # required 3rd party libs that need to be included in the apk
    # Note: gdbserver is only required for debuggable builds
    conf.env['EXT_LIBS'] += [
        conf.add_to_android_cache(
            os.path.join(conf.env['ANDROID_NDK_HOME'], 'prebuilt',
                         'android-arm64', 'gdbserver', 'gdbserver'))
    ]