Lines Matching refs:CPP
4 Subject: [PATCH 2/6] configure: Don't use host CPP
6 CPP is redefined if a cpp binary (/lib/cpp) is found on the host.
8 Use the CPP="${CC} -E" allows to pass the following checks:
24 CPP="${CC} -E"
26 -[ -f /usr/ccs/lib/cpp ] && CPP="/usr/ccs/lib/cpp -P"
27 -[ -f /usr/lib/cpp ] && CPP=/usr/lib/cpp
28 -[ -f /lib/cpp ] && CPP=/lib/cpp
29 -[ -f /usr/bin/cpp ] && CPP=/usr/bin/cpp
30 -[ -f /xenix ] && CPP="${CC} -E"
31 -[ -f /lynx.os ] && CPP="${CC} -E"
34 $CPP conftest.c >/dev/null 2>/dev/null || CPP="${CC} -E"