File: gas.py

package info (click to toggle)
sord 0.8.0~dfsg0-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 4,248 kB
  • sloc: python: 11,990; ansic: 3,139; cpp: 483; xml: 173; makefile: 24
file content (11 lines) | stat: -rw-r--r-- 337 bytes parent folder | download | duplicates (21)
1
2
3
4
5
6
7
8
9
10
11
#! /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','as','gcc'],var='AS')
	conf.env.AS_TGT_F=['-o']
	conf.env.ASLNK_TGT_F=['-o']
	conf.find_ar()