source: waflib/Tools/nasm.py @ 5525507

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

waf, waflib: update to 1.7.15

  • Property mode set to 100644
File size: 514 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 os
6import waflib.Tools.asm
7from waflib.TaskGen import feature
8@feature('asm')
9def apply_nasm_vars(self):
10        self.env.append_value('ASFLAGS',self.to_list(getattr(self,'nasm_flags',[])))
11def configure(conf):
12        nasm=conf.find_program(['nasm','yasm'],var='AS')
13        conf.env.AS_TGT_F=['-o']
14        conf.env.ASLNK_TGT_F=['-o']
15        conf.load('asm')
16        conf.env.ASMPATH_ST='-I%s'+os.sep
Note: See TracBrowser for help on using the repository browser.