SConscript revision 7768
1# -*- mode:python -*-
2
3# Copyright (c) 2009 The Hewlett-Packard Development Company
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met: redistributions of source code must retain the above copyright
9# notice, this list of conditions and the following disclaimer;
10# redistributions in binary form must reproduce the above copyright
11# notice, this list of conditions and the following disclaimer in the
12# documentation and/or other materials provided with the distribution;
13# neither the name of the copyright holders nor the names of its
14# contributors may be used to endorse or promote products derived from
15# this software without specific prior written permission.
16#
17# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28#
29# Authors: Nathan Binkert
30
31import os
32import sys
33
34from os.path import basename, isdir, join as joinpath
35
36import SCons
37
38Import('*')
39
40if env['TARGET_ISA'] == 'no':
41    Return()
42
43if not env['RUBY']:
44    Return()
45
46Source('libruby.cc')
47
48def do_embed_text(target, source, env):
49    """convert a text file into a file that can be embedded in C
50    using an #include statement, that defines a \"const char *\" pointing
51    to the same text.
52
53    This is useful to embed scripts and configuration files in object files.
54    """
55
56    escape = [ "\'", "\"", "\\", "\?" ]
57
58    # reads the text file in, line by line, converting it to a C string
59    fin = open(str(source[0]), 'r')
60    fout = open(str(target[0]), 'w' )
61    fout.write("static const char *%s =\n" % source[1].get_contents());
62    for l in fin:
63        # add escape sequences for the characters in escape
64        fout.write("\"")
65        for char in l:
66            if char == "\n":
67                break
68            if char in escape:
69                fout.write("\\")
70                fout.write(char)
71            else:
72                fout.write(char)
73        fout.write("\\n\"\n");
74    fout.write(";\n");
75    fin.close()
76    fout.close()
77
78#
79# Link includes
80#
81generated_dir = Dir('../protocol')
82
83def MakeIncludeAction(target, source, env):
84    f = file(str(target[0]), 'w')
85    for s in source:
86        print >>f, '#include "%s"' % str(s.abspath)
87    f.close()
88
89def MakeInclude(source):
90    target = generated_dir.File(basename(source))
91    env.Command(target, source, MakeIncludeAction)
92
93MakeInclude('slicc_interface/AbstractEntry.hh')
94MakeInclude('slicc_interface/AbstractCacheEntry.hh')
95MakeInclude('slicc_interface/AbstractProtocol.hh')
96MakeInclude('slicc_interface/Message.hh')
97MakeInclude('slicc_interface/NetworkMessage.hh')
98
99# External types
100MakeInclude('buffers/MessageBuffer.hh')
101MakeInclude('common/Address.hh')
102MakeInclude('common/DataBlock.hh')
103MakeInclude('common/NetDest.hh')
104MakeInclude('common/Set.hh')
105MakeInclude('filters/GenericBloomFilter.hh')
106MakeInclude('system/CacheMemory.hh')
107MakeInclude('system/DMASequencer.hh')
108MakeInclude('system/DirectoryMemory.hh')
109MakeInclude('system/MachineID.hh')
110MakeInclude('system/MemoryControl.hh')
111MakeInclude('system/NodeID.hh')
112MakeInclude('system/PerfectCacheMemory.hh')
113MakeInclude('system/PersistentTable.hh')
114MakeInclude('system/Sequencer.hh')
115MakeInclude('system/TBETable.hh')
116MakeInclude('system/TimerTable.hh')
117