SConscript (8335:9228e00459d4) SConscript (8745:575cab0db076)
1# -*- mode:python -*-
2
3# Copyright (c) 2009 The University of Edinburgh
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

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

35# Scons bug id: 2006 M5 Bug id: 308
36 Dir('isa/formats')
37 Source('insts/branch.cc')
38 Source('insts/mem.cc')
39 Source('insts/integer.cc')
40 Source('insts/floating.cc')
41 Source('insts/condition.cc')
42 Source('insts/static_inst.cc')
1# -*- mode:python -*-
2
3# Copyright (c) 2009 The University of Edinburgh
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

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

35# Scons bug id: 2006 M5 Bug id: 308
36 Dir('isa/formats')
37 Source('insts/branch.cc')
38 Source('insts/mem.cc')
39 Source('insts/integer.cc')
40 Source('insts/floating.cc')
41 Source('insts/condition.cc')
42 Source('insts/static_inst.cc')
43 Source('interrupts.cc')
43 Source('pagetable.cc')
44 Source('tlb.cc')
45 Source('utility.cc')
46
44 Source('pagetable.cc')
45 Source('tlb.cc')
46 Source('utility.cc')
47
48 SimObject('PowerInterrupts.py')
47 SimObject('PowerTLB.py')
49 SimObject('PowerTLB.py')
50
48 DebugFlag('Power')
49
50 if not env['FULL_SYSTEM']:
51 Source('process.cc')
52 Source('linux/linux.cc')
53 Source('linux/process.cc')
54
55 # Add in files generated by the ISA description.
56 isa_desc_files = env.ISADesc('isa/main.isa')
57
58 # Only non-header files need to be compiled.
59 for f in isa_desc_files:
60 if not f.path.endswith('.hh'):
61 Source(f)
62
51 DebugFlag('Power')
52
53 if not env['FULL_SYSTEM']:
54 Source('process.cc')
55 Source('linux/linux.cc')
56 Source('linux/process.cc')
57
58 # Add in files generated by the ISA description.
59 isa_desc_files = env.ISADesc('isa/main.isa')
60
61 # Only non-header files need to be compiled.
62 for f in isa_desc_files:
63 if not f.path.endswith('.hh'):
64 Source(f)
65