From: Andreas Hansson Date: Mon, 18 Jun 2012 19:43:12 +0000 (-0400) Subject: Build: Point to the appropriate tcmalloc package X-Git-Tag: stable_2012_06_28~2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=eaf19d2815adc2c736fbd3fbdf0d8931bd98abd6;p=gem5.git 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. --- 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."