2011-09-10 11:13:51 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# encoding: utf-8
|
|
|
|
# John O'Meara, 2006
|
2018-01-01 20:53:49 +01:00
|
|
|
# Thomas Nagy, 2006-2018 (ita)
|
2011-09-10 11:13:51 +02:00
|
|
|
|
|
|
|
"""
|
|
|
|
The **flex** program is a code generator which creates C or C++ files.
|
|
|
|
The generated files are compiled into object files.
|
|
|
|
"""
|
|
|
|
|
2016-07-28 23:19:25 +02:00
|
|
|
import os, re
|
|
|
|
from waflib import Task, TaskGen
|
|
|
|
from waflib.Tools import ccroot
|
2011-09-10 11:13:51 +02:00
|
|
|
|
|
|
|
def decide_ext(self, node):
|
|
|
|
if 'cxx' in self.features:
|
|
|
|
return ['.lex.cc']
|
|
|
|
return ['.lex.c']
|
|
|
|
|
|
|
|
def flexfun(tsk):
|
|
|
|
env = tsk.env
|
|
|
|
bld = tsk.generator.bld
|
|
|
|
wd = bld.variant_dir
|
|
|
|
def to_list(xx):
|
2017-04-17 12:26:47 +02:00
|
|
|
if isinstance(xx, str):
|
|
|
|
return [xx]
|
2011-09-10 11:13:51 +02:00
|
|
|
return xx
|
|
|
|
tsk.last_cmd = lst = []
|
2016-06-25 23:54:12 +02:00
|
|
|
lst.extend(to_list(env.FLEX))
|
|
|
|
lst.extend(to_list(env.FLEXFLAGS))
|
2016-03-23 22:28:14 +01:00
|
|
|
inputs = [a.path_from(tsk.get_cwd()) for a in tsk.inputs]
|
2012-10-10 11:00:44 +02:00
|
|
|
if env.FLEX_MSYS:
|
|
|
|
inputs = [x.replace(os.sep, '/') for x in inputs]
|
|
|
|
lst.extend(inputs)
|
2011-09-10 11:13:51 +02:00
|
|
|
lst = [x for x in lst if x]
|
|
|
|
txt = bld.cmd_and_log(lst, cwd=wd, env=env.env or None, quiet=0)
|
2012-10-05 00:05:48 +02:00
|
|
|
tsk.outputs[0].write(txt.replace('\r\n', '\n').replace('\r', '\n')) # issue #1207
|
2011-09-10 11:13:51 +02:00
|
|
|
|
2016-07-28 23:19:25 +02:00
|
|
|
TaskGen.declare_chain(
|
2011-09-10 11:13:51 +02:00
|
|
|
name = 'flex',
|
|
|
|
rule = flexfun, # issue #854
|
|
|
|
ext_in = '.l',
|
|
|
|
decider = decide_ext,
|
|
|
|
)
|
|
|
|
|
2016-07-28 23:19:25 +02:00
|
|
|
# To support the following:
|
|
|
|
# bld(features='c', flexflags='-P/foo')
|
|
|
|
Task.classes['flex'].vars = ['FLEXFLAGS', 'FLEX']
|
|
|
|
ccroot.USELIB_VARS['c'].add('FLEXFLAGS')
|
|
|
|
ccroot.USELIB_VARS['cxx'].add('FLEXFLAGS')
|
|
|
|
|
2011-09-10 11:13:51 +02:00
|
|
|
def configure(conf):
|
|
|
|
"""
|
|
|
|
Detect the *flex* program
|
|
|
|
"""
|
|
|
|
conf.find_program('flex', var='FLEX')
|
|
|
|
conf.env.FLEXFLAGS = ['-t']
|
|
|
|
|
2013-09-05 06:08:00 +02:00
|
|
|
if re.search (r"\\msys\\[0-9.]+\\bin\\flex.exe$", conf.env.FLEX[0]):
|
2012-10-10 11:00:44 +02:00
|
|
|
# this is the flex shipped with MSYS
|
|
|
|
conf.env.FLEX_MSYS = True
|
2013-09-05 06:08:00 +02:00
|
|
|
|