Deleted Added
sdiff udiff text old ( 3591:5c36532efd3c ) new ( 3592:1288f259d55c )
full compact
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

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

43#
44# Define needed sources.
45#
46###################################################
47
48# Base sources used by all configurations.
49base_sources = Split('''
50 faults.cc
51 floatregfile.cc
52 intregfile.cc
53 miscregfile.cc
54 regfile.cc
55 ''')
56
57# Full-system sources
58full_system_sources = Split('''
59 arguments.cc
60 ev5.cc
61 freebsd/system.cc
62 idle_event.cc
63 ipr.cc
64 kernel_stats.cc
65 linux/system.cc
66 osfpal.cc
67 pagetable.cc
68 stacktrace.cc
69 remote_gdb.cc
70 system.cc
71 tlb.cc
72 tru64/system.cc
73 vtophys.cc
74 ''')
75
76
77# Syscall emulation (non-full-system) sources
78syscall_emulation_sources = Split('''
79 linux/linux.cc
80 linux/process.cc
81 tru64/tru64.cc

--- 23 unchanged lines hidden ---