diff options
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 13 |
1 files changed, 2 insertions, 11 deletions
@@ -43,19 +43,10 @@ def configure(conf): conf.env.append_unique('CXXFLAGS', '-std=c++11') conf.check_cfg( - path = 'llvm-config-3.1', + path = 'llvm-config-3.2', args = '--cppflags --ldflags --libs core jit native codegen ipo', package = '', - uselib_store = 'LLVM', - mandatory = False) - - if not conf.is_defined('HAVE_LLVM'): - conf.check_cfg( - path = 'llvm-config-3.0', - args = '--cppflags --ldflags --libs core jit native codegen ipo', - package = '', - uselib_store = 'LLVM', - mandatory = False) + uselib_store = 'LLVM') def build(bld): source = ''' |