mirror of
https://github.com/samba-team/samba.git
synced 2025-01-13 13:18:06 +03:00
90ec37cf90
Signed-Off-By: Jelmer Vernooij <jelmer@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
33 lines
844 B
Python
33 lines
844 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
# Carlos Rafael Giani, 2007 (dv)
|
|
|
|
import os, sys, imp, types
|
|
import Utils, Configure, Options
|
|
|
|
def detect(conf):
|
|
if getattr(Options.options, 'check_dmd_first', None):
|
|
test_for_compiler = ['dmd', 'gdc']
|
|
else:
|
|
test_for_compiler = ['gdc', 'dmd']
|
|
|
|
for d_compiler in test_for_compiler:
|
|
try:
|
|
conf.check_tool(d_compiler)
|
|
except:
|
|
pass
|
|
else:
|
|
break
|
|
else:
|
|
conf.fatal('no suitable d compiler was found')
|
|
|
|
def set_options(opt):
|
|
d_compiler_opts = opt.add_option_group('D Compiler Options')
|
|
d_compiler_opts.add_option('--check-dmd-first', action='store_true',
|
|
help='checks for the gdc compiler before dmd (default is the other way round)',
|
|
dest='check_dmd_first',
|
|
default=False)
|
|
|
|
for d_compiler in ['gdc', 'dmd']:
|
|
opt.tool_options('%s' % d_compiler, option_group=d_compiler_opts)
|