From ac77923e2233547122343c9dcdb89be81bde896b Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 2 Apr 2020 20:47:18 +0200 Subject: Remove waf in preparation for switching to a submodule Unfortunately this leaves a commit with no build system at all in the history, but some systems do not handle replacing a directory with a submodule in the same commit properly. --- waflib/Tools/gas.py | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 waflib/Tools/gas.py (limited to 'waflib/Tools/gas.py') diff --git a/waflib/Tools/gas.py b/waflib/Tools/gas.py deleted file mode 100644 index 77afed7..0000000 --- a/waflib/Tools/gas.py +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/env python -# encoding: utf-8 -# Thomas Nagy, 2008-2018 (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') -- cgit v1.2.1