天天看點

MAC編譯OpenJDK8:error: ‘&&‘ within ‘||‘ [-Werror,-Wlogical-op-parentheses]

具體錯誤:

/Users/tsit/tsjdk8-project/tsjdk8/hotspot/src/share/vm/adlc/archDesc.cpp:311:35: error: '&&' within '||' [-Werror,-Wlogical-op-parentheses]
        !instr->is_ideal_branch() && instr->label_position() != -1) {
        ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~      

解決辦法:

編譯腳本中加入:

export COMPILER_WARNINGS_FATAL=false      

繼續閱讀