zoukankan      html  css  js  c++  java
  • 转 Relinking Causes Many Warning on AIX

    SYMPTOMS


    Relink returns many warnings

    Running make for target ioracle

    OPatch found the word "error" in the stderr of the make command.
    Please look at this stderr. You can re-run this make command.
    Stderr output:
    ld: 0711-415 WARNING: Symbol ldxdts is already exported.
    ld: 0711-415 WARNING: Symbol ldxsto is already exported.
    ld: 0711-415 WARNING: Symbol lnxadd is already exported.
    ld: 0711-415 WARNING: Symbol lnxcopy is already exported.
    ...
    ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information.
    ld: 0711-319 WARNING: Exported symbol not defined: count__21TxsOqSourceDefinitionFP31TxsOqSourceDefinitionController
    ld: 0711-319 WARNING: Exported symbol not defined: cout__3std
    ...

    ld: 0711-773 WARNING: Object /u00/app/oracle/product/11.2.0.1/lib//libordsdo11.a[mdrcnc.o], imported symbol mdrcnccmt_
    Symbol was expected to be local. Extra instructions
    are being generated to reference the symbol.
    ld: 0711-783 WARNING: TOC overflow. TOC size: 219456 Maximum size: 65536
    Extra instructions are being generated for each reference to a TOC
    symbol if the symbol is in the TOC overflow area.

    CHANGES

    Patch was installed, "relink all" or "relink oracle" was issued

    CAUSE

    There are 2 different causes.

    ISSUE 1: 
    ========
    ld: 0711-783 WARNING: TOC overflow. TOC size

    Cause: Bug 2737755 

    ISSUE 2: 
    ========
    Symbol xxxxxx is already exported.
    ...
    ld: 0711-319 WARNING: Exported symbol not defined: 

    Cause: Bug 9828407

    SOLUTION

    Issue 1: Ignore the warnings

    Note 245372.1 TOC overflow Warning Can Safely Be Ignored

    Issue 2: Ignore the warnings

    BUG 9828407 states: 

    Most versions of ld will only forward parse the link line.  The warnings are due to the method Oracle uses when parsing the link line to ensure the forward parsing resolves the symbols we require. The side-effect of this on some platforms, such as AIX, is that we then end up reporting a lot of duplicate symbols due to the multiple inclusions of the libraries on the link line ... These are just 'noise' from the linker being 'pedantic' on AIX ... but it does no harm and can be safely ignored.
  • 相关阅读:
    解释JUnit中@BeforeClass和@AfterClass标注的方法必须是static的,而在TestNg不必
    总结TestNg与JUnit的异同
    FitNesseRoot/ErrorLogs目录下可查看fitnesse输出日志
    项目构建工具ant的使用
    用插件maven-surefire-report-plugin生成html格式测试报告
    fitnesse生成的FitNesseRoot路径问题
    fitnesse管理引进的jar包
    简要总结selenium四个工具组
    selenium 2 设置浏览器安装路径
    磁盘IO
  • 原文地址:https://www.cnblogs.com/feiyun8616/p/9952517.html
Copyright © 2011-2022 走看看