thirdparty:waf: New files for waf 1.9.10
[bbaumbach/samba-autobuild/.git] / third_party / waf / waflib / Tools / nasm.py
diff --git a/third_party/waf/waflib/Tools/nasm.py b/third_party/waf/waflib/Tools/nasm.py
new file mode 100644 (file)
index 0000000..ab0e21f
--- /dev/null
@@ -0,0 +1,30 @@
+#! /usr/bin/env python
+# encoding: utf-8
+# WARNING! Do not edit! https://waf.io/book/index.html#_obtaining_the_waf_file
+
+#!/usr/bin/env python
+# encoding: utf-8
+# Thomas Nagy, 2008-2016 (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