From e13d161c627933f6fcb7002662bfbfc47c5d3b2f Mon Sep 17 00:00:00 2001 From: Jacob Dufault Date: Tue, 25 Apr 2017 19:57:27 -0700 Subject: [PATCH] Experimental support for emitting compile_commands.json from waf --- wscript | 1 + 1 file changed, 1 insertion(+) diff --git a/wscript b/wscript index bac66e3e..63e3c319 100644 --- a/wscript +++ b/wscript @@ -54,6 +54,7 @@ def options(opt): def configure(conf): conf.load('compiler_cxx') conf.check(header_name='stdio.h', features='cxx cxxprogram', mandatory=True) + conf.load('clang_compilation_database', tooldir='.') # Download and save the compressed tarball as |compressed_file_name|. if not os.path.isfile(CLANG_TARBALL_LOCAL_PATH):