File: clangxx.py

package info (click to toggle)
xmms2 0.8%2Bdfsg-29
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 14,216 kB
  • sloc: ansic: 63,803; python: 15,537; cpp: 5,718; xml: 1,479; perl: 338; ruby: 243; makefile: 79; sh: 59; asm: 7
file content (20 lines) | stat: -rw-r--r-- 559 bytes parent folder | download | duplicates (53)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#! /usr/bin/env python
# encoding: utf-8
# WARNING! Do not edit! https://waf.io/book/index.html#_obtaining_the_waf_file

from waflib.Tools import ccroot,ar,gxx
from waflib.Configure import conf
@conf
def find_clangxx(conf):
	cxx=conf.find_program('clang++',var='CXX')
	conf.get_cc_version(cxx,clang=True)
	conf.env.CXX_NAME='clang'
def configure(conf):
	conf.find_clangxx()
	conf.find_program(['llvm-ar','ar'],var='AR')
	conf.find_ar()
	conf.gxx_common_flags()
	conf.gxx_modifier_platform()
	conf.cxx_load_tools()
	conf.cxx_add_flags()
	conf.link_add_flags()