diff options
author | Andreas Hansson <andreas.hansson@arm.com> | 2012-06-18 15:43:12 -0400 |
---|---|---|
committer | Andreas Hansson <andreas.hansson@arm.com> | 2012-06-18 15:43:12 -0400 |
commit | eaf19d2815adc2c736fbd3fbdf0d8931bd98abd6 (patch) | |
tree | 7e0a2410fe26a38ebb746edc8f50e302d0d66f24 | |
parent | ce9ac3834293ee2d695d10147f8fb2b8f7865973 (diff) | |
download | gem5-eaf19d2815adc2c736fbd3fbdf0d8931bd98abd6.tar.xz |
Build: Point to the appropriate tcmalloc package
This patch updates the message printed if the user does not have
tcmalloc available. It turns out that the correct package (which
creates all required symlinks etc) is libgoogle-perftools-dev. This
has been verified on Ubuntu 12.04.
-rwxr-xr-x | SConstruct | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index 50eb9bf89..1b46e4a4c 100755 --- a/SConstruct +++ b/SConstruct @@ -769,7 +769,8 @@ else: have_tcmalloc = False print termcap.Yellow + termcap.Bold + \ "You can get a 12% performance improvement by installing tcmalloc "\ - "(google-perftools package on Ubuntu or RedHat)." + termcap.Normal + "(libgoogle-perftools-dev package on Ubuntu or RedHat)." + \ + termcap.Normal if not have_posix_clock: print "Can't find library for POSIX clocks." |