File: gas.py

package info (click to toggle)
patchage 0.5.0%2Bdfsg0-0.1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,512 kB
  • sloc: python: 11,225; cpp: 5,306; sh: 35; makefile: 12
file content (10 lines) | stat: -rw-r--r-- 258 bytes parent folder | download | duplicates (14)
1
2
3
4
5
6
7
8
9
10
#! /usr/bin/env python
# encoding: utf-8
# WARNING! All changes made to this file will be lost!

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.find_ar()