Greetings,

I am doing:

CXXFLAGS="-Wno-maybe-uninitialized -Wno-class-memaccess" ./configure
make

and getting:

[...]
Quad_RVAL.cc: In member function ‘Value_P Quad_RVAL::result_maxdepth(const
Value&)’:
Quad_RVAL.cc:371:22: error: logical not is only applied to the left hand
side of comparison [-Werror=logical-not-parentheses]
    if (!B.get_rank() > 1)            RANK_ERROR;
                      ^
Quad_RVAL.cc:371:8: note: add parentheses around left hand side expression
to silence this warning
    if (!B.get_rank() > 1)            RANK_ERROR;
        ^~~~~~~~~~~~~
        (            )
Quad_RVAL.cc:371:22: error: comparison of constant ‘1’ with boolean
expression is always false [-Werror=bool-compare]
    if (!B.get_rank() > 1)            RANK_ERROR;
        ~~~~~~~~~~~~~~^~~
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-class-memaccess’
[-Werror]

Reply via email to