Skip to content

Commit 2ee900c

Browse files
xhochywesm
authored andcommitted
ARROW-1702: Update jemalloc in manylinux1 build
Author: Uwe L. Korn <uwelk@xhochy.com> Closes apache#1230 from xhochy/update-manylinux1-jemalloc and squashes the following commits: 6a29fa8 [Uwe L. Korn] Update jemalloc in manylinux1 build
1 parent 989aba6 commit 2ee900c

1 file changed

Lines changed: 9 additions & 4 deletions

File tree

python/manylinux1/scripts/build_jemalloc.sh

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,16 @@
1616
# specific language governing permissions and limitations
1717
# under the License.
1818

19-
wget https://github.com/jemalloc/jemalloc/releases/download/4.4.0/jemalloc-4.4.0.tar.bz2 -O jemalloc-4.4.0.tar.bz2
20-
tar xf jemalloc-4.4.0.tar.bz2
21-
pushd /jemalloc-4.4.0
19+
wget https://github.com/jemalloc/jemalloc/archive/17c897976c60b0e6e4f4a365c751027244dada7a.tar.gz -O jemalloc.tar.gz
20+
tar xf jemalloc.tar.gz
21+
mv jemalloc-* jemalloc
22+
pushd /jemalloc
23+
./autogen.sh
2224
./configure "--with-jemalloc-prefix=je_arrow_" "--with-private-namespace=je_arrow_private_"
25+
# Skip doc generation
26+
touch doc/jemalloc.html
27+
touch doc/jemalloc.3
2328
make -j5
2429
make install
2530
popd
26-
rm -rf jemalloc-4.4.0.tar.bz2 jemalloc-4.4.0
31+
rm -rf jemalloc.tar.gz jemalloc

0 commit comments

Comments
 (0)