From: Stefan Metzmacher Date: Fri, 7 Sep 2018 14:32:28 +0000 (+0200) Subject: wafsamba: remove irixcc.py as we don't support IRIX any more X-Git-Tag: tdb-1.3.17~1663 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=420d0b5606b998df006f30966dffa5877175f608;p=thirdparty%2Fsamba.git wafsamba: remove irixcc.py as we don't support IRIX any more There's still a irixcc.py in waf itself. Signed-off-by: Stefan Metzmacher Reviewed-by: Andrew Bartlett --- diff --git a/buildtools/wafsamba/irixcc.py b/buildtools/wafsamba/irixcc.py deleted file mode 100644 index c33c96bd8f6..00000000000 --- a/buildtools/wafsamba/irixcc.py +++ /dev/null @@ -1,79 +0,0 @@ - -# compiler definition for irix/MIPSpro cc compiler -# based on suncc.py from waf - -import os, optparse -from waflib import Utils, Options, Configure -from waflib.Tools import ccroot, ar -from waflib.Configure import conftest - -from waflib.Tools.compiler_c import c_compiler - -c_compiler['irix'] = ['gcc', 'irixcc'] - -@conftest -def find_irixcc(conf): - v = conf.env - cc = None - if v['CC']: cc = v['CC'] - elif 'CC' in conf.environ: cc = conf.environ['CC'] - if not cc: cc = conf.find_program('cc', var='CC') - if not cc: conf.fatal('irixcc was not found') - cc = conf.cmd_to_list(cc) - - try: - if Utils.cmd_output(cc + ['-c99'] + ['-version']) != '': - conf.fatal('irixcc %r was not found' % cc) - except ValueError: - conf.fatal('irixcc -v could not be executed') - - conf.env.append_unique('CCFLAGS', '-c99') - - v['CC'] = cc - v['CC_NAME'] = 'irix' - -@conftest -def irixcc_common_flags(conf): - v = conf.env - - v['CC_SRC_F'] = '' - v['CC_TGT_F'] = ['-c', '-o', ''] - v['CPPPATH_ST'] = '-I%s' # template for adding include paths - - # linker - if not v['LINK_CC']: v['LINK_CC'] = v['CC'] - v['CCLNK_SRC_F'] = '' - v['CCLNK_TGT_F'] = ['-o', ''] - - v['LIB_ST'] = '-l%s' # template for adding libs - v['LIBPATH_ST'] = '-L%s' # template for adding libpaths - v['STATICLIB_ST'] = '-l%s' - v['STATICLIBPATH_ST'] = '-L%s' - v['CCDEFINES_ST'] = '-D%s' - -# v['SONAME_ST'] = '-Wl,-h -Wl,%s' -# v['SHLIB_MARKER'] = '-Bdynamic' -# v['STATICLIB_MARKER'] = '-Bstatic' - - # program - v['program_PATTERN'] = '%s' - - # shared library -# v['shlib_CCFLAGS'] = ['-Kpic', '-DPIC'] -# v['shlib_LINKFLAGS'] = ['-G'] - v['shlib_PATTERN'] = 'lib%s.so' - - # static lib -# v['staticlib_LINKFLAGS'] = ['-Bstatic'] -# v['staticlib_PATTERN'] = 'lib%s.a' - -detect = ''' -find_irixcc -find_cpp -find_ar -irixcc_common_flags -cc_load_tools -cc_add_flags -link_add_flags -''' - diff --git a/buildtools/wafsamba/wafsamba.py b/buildtools/wafsamba/wafsamba.py index 7aa6b379249..33ae1fe566d 100644 --- a/buildtools/wafsamba/wafsamba.py +++ b/buildtools/wafsamba/wafsamba.py @@ -26,7 +26,6 @@ import samba_conftests import samba_abi import samba_headers import tru64cc -import irixcc import hpuxcc import generic_cc import samba_dist