ext: Revert "base: Use system libelf instead of ext"
[gem5.git] / ext / libelf / SConscript
1 # -*- mode:python -*-
2
3 # Copyright (c) 2004-2005 The Regents of The University of Michigan
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
31 from __future__ import print_function
32
33 import os, subprocess
34
35 Import('main')
36
37 from m5.util import compareVersions
38
39 elf_files = []
40 def ElfFile(filename):
41 elf_files.append(File(filename))
42
43 ElfFile('elf_begin.c')
44 ElfFile('elf_cntl.c')
45 ElfFile('elf_data.c')
46 ElfFile('elf_end.c')
47 ElfFile('elf_errmsg.c')
48 ElfFile('elf_errno.c')
49 ElfFile('elf_fill.c')
50 ElfFile('elf_flag.c')
51 ElfFile('elf_getarhdr.c')
52 ElfFile('elf_getarsym.c')
53 ElfFile('elf_getbase.c')
54 ElfFile('elf_getident.c')
55 ElfFile('elf_hash.c')
56 ElfFile('elf_kind.c')
57 ElfFile('elf_memory.c')
58 ElfFile('elf_next.c')
59 ElfFile('elf_phnum.c')
60 ElfFile('elf_rand.c')
61 ElfFile('elf_rawfile.c')
62 ElfFile('elf_scn.c')
63 ElfFile('elf_shnum.c')
64 ElfFile('elf_shstrndx.c')
65 ElfFile('elf_strptr.c')
66 ElfFile('elf_update.c')
67 ElfFile('elf_version.c')
68 ElfFile('gelf_checksum.c')
69 ElfFile('gelf_dyn.c')
70 ElfFile('gelf_ehdr.c')
71 ElfFile('gelf_fsize.c')
72 ElfFile('gelf_getclass.c')
73 ElfFile('gelf_phdr.c')
74 ElfFile('gelf_rel.c')
75 ElfFile('gelf_rela.c')
76 ElfFile('gelf_shdr.c')
77 ElfFile('gelf_sym.c')
78 ElfFile('gelf_symshndx.c')
79 ElfFile('gelf_xlate.c')
80 ElfFile('libelf.c')
81 ElfFile('libelf_align.c')
82 ElfFile('libelf_allocate.c')
83 ElfFile('libelf_ar.c')
84 ElfFile('libelf_checksum.c')
85 ElfFile('libelf_data.c')
86 ElfFile('libelf_ehdr.c')
87 ElfFile('libelf_extended.c')
88 ElfFile('libelf_phdr.c')
89 ElfFile('libelf_shdr.c')
90 ElfFile('libelf_xlate.c')
91
92 ElfFile('libelf_convert.c')
93 ElfFile('libelf_fsize.c')
94 ElfFile('libelf_msize.c')
95
96 m4env = main.Clone()
97 if m4env['GCC']:
98 m4env.Append(CCFLAGS=['-Wno-pointer-sign',
99 '-Wno-unused-but-set-variable',
100 '-Wno-implicit-function-declaration',
101 '-Wno-override-init'])
102 if m4env['CLANG']:
103 m4env.Append(CCFLAGS=['-Wno-initializer-overrides', '-Wno-pointer-sign'])
104 # clang defaults to c99 (while gcc defaults to gnu89) and there is a
105 # difference in the handling of inlining functions which causes
106 # linking problems with multiple definitions of the symbols in
107 # sysmacros.h for older versions of glibc
108 m4env.Append(CCFLAGS=['-std=gnu89'])
109 m4env.Append(CCFLAGS=['-Wno-implicit'])
110 del m4env['CPPPATH']
111
112 # If we have gm4 use it
113 if m4env.Detect('gm4'):
114 m4env['M4'] = 'gm4'
115
116 # Check that m4 is available
117 import SCons.Tool.m4
118 if not SCons.Tool.m4.exists(m4env):
119 print("Error: Can't find version of M4 macro processor. " +
120 "Please install M4 and try again.")
121 Exit(1)
122
123 m4env.Append(M4FLAGS=['-DSRCDIR=%s' % Dir('.').path])
124 m4env['M4COM'] = '$M4 $M4FLAGS $SOURCES > $TARGET'
125 m4env.M4(target=File('libelf_convert.c'),
126 source=[File('elf_types.m4'), File('libelf_convert.m4')])
127 m4env.M4(target=File('libelf_fsize.c'),
128 source=[File('elf_types.m4'), File('libelf_fsize.m4')])
129 m4env.M4(target=File('libelf_msize.c'),
130 source=[File('elf_types.m4'), File('libelf_msize.m4')])
131
132 # Build libelf as a static library with PIC code so it can be linked
133 # into either m5 or the library
134 m4env.Library('elf', [m4env.SharedObject(f) for f in elf_files])
135
136 main.Prepend(CPPPATH=Dir('.'))
137 main.Append(LIBS=['elf'])
138 main.Prepend(LIBPATH=[Dir('.')])
139