2020-09-11 09:47:42 +03:00
|
|
|
CondParser_Eval: ${:Uvalue} != value
|
|
|
|
lhs = "value", rhs = "value", op = !=
|
|
|
|
CondParser_Eval: ${:U} != "
|
|
|
|
lhs = "", rhs = "", op = !=
|
|
|
|
CondParser_Eval: ${:U#hash} != "#hash"
|
|
|
|
lhs = "#hash", rhs = "#hash", op = !=
|
|
|
|
CondParser_Eval: ${:U\\} != "\\
|
|
|
|
lhs = "\", rhs = "\", op = !=
|
|
|
|
CondParser_Eval: ${:U#hash} != #hash
|
|
|
|
lhs = "#hash", rhs = "#hash", op = !=
|
|
|
|
CondParser_Eval: 0 # This is treated as a comment, but why?
|
|
|
|
CondParser_Eval: ${0 # comment :?yes:no} != no
|
|
|
|
CondParser_Eval: 0 # comment
|
|
|
|
lhs = "no", rhs = "no", op = !=
|
|
|
|
CondParser_Eval: ${1 # comment :?yes:no} != yes
|
|
|
|
CondParser_Eval: 1 # comment
|
|
|
|
lhs = "yes", rhs = "yes", op = !=
|
2020-09-12 20:47:24 +03:00
|
|
|
CondParser_Eval: ${UNDEF:Uundefined}!=undefined
|
|
|
|
lhs = "undefined", rhs = "undefined", op = !=
|
|
|
|
CondParser_Eval: ${UNDEF:U12345}>12345
|
|
|
|
lhs = 12345.000000, rhs = 12345.000000, op = >1
|
|
|
|
CondParser_Eval: ${UNDEF:U12345}<12345
|
|
|
|
lhs = 12345.000000, rhs = 12345.000000, op = <1
|
|
|
|
CondParser_Eval: (${UNDEF:U0})||0
|
|
|
|
CondParser_Eval: ${:Uvar}&&name != "var&&name"
|
|
|
|
lhs = "var&&name", rhs = "var&&name", op = !=
|
|
|
|
CondParser_Eval: ${:Uvar}||name != "var||name"
|
|
|
|
lhs = "var||name", rhs = "var||name", op = !=
|
2021-01-21 03:38:28 +03:00
|
|
|
CondParser_Eval: bare
|
|
|
|
make: "cond-token-plain.mk" line 102: A bare word is treated like defined(...), and the variable 'bare' is not defined.
|
|
|
|
CondParser_Eval: VAR
|
|
|
|
make: "cond-token-plain.mk" line 107: A bare word is treated like defined(...).
|
|
|
|
CondParser_Eval: V${:UA}R
|
|
|
|
make: "cond-token-plain.mk" line 114: ok
|
|
|
|
CondParser_Eval: V${UNDEF}AR
|
|
|
|
make: "cond-token-plain.mk" line 122: Undefined variables in bare words expand to an empty string.
|
|
|
|
CondParser_Eval: 0${:Ux00}
|
|
|
|
make: "cond-token-plain.mk" line 130: Numbers can be composed from literals and variable expressions.
|
|
|
|
CondParser_Eval: 0${:Ux01}
|
|
|
|
make: "cond-token-plain.mk" line 134: Numbers can be composed from literals and variable expressions.
|
2020-08-16 15:07:50 +03:00
|
|
|
exit status 0
|