summaryrefslogtreecommitdiff
path: root/third_party/waf/waflib/Tools/gas.py
diff options
context:
space:
mode:
authorThomas Nagy <tnagy@waf.io>2016-03-26 13:32:11 +0100
committerAndrew Bartlett <abartlet@samba.org>2018-09-05 06:37:22 +0200
commitcbc6534682829b3115147f73ca9a7eb41008374c (patch)
treeed1c7b4902a33b28a0d5c789d954a5968b5cb882 /third_party/waf/waflib/Tools/gas.py
parent48cf9ccd2b086f902286668738d07455044f466b (diff)
downloadsamba-cbc6534682829b3115147f73ca9a7eb41008374c.tar.gz
thirdparty:waf: New files for waf 1.9.10
Signed-off-by: Thomas Nagy <tnagy@waf.io> Reviewed-by: Alexander Bokovoy <ab@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'third_party/waf/waflib/Tools/gas.py')
-rw-r--r--third_party/waf/waflib/Tools/gas.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/third_party/waf/waflib/Tools/gas.py b/third_party/waf/waflib/Tools/gas.py
new file mode 100644
index 00000000000..f1b648e60fc
--- /dev/null
+++ b/third_party/waf/waflib/Tools/gas.py
@@ -0,0 +1,22 @@
+#! /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)
+
+"Detect as/gas/gcc for compiling assembly files"
+
+import waflib.Tools.asm # - leave this
+from waflib.Tools import ar
+
+def configure(conf):
+ """
+ Find the programs gas/as/gcc and set the variable *AS*
+ """
+ conf.find_program(['gas', 'gcc'], var='AS')
+ conf.env.AS_TGT_F = ['-c', '-o']
+ conf.env.ASLNK_TGT_F = ['-o']
+ conf.find_ar()
+ conf.load('asm')