SConscript revision 6882
111265Sandreas.sandberg@arm.com# -*- mode:python -*-
211265Sandreas.sandberg@arm.com
311265Sandreas.sandberg@arm.com# Copyright (c) 2009 The Hewlett-Packard Development Company
411265Sandreas.sandberg@arm.com# All rights reserved.
511265Sandreas.sandberg@arm.com#
611265Sandreas.sandberg@arm.com# Redistribution and use in source and binary forms, with or without
711265Sandreas.sandberg@arm.com# modification, are permitted provided that the following conditions are
811265Sandreas.sandberg@arm.com# met: redistributions of source code must retain the above copyright
911265Sandreas.sandberg@arm.com# notice, this list of conditions and the following disclaimer;
1011265Sandreas.sandberg@arm.com# redistributions in binary form must reproduce the above copyright
1111265Sandreas.sandberg@arm.com# notice, this list of conditions and the following disclaimer in the
1211265Sandreas.sandberg@arm.com# documentation and/or other materials provided with the distribution;
1311265Sandreas.sandberg@arm.com# neither the name of the copyright holders nor the names of its
1411265Sandreas.sandberg@arm.com# contributors may be used to endorse or promote products derived from
1511265Sandreas.sandberg@arm.com# this software without specific prior written permission.
1611265Sandreas.sandberg@arm.com#
1711265Sandreas.sandberg@arm.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1811265Sandreas.sandberg@arm.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1911265Sandreas.sandberg@arm.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
2011265Sandreas.sandberg@arm.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
2111265Sandreas.sandberg@arm.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2211265Sandreas.sandberg@arm.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2311265Sandreas.sandberg@arm.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2411265Sandreas.sandberg@arm.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2511265Sandreas.sandberg@arm.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2611265Sandreas.sandberg@arm.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2711265Sandreas.sandberg@arm.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2811265Sandreas.sandberg@arm.com#
2911265Sandreas.sandberg@arm.com# Authors: Nathan Binkert
3011265Sandreas.sandberg@arm.com
3111265Sandreas.sandberg@arm.comimport os
3211265Sandreas.sandberg@arm.comimport sys
3311265Sandreas.sandberg@arm.com
3411265Sandreas.sandberg@arm.comfrom os.path import basename, isdir, join as joinpath
3511265Sandreas.sandberg@arm.com
3611265Sandreas.sandberg@arm.comimport SCons
3711265Sandreas.sandberg@arm.com
3811265Sandreas.sandberg@arm.comImport('*')
3911265Sandreas.sandberg@arm.com
4011265Sandreas.sandberg@arm.comif not env['RUBY']:
4111265Sandreas.sandberg@arm.com    Return()
4211265Sandreas.sandberg@arm.com
4311265Sandreas.sandberg@arm.comSource('libruby.cc')
4411265Sandreas.sandberg@arm.com
4511265Sandreas.sandberg@arm.comdef do_embed_text(target, source, env):
4611265Sandreas.sandberg@arm.com    """convert a text file into a file that can be embedded in C
47    using an #include statement, that defines a \"const char *\" pointing
48    to the same text.
49
50    This is useful to embed scripts and configuration files in object files.
51    """
52
53    escape = [ "\'", "\"", "\\", "\?" ]
54
55    # reads the text file in, line by line, converting it to a C string
56    fin = open(str(source[0]), 'r')
57    fout = open(str(target[0]), 'w' )
58    fout.write("static const char *%s =\n" % source[1].get_contents());
59    for l in fin:
60        # add escape sequences for the characters in escape
61        fout.write("\"")
62        for char in l:
63            if char == "\n":
64                break
65            if char in escape:
66                fout.write("\\")
67                fout.write(char)
68            else:
69                fout.write(char)
70        fout.write("\\n\"\n");
71    fout.write(";\n");
72    fin.close()
73    fout.close()
74
75#
76# Link includes
77#
78generated_dir = Dir('../protocol')
79
80def MakeIncludeAction(target, source, env):
81    f = file(str(target[0]), 'w')
82    for s in source:
83        print >>f, '#include "%s"' % str(s.abspath)
84    f.close()
85
86def MakeInclude(source):
87    target = generated_dir.File(basename(source))
88    env.Command(target, source, MakeIncludeAction)
89
90MakeInclude('slicc_interface/AbstractEntry.hh')
91MakeInclude('slicc_interface/AbstractCacheEntry.hh')
92MakeInclude('slicc_interface/AbstractProtocol.hh')
93MakeInclude('slicc_interface/Message.hh')
94MakeInclude('slicc_interface/NetworkMessage.hh')
95
96# External types
97MakeInclude('buffers/MessageBuffer.hh')
98MakeInclude('common/Address.hh')
99MakeInclude('common/DataBlock.hh')
100MakeInclude('common/NetDest.hh')
101MakeInclude('common/Set.hh')
102MakeInclude('filters/GenericBloomFilter.hh')
103MakeInclude('system/CacheMemory.hh')
104MakeInclude('system/DMASequencer.hh')
105MakeInclude('system/DirectoryMemory.hh')
106MakeInclude('system/MachineID.hh')
107MakeInclude('system/MemoryControl.hh')
108MakeInclude('system/NodeID.hh')
109MakeInclude('system/PerfectCacheMemory.hh')
110MakeInclude('system/PersistentTable.hh')
111MakeInclude('system/Sequencer.hh')
112MakeInclude('system/TBETable.hh')
113MakeInclude('system/TimerTable.hh')
114