Files
UnrealEngineUWP/Engine/Source/ThirdParty/jemalloc/build/build.sh
Ben Marsh 99be00dcdb Merging latest from Private-Starship.
[CL 13192225 by Ben Marsh in ue5-main branch]
2020-05-05 18:50:52 -04:00

14 lines
235 B
Bash

#!/bin/sh
set +x
tar xf jemalloc-3.6.0.tar.bz2
cd jemalloc-3.6.0
sed -i s/initial-exec/local-dynamic/g configure
sed -i s/initial-exec/local-dynamic/g configure.ac
./configure --with-mangling --with-jemalloc-prefix=je_
make
set -x