File: gas.py

package info (click to toggle)
xmms2 0.8%2Bdfsg-21
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 14,024 kB
  • sloc: ansic: 63,803; python: 15,537; cpp: 5,718; xml: 1,479; perl: 338; ruby: 243; makefile: 83; sh: 59; asm: 7
file content (13 lines) | stat: -rw-r--r-- 356 bytes parent folder | download | duplicates (18)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /usr/bin/env python
# encoding: utf-8
# WARNING! Do not edit! https://waf.io/book/index.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')
	conf.env.ASM_NAME='gas'