source: waflib/Tools/gas.py @ ce6186a

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since ce6186a was 0fa325b, checked in by Paul Brossier <piem@piem.org>, 11 years ago

waf: unpack

  • Property mode set to 100644
File size: 355 bytes
Line 
1#! /usr/bin/env python
2# encoding: utf-8
3# WARNING! Do not edit! http://waf.googlecode.com/git/docs/wafbook/single.html#_obtaining_the_waf_file
4
5import waflib.Tools.asm
6from waflib.Tools import ar
7def configure(conf):
8        conf.find_program(['gas','gcc'],var='AS')
9        conf.env.AS_TGT_F=['-c','-o']
10        conf.env.ASLNK_TGT_F=['-o']
11        conf.find_ar()
12        conf.load('asm')
Note: See TracBrowser for help on using the repository browser.