aboutsummaryrefslogtreecommitdiff
path: root/bin/jemalloc-config
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2025-02-05 23:20:13 +0000
committerWarner Losh <imp@FreeBSD.org>2025-02-05 23:20:13 +0000
commit48ec896efb0b78141df004eaa21288b84590c9da (patch)
tree33799792fd95c266d472ab1ae51d50ab4f942eb3 /bin/jemalloc-config
parentd28d7fbede216494aa3942af042cc084fcd6098a (diff)
jemalloc: Import 5.3.0 54eaed1d8b56b1aa528be3bdd1877e59c56fa90cvendor/jemalloc/5.3.0vendor/jemalloc
Import jemalloc 5.3.0. This import changes how manage the jemalloc vendor branch (which was just started anyway). Starting with 5.3.0, we import a clean tree from the upstream github, removing all the old files that are no longer upstream, or that we've kept around for some reason. We do this because we merge from this raw version of jemalloc into the FreeBSD contrib/jemalloc, then we run autogen stuff, generate all the generated .h files with gmake, then finally remove much of the generated files in contrib/jemalloc using an update script. Sponsored by: Netflix
Diffstat (limited to 'bin/jemalloc-config')
-rw-r--r--bin/jemalloc-config83
1 files changed, 0 insertions, 83 deletions
diff --git a/bin/jemalloc-config b/bin/jemalloc-config
deleted file mode 100644
index 2e4940fa5eb2..000000000000
--- a/bin/jemalloc-config
+++ /dev/null
@@ -1,83 +0,0 @@
-#!/bin/sh
-
-usage() {
- cat <<EOF
-Usage:
- /usr/local/bin/jemalloc-config <option>
-Options:
- --help | -h : Print usage.
- --version : Print jemalloc version.
- --revision : Print shared library revision number.
- --config : Print configure options used to build jemalloc.
- --prefix : Print installation directory prefix.
- --bindir : Print binary installation directory.
- --datadir : Print data installation directory.
- --includedir : Print include installation directory.
- --libdir : Print library installation directory.
- --mandir : Print manual page installation directory.
- --cc : Print compiler used to build jemalloc.
- --cflags : Print compiler flags used to build jemalloc.
- --cppflags : Print preprocessor flags used to build jemalloc.
- --cxxflags : Print C++ compiler flags used to build jemalloc.
- --ldflags : Print library flags used to build jemalloc.
- --libs : Print libraries jemalloc was linked against.
-EOF
-}
-
-prefix="/usr/local"
-exec_prefix="/usr/local"
-
-case "$1" in
---help | -h)
- usage
- exit 0
- ;;
---version)
- echo "5.2.1-0-gea6b3e973b477b8061e0076bb257dbd7f3faa756"
- ;;
---revision)
- echo "2"
- ;;
---config)
- echo "--enable-autogen --with-version=5.2.1-0-gea6b3e973b477b8061e0076bb257dbd7f3faa756"
- ;;
---prefix)
- echo "/usr/local"
- ;;
---bindir)
- echo "/usr/local/bin"
- ;;
---datadir)
- echo "/usr/local/share"
- ;;
---includedir)
- echo "/usr/local/include"
- ;;
---libdir)
- echo "/usr/local/lib"
- ;;
---mandir)
- echo "/usr/local/share/man"
- ;;
---cc)
- echo "gcc"
- ;;
---cflags)
- echo "-std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -pipe -g3 -fvisibility=hidden -O3 -funroll-loops"
- ;;
---cppflags)
- echo "-D_REENTRANT"
- ;;
---cxxflags)
- echo "-Wall -Wextra -g3 -fvisibility=hidden -O3"
- ;;
---ldflags)
- echo " "
- ;;
---libs)
- echo "-lm -lstdc++ -pthread"
- ;;
-*)
- usage
- exit 1
-esac