File: nasm.py

package info (click to toggle)
pyinstaller 6.18.0%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,824 kB
  • sloc: python: 41,828; ansic: 12,123; makefile: 171; sh: 131; xml: 19
file content (25 lines) | stat: -rw-r--r-- 686 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#! /usr/bin/env python
# encoding: utf-8
# WARNING! Do not edit! https://waf.io/book/index.html#_obtaining_the_waf_file

import os
import waflib.Tools.asm
from waflib.TaskGen import feature


@feature('asm')
def apply_nasm_vars(self):
    self.env.append_value('ASFLAGS', self.to_list(getattr(self, 'nasm_flags', [])))


def configure(conf):
    conf.find_program(['nasm', 'yasm'], var='AS')
    conf.env.AS_TGT_F = ['-o']
    conf.env.ASLNK_TGT_F = ['-o']
    conf.load('asm')
    conf.env.ASMPATH_ST = '-I%s' + os.sep
    txt = conf.cmd_and_log(conf.env.AS + ['--version'])
    if 'yasm' in txt.lower():
        conf.env.ASM_NAME = 'yasm'
    else:
        conf.env.ASM_NAME = 'nasm'