mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-12 05:10:40 +01:00
32 lines
733 B
Python
32 lines
733 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
# Thomas Nagy, 2008-2018 (ita)
|
|
|
|
"""
|
|
Nasm tool (asm processing)
|
|
"""
|
|
|
|
import os
|
|
import waflib.Tools.asm # leave this
|
|
from waflib.TaskGen import feature
|
|
|
|
@feature('asm')
|
|
def apply_nasm_vars(self):
|
|
"""provided for compatibility"""
|
|
self.env.append_value('ASFLAGS', self.to_list(getattr(self, 'nasm_flags', [])))
|
|
|
|
def configure(conf):
|
|
"""
|
|
Detect nasm/yasm and set the variable *AS*
|
|
"""
|
|
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'
|