mirror of
https://github.com/google/pebble.git
synced 2025-06-03 08:43:12 +00:00
Import of the watch repository from Pebble
This commit is contained in:
commit
3b92768480
10334 changed files with 2564465 additions and 0 deletions
24
third_party/waf/waf-light/waflib/Tools/nasm.py
vendored
Normal file
24
third_party/waf/waf-light/waflib/Tools/nasm.py
vendored
Normal file
|
@ -0,0 +1,24 @@
|
|||
#!/usr/bin/env python
|
||||
# encoding: utf-8
|
||||
# Thomas Nagy, 2008-2010 (ita)
|
||||
|
||||
"""
|
||||
Nasm tool (asm processing)
|
||||
"""
|
||||
|
||||
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*
|
||||
"""
|
||||
nasm = conf.find_program(['nasm', 'yasm'], var='AS')
|
||||
conf.env.AS_TGT_F = ['-o']
|
||||
conf.env.ASLNK_TGT_F = ['-o']
|
||||
conf.load('asm')
|
Loading…
Add table
Add a link
Reference in a new issue