Last active
January 25, 2024 23:37
-
-
Save tessus/5e118d44261a6ab2f198 to your computer and use it in GitHub Desktop.
compile tmux (static)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
TMUX_VERSION=2.3 | |
NCURSES_VERSION=6.0 | |
LIBEVENT_VERSION=2.0.22 | |
BASEDIR=${HOME}/work/tmux-static | |
TMUXTARGET=${BASEDIR}/local | |
mkdir -p $TMUXTARGET | |
cd $BASEDIR | |
export PKG_CONFIG_PATH="${TMUXTARGET}/lib/pkgconfig" | |
if [ ! -f libevent-${LIBEVENT_VERSION}-stable.tar.gz ]; then | |
wget -O libevent-${LIBEVENT_VERSION}-stable.tar.gz https://github.com/libevent/libevent/releases/download/release-${LIBEVENT_VERSION}-stable/libevent-${LIBEVENT_VERSION}-stable.tar.gz | |
fi | |
if [ ! -f ncurses-${NCURSES_VERSION}.tar.gz ]; then | |
wget -O ncurses-${NCURSES_VERSION}.tar.gz http://ftp.gnu.org/gnu/ncurses/ncurses-${NCURSES_VERSION}.tar.gz | |
fi | |
if [ ! -f tmux-${TMUX_VERSION}.tar.gz ]; then | |
wget -O tmux-${TMUX_VERSION}.tar.gz https://github.com/tmux/tmux/releases/download/${TMUX_VERSION}/tmux-${TMUX_VERSION}.tar.gz | |
fi | |
if [ ! -d libevent-${LIBEVENT_VERSION}-stable ]; then | |
cd ${BASEDIR} | |
tar -xzf libevent-${LIBEVENT_VERSION}-stable.tar.gz | |
cd ${BASEDIR}/libevent-${LIBEVENT_VERSION}-stable | |
./configure --prefix=$TMUXTARGET --disable-shared | |
make && make install | |
fi | |
if [ ! -d ncurses-${NCURSES_VERSION} ]; then | |
cd ${BASEDIR} | |
tar -xzf ncurses-${NCURSES_VERSION}.tar.gz | |
cd ${BASEDIR}/ncurses-${NCURSES_VERSION} | |
./configure --prefix=$TMUXTARGET --with-termlib --with-default-terminfo-dir=/usr/share/terminfo --with-terminfo-dirs="/etc/terminfo:/lib/terminfo:/usr/share/terminfo" | |
make && make install | |
fi | |
if [ ! -d tmux-${TMUX_VERSION} ]; then | |
cd ${BASEDIR} | |
tar -xzf tmux-${TMUX_VERSION}.tar.gz | |
cd tmux-${TMUX_VERSION} | |
./configure --prefix=$TMUXTARGET --enable-static CFLAGS="-I${TMUXTARGET}/include -I${TMUXTARGET}/include/ncurses" LDFLAGS="-L${TMUXTARGET}/lib -L${TMUXTARGET}/include -L${TMUXTARGET}/include/ncurses" LIBEVENT_CFLAGS="-I${TMUXTARGET}/include" LIBEVENT_LIBS="-L${TMUXTARGET}/lib -levent" LIBNCURSES_CFLAGS="-I${TMUXTARGET}/include" LIBNCURSES_LIBS="-L${TMUXTARGET}/lib -lncurses" | |
make && make install | |
fi | |
if [ -f $TMUXTARGET/bin/tmux ]; then | |
$TMUXTARGET/bin/tmux -V | |
echo "`whoami`@`hostname -d`:${TMUXTARGET}/bin/tmux" | |
fi |
FYI, here are some updates to support building new version tmux with static link. avoid the error of "conflicting types for 'forkpty'"
to add "--with-termlib" option for ncurses configure command line:
./configure --prefix=$TMUXTARGET --with-termlib --with-default-terminfo-dir=/usr/share/terminfo --with-terminfo-dirs="/etc/terminfo:/lib/terminfo:/usr/share/terminfo"
@blreay thx, I've updated the gist and added the --with-termlib
option.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I met this error also (build tmux 3.3a with static link) and have resolved it with adding "--with-termlib" to the configure command line of ncurses. the entire command line is:
cd ${BASEDIR}/ncurses-${NCURSES_VERSION}
./configure --prefix=$TMUXTARGET --with-termlib --with-default-terminfo-dir=/usr/share/terminfo --with-terminfo-dirs="/etc/terminfo:/lib/terminfo:/usr/share/terminfo"
make && make install
from ./configure --help:
--with-termlib generate separate terminfo library
It's a great script~