File: gas.py

package info (click to toggle)
lysdr 1.0~git20141206%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 832 kB
  • ctags: 1,685
  • sloc: python: 11,659; ansic: 1,335; makefile: 24
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()