zoukankan      html  css  js  c++  java
  • Ubuntu16 编译源码出错 unsupported reloc 43

    错误如下

    复制代码
    prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6//x86_64-linux/include/c++/4.6/bits/basic_string.h:270: error: unsupported reloc 43
    prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6//x86_64-linux/include/c++/4.6/bits/basic_string.h:270: error: unsupported reloc 43
    prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6//x86_64-linux/include/c++/4.6/bits/basic_string.h:235: error: unsupported reloc 43
    prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6//x86_64-linux/include/c++/4.6/bits/basic_string.h:235: error: unsupported reloc 43
    libnativehelper/JNIHelp.cpp:310: error: unsupported reloc 43
    libnativehelper/JNIHelp.cpp:311: error: unsupported reloc 43
    libnativehelper/JNIHelp.cpp:332: error: unsupported reloc 43
    libnativehelper/JNIHelp.cpp:322: error: unsupported reloc 43
    libnativehelper/JNIHelp.cpp:338: error: unsupported reloc 43
    libnativehelper/JniConstants.cpp:89: error: unsupported reloc 43
    libnativehelper/JniConstants.cpp:90: error: unsupported reloc 43
    复制代码

     

    解决方法(一)

    修改 build/core/clang/HOST_x86_common.mk

    复制代码
    diff --git a/core/clang/HOST_x86_common.mk b/core/clang/HOST_x86_common.mk
    index 0241cb6..77547b7 100644
    --- a/core/clang/HOST_x86_common.mk
    +++ b/core/clang/HOST_x86_common.mk
    @@ -8,6 +8,7 @@ ifeq ($(HOST_OS),linux)
     CLANG_CONFIG_x86_LINUX_HOST_EXTRA_ASFLAGS := 
       --gcc-toolchain=$($(clang_2nd_arch_prefix)HOST_TOOLCHAIN_FOR_CLANG) 
       --sysroot=$($(clang_2nd_arch_prefix)HOST_TOOLCHAIN_FOR_CLANG)/sysroot 
    +  -B$($(clang_2nd_arch_prefix)HOST_TOOLCHAIN_FOR_CLANG)/x86_64-linux/bin 
       -no-integrated-as
     
     CLANG_CONFIG_x86_LINUX_HOST_EXTRA_CFLAGS :=   
    复制代码

     但是对我而言 错误仍在

    解决方法(二)

    修改 art/build/Android.common_build.mk

    复制代码
    # Host.
    ART_HOST_CLANG := false
    ifneq ($(WITHOUT_HOST_CLANG),true)
      # By default, host builds use clang for better warnings.
      ART_HOST_CLANG := true
    endif
    复制代码

    改为

    复制代码
    # Host.
    ART_HOST_CLANG := false
    ifeq ($(WITHOUT_HOST_CLANG),false)
      # By default, host builds use clang for better warnings.
      ART_HOST_CLANG := true
    endif
    复制代码

    仍然不起作用

    解决方法(三)

    cp /usr/bin/ld.gold prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/bin/ld

    这个之后,编译通过。

    https://www.cnblogs.com/blowing-in-the-wind/p/6518076.html

    #####################################################################################################################3

    Tried @ShawnMilo 's workaround:

    v8worker# find . -name ld.gold
    ./v8/third_party/binutils/Linux_x64/Release/bin/ld.gold
    
    v8worker# mv ./v8/third_party/binutils/Linux_x64/Release/bin/ld.gold ./v8/third_party/binutils/Linux_x64/Release/bin/ld.gold.backup
    
    v8worker# ln -s /usr/bin/ld.gold ./v8/third_party/binutils/Linux_x64/Release/bin/ld.gold


    https://github.com/ry/v8worker/issues/41


    #################################################################################################################################

    unsupported reloc 42 编译错误处理

    1. out/host/linux-x86/obj/SHARED_LIBRARIES/libart_intermediates/arch/x86_64/quick_entrypoints_x86_64.o:function art_quick_deoptimize:
    2. error: unsupported reloc 42
    3. clang: error: linker command failed with exit code 1 (use -v to see invocation)

    1、将prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/bin/ld 备份

     mv prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/bin/ld prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/bin/ld.bak

    2、使用soft link,链接到全局ld

     ln -s /usr/bin/ld.gold prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/bin/ld
    

    查看:

    1. zyf@zyf-HP-Pavilion-m4-Notebook-PC:~/work/6580pet/MTK6580_M_V2.34_base_pet$ ls -l prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/bin/ld
    2. lrwxrwxrwx 1 zyf zyf 16 3月 17 18:17 prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/bin/ld -> /usr/bin/ld.gold
       
       
       
      https://blog.csdn.net/zyfzhangyafei/article/details/88623503

  • 相关阅读:
    前端面试
    react 【npx createreactapp myapp】执行错误
    npm yarn安装完成后,查不到版本号
    I love cnblogs
    万万没想到VFP也可以这样硬,调用微信的硬能力,扫码、上报位置、支付都可以
    VFP为公众号添加一个报名功能,代码不多,但谁能得扬名立万
    公众号回复消息不能超过5秒,VFP大数据处理来不及怎么办?
    爆肝怒赞,不会也会了,VFPBS用Form调用webapi和文件上传
    狐友们,万万不可掉队,VFP开发企业微信第一关回调该怎么配
    十行代码完成公众号对话,VFP的能力就是这么强悍,你学会了吗?
  • 原文地址:https://www.cnblogs.com/pengmn/p/14054536.html
Copyright © 2011-2022 走看看