source: waflib/Tools/clang.py @ 904702d

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 904702d was 904702d, checked in by Paul Brossier <piem@piem.org>, 9 years ago

waf, waflib: update to 1.8.7

  • Property mode set to 100644
File size: 539 bytes
Line 
1#! /usr/bin/env python
2# encoding: utf-8
3# WARNING! Do not edit! http://waf.googlecode.com/git/docs/wafbook/single.html#_obtaining_the_waf_file
4
5import os,sys
6from waflib.Tools import ccroot,ar,gcc
7from waflib.Configure import conf
8@conf
9def find_clang(conf):
10        cc=conf.find_program('clang',var='CC')
11        conf.get_cc_version(cc,clang=True)
12        conf.env.CC_NAME='clang'
13def configure(conf):
14        conf.find_clang()
15        conf.find_ar()
16        conf.gcc_common_flags()
17        conf.gcc_modifier_platform()
18        conf.cc_load_tools()
19        conf.cc_add_flags()
20        conf.link_add_flags()
Note: See TracBrowser for help on using the repository browser.