SConstruct (5397:58e5b68f7095) SConstruct (5398:9727ba4600de)
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

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

138 print "ranges (inclusive):"
139 for bad_ver in bad_ver_strs:
140 print " %s - %s" % bad_ver
141 Exit(2)
142
143CheckSCons((
144 # We need a version that is 0.96.91 or newer
145 ('0.0.0', '0.96.90'),
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

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

138 print "ranges (inclusive):"
139 for bad_ver in bad_ver_strs:
140 print " %s - %s" % bad_ver
141 Exit(2)
142
143CheckSCons((
144 # We need a version that is 0.96.91 or newer
145 ('0.0.0', '0.96.90'),
146 # This range has a bug with linking directories into the build dir
147 # that only have header files in them
148 ('0.97.0d20071212', '0.98.0')
149 ))
150
151
152# The absolute path to the current directory (where this file lives).
153ROOT = Dir('.').abspath
154
155# Path to the M5 source tree.
156SRCDIR = joinpath(ROOT, 'src')

--- 695 unchanged lines hidden ---
146 ))
147
148
149# The absolute path to the current directory (where this file lives).
150ROOT = Dir('.').abspath
151
152# Path to the M5 source tree.
153SRCDIR = joinpath(ROOT, 'src')

--- 695 unchanged lines hidden ---