add configure to the list of make-like tools

Summary:public
Allow the use of `infer -- ./configure`. This can be useful if the full path to
the compiler is recorded by the `./configure` command. That is the case for the
samba source tree for instance (because `./configure` calls `waf configure`
under the hood).

Reviewed By: jeremydubreil

Differential Revision: D3093065

fb-gh-sync-id: 2663418
fbshipit-source-id: 2663418
master
Jules Villard 9 years ago committed by Facebook Github Bot 4
parent fd062cf736
commit a093780885

@ -26,7 +26,7 @@ infer -- clang -c srcfile.m
infer -- gcc -c srcfile.c'''
ALIASED_COMMANDS = ['clang', 'clang++', 'cc', 'gcc', 'g++']
BUILD_COMMANDS = ['make', 'waf']
BUILD_COMMANDS = ['configure', 'make', 'waf']
SUPPORTED_COMMANDS = ALIASED_COMMANDS + BUILD_COMMANDS
def gen_instance(*args):

Loading…
Cancel
Save