This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: gcc/configure.in warning squelch patch


> !   if ($gcc_cv_as -o conftest1.o conftest1.s > /dev/null 2>&1) \

The use of parens is not needed, and adds an additional invocation of
/bin/sh for each paren pair (which is significant on cygwin).  The one
time when they are needed is if you also want to squelch messages from
/bin/sh itself (i.e. "command not found"), in which case you'd need
the redirection to be outside of the parens anyway.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]