summaryrefslogtreecommitdiff
path: root/ext/gzstream/SConscript
diff options
context:
space:
mode:
authorClint Smullen <cws3k@cs.virginia.edu>2008-11-15 23:42:11 -0500
committerClint Smullen <cws3k@cs.virginia.edu>2008-11-15 23:42:11 -0500
commit3087be945d84031d7d6a9cd45bd90d5767d1b7cc (patch)
treed31827399f743c8ab629e4e49125d9522b90282c /ext/gzstream/SConscript
parent4514f565e3dfe1de41bbaec05f3f0074e5299bac (diff)
downloadgem5-3087be945d84031d7d6a9cd45bd90d5767d1b7cc.tar.xz
Output: Include gzstream package to allow automatically-gzipped output
The gzstream package provides an ostream-interface for writing gzipped files. The package comes from: http://www.cs.unc.edu/Research/compgeom/gzstream/ And is distributed under the LGPL license. Both the license and version information has been preservered, though all other files in the package have been purged. Minor modifications to the code have been made. The output module detects when a filename ends in .gz and constructs an ogzstream object instead of an ofstream object. This works for both the create(...) and find(...) commands. Additionally, since gzstream objects needs to be closed to ensure proper file termination, I have the output deconstructor deleting all ostream's that it manages on behalf of find(...). At the moment, the only output file that I know this functionality works for is stats, i.e. by specifying "--stats-file=m5stats.txt.gz" on the command line.
Diffstat (limited to 'ext/gzstream/SConscript')
-rw-r--r--ext/gzstream/SConscript40
1 files changed, 40 insertions, 0 deletions
diff --git a/ext/gzstream/SConscript b/ext/gzstream/SConscript
new file mode 100644
index 000000000..85bf95f5b
--- /dev/null
+++ b/ext/gzstream/SConscript
@@ -0,0 +1,40 @@
+# -*- mode:python -*-
+
+# Copyright (c) 2004-2005 The Regents of The University of Michigan
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions are
+# met: redistributions of source code must retain the above copyright
+# notice, this list of conditions and the following disclaimer;
+# redistributions in binary form must reproduce the above copyright
+# notice, this list of conditions and the following disclaimer in the
+# documentation and/or other materials provided with the distribution;
+# neither the name of the copyright holders nor the names of its
+# contributors may be used to endorse or promote products derived from
+# this software without specific prior written permission.
+#
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+#
+# Authors: Nathan Binkert
+
+import os, subprocess
+
+Import('env')
+
+env.Library('gzstream', [File('gzstream.cc')])
+
+env.Append(CPPPATH=Dir('.'))
+env.Append(LIBS=['gzstream'])
+env.Append(LIBPATH=[Dir('.')])
+