feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change
on this file since ce6186a was
c101fe1,
checked in by Paul Brossier <piem@piem.org>, 11 years ago
|
waf, waflib: update to 1.7.13
|
-
Property mode set to
100644
|
File size:
1.4 KB
|
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 | |
---|
5 | import os |
---|
6 | from waflib import Utils |
---|
7 | from waflib.Tools import ccroot,ar |
---|
8 | from waflib.Configure import conf |
---|
9 | @conf |
---|
10 | def find_scc(conf): |
---|
11 | v=conf.env |
---|
12 | cc=None |
---|
13 | if v['CC']:cc=v['CC'] |
---|
14 | elif'CC'in conf.environ:cc=conf.environ['CC'] |
---|
15 | if not cc:cc=conf.find_program('cc',var='CC') |
---|
16 | if not cc:conf.fatal('Could not find a Sun C compiler') |
---|
17 | cc=conf.cmd_to_list(cc) |
---|
18 | try: |
---|
19 | conf.cmd_and_log(cc+['-flags']) |
---|
20 | except Exception: |
---|
21 | conf.fatal('%r is not a Sun compiler'%cc) |
---|
22 | v['CC']=cc |
---|
23 | v['CC_NAME']='sun' |
---|
24 | conf.get_suncc_version(cc) |
---|
25 | @conf |
---|
26 | def scc_common_flags(conf): |
---|
27 | v=conf.env |
---|
28 | v['CC_SRC_F']=[] |
---|
29 | v['CC_TGT_F']=['-c','-o'] |
---|
30 | if not v['LINK_CC']:v['LINK_CC']=v['CC'] |
---|
31 | v['CCLNK_SRC_F']='' |
---|
32 | v['CCLNK_TGT_F']=['-o'] |
---|
33 | v['CPPPATH_ST']='-I%s' |
---|
34 | v['DEFINES_ST']='-D%s' |
---|
35 | v['LIB_ST']='-l%s' |
---|
36 | v['LIBPATH_ST']='-L%s' |
---|
37 | v['STLIB_ST']='-l%s' |
---|
38 | v['STLIBPATH_ST']='-L%s' |
---|
39 | v['SONAME_ST']='-Wl,-h,%s' |
---|
40 | v['SHLIB_MARKER']='-Bdynamic' |
---|
41 | v['STLIB_MARKER']='-Bstatic' |
---|
42 | v['cprogram_PATTERN']='%s' |
---|
43 | v['CFLAGS_cshlib']=['-Kpic','-DPIC'] |
---|
44 | v['LINKFLAGS_cshlib']=['-G'] |
---|
45 | v['cshlib_PATTERN']='lib%s.so' |
---|
46 | v['LINKFLAGS_cstlib']=['-Bstatic'] |
---|
47 | v['cstlib_PATTERN']='lib%s.a' |
---|
48 | def configure(conf): |
---|
49 | conf.find_scc() |
---|
50 | conf.find_ar() |
---|
51 | conf.scc_common_flags() |
---|
52 | conf.cc_load_tools() |
---|
53 | conf.cc_add_flags() |
---|
54 | conf.link_add_flags() |
---|
Note: See
TracBrowser
for help on using the repository browser.