File: nasm.py

package info (click to toggle)
jackd2 1.9.10%2B20140719git3eb0ae6a~dfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 8,216 kB
  • ctags: 11,150
  • sloc: cpp: 54,135; ansic: 28,673; python: 12,903; sh: 88; makefile: 70; objc: 39
file content (14 lines) | stat: -rw-r--r-- 467 bytes parent folder | download | duplicates (20)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! /usr/bin/env python
# encoding: utf-8
# WARNING! Do not edit! http://waf.googlecode.com/git/docs/wafbook/single.html#_obtaining_the_waf_file

import waflib.Tools.asm
from waflib.TaskGen import feature
def apply_nasm_vars(self):
	self.env.append_value('ASFLAGS',self.to_list(getattr(self,'nasm_flags',[])))
def configure(conf):
	nasm=conf.find_program(['nasm','yasm'],var='AS')
	conf.env.AS_TGT_F=['-o']
	conf.env.ASLNK_TGT_F=['-o']

feature('asm')(apply_nasm_vars)