SConscript (4159:a3cc632b33d8) | SConscript (4166:ecebe3ac19b4) |
---|---|
1# -*- mode:python -*- 2 3# Copyright (c) 2005-2006 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 --- 97 unchanged lines hidden (view full) --- 106 ''') 107 108# Full-system sources 109full_system_sources = Split(''' 110 ''') 111 112# Syscall emulation (non-full-system) sources 113syscall_emulation_sources = Split(''' | 1# -*- mode:python -*- 2 3# Copyright (c) 2005-2006 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 --- 97 unchanged lines hidden (view full) --- 106 ''') 107 108# Full-system sources 109full_system_sources = Split(''' 110 ''') 111 112# Syscall emulation (non-full-system) sources 113syscall_emulation_sources = Split(''' |
114 linux/linux.cc 115 linux/process.cc 116 linux/syscalls.cc 117 process.cc |
|
114 ''') 115 116sources = base_sources 117 118if env['FULL_SYSTEM']: 119 sources += full_system_sources 120else: 121 sources += syscall_emulation_sources --- 12 unchanged lines hidden --- | 118 ''') 119 120sources = base_sources 121 122if env['FULL_SYSTEM']: 123 sources += full_system_sources 124else: 125 sources += syscall_emulation_sources --- 12 unchanged lines hidden --- |