diff options
| author | Sidney Just | 2013-11-12 14:08:42 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2013-11-17 11:52:58 -0800 |
| commit | 680bca6ce53a94d7646c107b24e517868ae90c34 (patch) | |
| tree | f321045b9ed64602e97a399bf911a7189fc7bcb6 /Library/Formula | |
| parent | 6d8ae317ba7e7cc8359833be792deb6c03b2e6a4 (diff) | |
| download | homebrew-680bca6ce53a94d7646c107b24e517868ae90c34.tar.bz2 | |
google-perftools: fix the __thread TLS bug
See: https://code.google.com/p/gperftools/issues/detail?id=573
Closes #24211.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/google-perftools.rb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Library/Formula/google-perftools.rb b/Library/Formula/google-perftools.rb index 0cce0c067..735b58db9 100644 --- a/Library/Formula/google-perftools.rb +++ b/Library/Formula/google-perftools.rb @@ -11,9 +11,11 @@ class GooglePerftools < Formula cause "Segfault during linking" end - # Incorporated upstream, remove on next version update + # * DATA is incorporated upstream, remove on next version update + # * configure patch removes __thread support, which breaks tcmalloc since it internally calls malloc as well + # upstream: https://code.google.com/p/gperftools/issues/detail?id=573 def patches - DATA + [DATA, "https://gist.github.com/JustSid/7430366/raw"] end def install |
