File: gas.py

package info (click to toggle)
mpv 0.6.2-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 8,908 kB
  • ctags: 14,061
  • sloc: ansic: 100,741; python: 13,521; objc: 3,928; sh: 1,121; perl: 896; makefile: 450; cpp: 130; ruby: 121; pascal: 44
file content (12 lines) | stat: -rw-r--r-- 355 bytes parent folder | download | duplicates (61)
1
2
3
4
5
6
7
8
9
10
11
12
#! /usr/bin/env python
# encoding: utf-8
# WARNING! Do not edit! http://waf.googlecode.com/git/docs/wafbook/single.html#_obtaining_the_waf_file

import waflib.Tools.asm
from waflib.Tools import ar
def configure(conf):
	conf.find_program(['gas','gcc'],var='AS')
	conf.env.AS_TGT_F=['-c','-o']
	conf.env.ASLNK_TGT_F=['-o']
	conf.find_ar()
	conf.load('asm')