File: icc.py

package info (click to toggle)
pugl 0~svn32%2Bdfsg0-4
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 1,960 kB
  • sloc: python: 15,116; ansic: 674; cpp: 258; objc: 256; sh: 30; makefile: 22
file content (20 lines) | stat: -rw-r--r-- 510 bytes parent folder | download | duplicates (36)
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

import sys
from waflib.Tools import ccroot,ar,gcc
from waflib.Configure import conf
@conf
def find_icc(conf):
	cc=conf.find_program(['icc','ICL'],var='CC')
	conf.get_cc_version(cc,icc=True)
	conf.env.CC_NAME='icc'
def configure(conf):
	conf.find_icc()
	conf.find_ar()
	conf.gcc_common_flags()
	conf.gcc_modifier_platform()
	conf.cc_load_tools()
	conf.cc_add_flags()
	conf.link_add_flags()