Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Release 1.0.2 - TBD
- jemalloc v5.0.1

Release 1.0.1 - 2015/01/15
- just exec without spawn

Expand Down
5 changes: 4 additions & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
jemalloc (1.0.1)
jemalloc (1.0.2)

GEM
remote: https://rubygems.org/
Expand All @@ -18,3 +18,6 @@ DEPENDENCIES
jemalloc!
rake (>= 0.8.7)
rake-compiler (~> 0.7.1)

BUNDLED WITH
1.13.5
4 changes: 3 additions & 1 deletion ext/jemalloc/extconf.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'rbconfig'

$stdout.sync = true
pkg = "jemalloc-3.4.0"
pkg = "jemalloc-5.0.1"

def sys(cmd)
puts "$ #{cmd}"
Expand All @@ -24,6 +24,8 @@ def sys(cmd)
Dir.chdir(pkg) do
# configure
sys "./configure"
# generates some .h files
sys "make include/jemalloc/internal/private_namespace.h"
# zone.c is only for Mac OS X
if RbConfig::CONFIG['target_vendor'] != "apple"
sys "rm -fR src/zone.c"
Expand Down
Binary file removed ext/jemalloc/jemalloc-3.4.0.tar.bz2
Binary file not shown.
Binary file added ext/jemalloc/jemalloc-5.0.1.tar.bz2
Binary file not shown.
2 changes: 1 addition & 1 deletion lib/jemalloc/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module JEMalloc
VERSION = "1.0.1"
VERSION = "1.0.2"
end