【问题标题】:Android NDK Linker (GStreamer) - invalid linker name -fuse-ld=goldAndroid NDK 链接器 (GStreamer) - 无效的链接器名称 -fuse-ld=gold
【发布时间】:2017-06-20 10:25:37
【问题描述】:

尝试在 Windows 上使用 Android Studio 为 Android 设置 GStreamer。我主要是尽我所能从他们的site 中学习教程,以及查看this(加上我能找到的任何帮助)。我得到一个:

错误:错误:参数“-fuse-ld=gold”中的链接器名称无效

我的 Android.mk:

LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)

LOCAL_MODULE    := app
LOCAL_SRC_FILES := app-1.c
LOCAL_SHARED_LIBRARIES := gstreamer_android
LOCAL_LDLIBS := -landroid

include $(BUILD_SHARED_LIBRARY)

ifndef GSTREAMER_ROOT
ifndef GSTREAMER_ROOT_ANDROID
$(error GSTREAMER_ROOT_ANDROID is not defined!)
endif
GSTREAMER_ROOT            := $(GSTREAMER_ROOT_ANDROID)
endif

GSTREAMER_NDK_BUILD_PATH  := $(GSTREAMER_ROOT)\share\gst-android\ndk-build
GSTREAMER_PLUGINS         := coreelements ogg theora vorbis videoconvert audioconvert audioresample playback glimagesink soup opensles
G_IO_MODULES              := gnutls
GSTREAMER_EXTRA_DEPS      := gstreamer-video-1.0

include $(GSTREAMER_NDK_BUILD_PATH)\gstreamer-1.0.mk

和 app/build.gradle:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.2"
    defaultConfig {
        applicationId "com.example.quant.icarus"
        minSdkVersion 23
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

        externalNativeBuild {
            ndkBuild {
                def gstRoot

                if (project.hasProperty('gstAndroidRoot'))
                    gstRoot = project.gstAndroidRoot
                else
                    gstRoot = System.env.GSTREAMER_ROOT_ANDROID

                if (gstRoot == null)
                    throw new GradleException('GSTREAMER_ROOT_ANDROID must be set, or "gstAndroidRoot" must be defined in your gradle.properties in the top level directory of the unpacked universal GStreamer Android binaries')

                arguments "NDK_APPLICATION_MK=src/main/jni/Application.mk", "GSTREAMER_JAVA_SRC_DIR=src/main/java", "GSTREAMER_ROOT_ANDROID=$gstRoot", "GSTREAMER_ASSETS_DIR=src/main/assets"

                targets "app", "gstreamer_android"

                // All archs except MIPS and MIPS64 are supported
                abiFilters 'armeabi', 'armeabi-v7a', 'arm64-v8a'
            }
        }
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    externalNativeBuild {
        ndkBuild {
            path 'src/main/jni/Android.mk'
        }
    }
}

afterEvaluate {
    compileDebugJavaWithJavac.dependsOn 'externalNativeBuildDebug'
    compileReleaseJavaWithJavac.dependsOn 'externalNativeBuildRelease'
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:25.3.1'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    testCompile 'junit:junit:4.12'
}

Gradle 项目同步运行没有任何问题。但是 Make Project 会产生以下结果:

错误:错误:参数“-fuse-ld=gold”中的链接器名称无效

或更详细:

* What went wrong:
Execution failed for task ':app:externalNativeBuildDebug'.
> Build command failed.
Error while executing process C:\Users\Quant\AppData\Local\Android\Sdk\ndk-bundle\ndk-build.cmd with arguments {NDK_PROJECT_PATH=null APP_BUILD_SCRIPT=C:\Users\Quant\AndroidStudioProjects\Icarus\app\src\main\jni\Android.mk NDK_APPLICATION_MK=C:\Users\Quant\AndroidStudioProjects\Icarus\app\src\main\jni\Application.mk APP_ABI=arm64-v8a NDK_ALL_ABIS=arm64-v8a NDK_DEBUG=1 APP_PLATFORM=android-23 NDK_OUT=C:/Users/Quant/AndroidStudioProjects/Icarus/app/build/intermediates/ndkBuild/debug/obj NDK_LIBS_OUT=C:\Users\Quant\AndroidStudioProjects\Icarus\app\build\intermediates\ndkBuild\debug\lib NDK_APPLICATION_MK=src/main/jni/Application.mk GSTREAMER_JAVA_SRC_DIR=src/main/java GSTREAMER_ROOT_ANDROID=C:\Users\Quant\Desktop\GStreamer\arm GSTREAMER_ASSETS_DIR=src/main/assets gst-build-arm64-v8a/libgstreamer_android.so}
GStreamer      : [GEN] => gst-build-arm64-v8a/gstreamer_android.c
GStreamer      : [COMPILE] => gst-build-arm64-v8a/gstreamer_android.c
GStreamer      : [LINK] => gst-build-arm64-v8a/libgstreamer_android.so
clang.exe: error: invalid linker name in argument '-fuse-ld=gold'
make: *** [buildsharedlibrary_arm64-v8a] Error 1

关于如何解决这个问题的任何想法?我看到一些线程说要添加标志以使其成为gold.exe ...除了没有人说标志设置的位置(而且线程似乎并没有完全解决)。

我按照 gstreamer 安装指南中的说明替换了“ld.exe”文件,即使它看起来已经过时(我在遇到同样的错误后这样做了 - 所以这不是导致它的原因)。

【问题讨论】:

  • 我找到了将gold编辑到gold.exe的位置,如果成功会更新。如果有人知道如何标记为重复(我是新人),那就是this question

标签: c++ android-studio android-ndk linker gstreamer


【解决方案1】:

尝试将库链接在一起的clang.exe 进程存在问题。请注意,无需按照问题链接中的安装说明更改 ld.exe 文件。


修复:您需要更改 GStreamer 目录中每个体系结构的两个文件,以便链接器被称为 gold.exe 而不是 gold

对于每个你感兴趣的架构,你需要去(以 arm64 为例):

1) path\to\Gstreamer\root\arm64\share\gst-android\ndk-build\gstreamer-1.0.mk 并将-fuse-ld=gold 更改为-fuse-ld=gold.exe(它只在文件中出现一次)。

现在转到:

2) path\to\Gstreamer\root\arm64\include\gmp.h 并将 -fuse-ld=gold 更改为 -fuse-ld=gold.exe(同样,仅出现一次)。


对我发布的 Android.mkgradle 文件进行了一些小修复,以便完全编译,但这似乎超出了这个问题的范围(将 -llog 添加到本地 ldlibs 并仅使用核心插件)。

【讨论】:

    猜你喜欢
    • 2018-10-04
    • 2015-06-04
    • 2015-11-04
    • 1970-01-01
    • 2012-05-22
    • 2018-06-15
    • 2015-11-13
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多