SConscript (5863:f73e06bc8765) SConscript (6120:4dcea6c903fa)
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

--- 105 unchanged lines hidden (view full) ---

114 source=[File('elf_types.m4'), File('libelf_fsize.m4')])
115m4env.M4(target=File('libelf_msize.c'),
116 source=[File('elf_types.m4'), File('libelf_msize.m4')])
117
118# Build libelf as a static library with PIC code so it can be linked
119# into either m5 or the library
120m4env.Library('elf', [m4env.SharedObject(f) for f in elf_files])
121
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

--- 105 unchanged lines hidden (view full) ---

114 source=[File('elf_types.m4'), File('libelf_fsize.m4')])
115m4env.M4(target=File('libelf_msize.c'),
116 source=[File('elf_types.m4'), File('libelf_msize.m4')])
117
118# Build libelf as a static library with PIC code so it can be linked
119# into either m5 or the library
120m4env.Library('elf', [m4env.SharedObject(f) for f in elf_files])
121
122env.Append(CPPPATH=Dir('.'))
122env.Prepend(CPPPATH=Dir('.'))
123env.Append(LIBS=['elf'])
123env.Append(LIBS=['elf'])
124env.Append(LIBPATH=[Dir('.')])
124env.Prepend(LIBPATH=[Dir('.')])
125
125