为什么从源代码构建 tmux 时 gcc 找不到 libevent?

为什么从源代码构建 tmux 时 gcc 找不到 libevent?

我想在没有 root 访问权限的计算机上安装 tmux。我已经编译了 libevent 并安装了它$HOME/.bin-libevent,现在我想编译 tmux,但配置总是以 结尾configure: error: "libevent not found",即使我试图通过Makefile.am修改LDFLAGS和指向 libevent 目录CPPFLAGS,但似乎没有任何作用。

我如何告诉系统在我的主目录中查找 libevent?

答案1

尝试:

DIR="$HOME/.bin-libevent"
./configure CFLAGS="-I$DIR/include" LDFLAGS="-L$DIR/lib"

(我确信一定有更好的方法来使用autoconf配置库路径。通常有一个--with-libevent=dir选项。但在这里,似乎没有这样的选项。)

答案2

我遇到了类似的问题,发现运行后sudo yum install libevent-devel我能够成功制作并安装 tmux。

编辑:如果您要在 Red Hat 计算机上安装此程序,您还需要访问 Red Hat 网络上服务器的频道选择并添加 RHEL 服务器可选频道。这将使您能够访问 libevent 的 -devel 包(基本频道和补充频道不提供它)。

答案3

我在 RHEL 5.4 上遇到了同样的问题,实际上发现 libevent 已安装,但没有 libevent.so 符号链接,只有库的真实版本:

/usr/lib64/libevent-1.1a.so.1
/usr/lib64/libevent-1.1a.so.1.0.2

所以,ln -s /usr/lib64/libevent-1.1a.so.1 /usr/lib64/libevent.so对我来说效果很好,不需要安装或改变任何东西。不知道为什么 RedHat 的 libevent rpm 没有创建符号链接。也许需要报告一个错误?

但现在,它却为此抱怨:error: event.h: No such file or directory

答案4

有一个要点在https://gist.github.com/ryin/3106801:

#!/bin/bash

# Script for installing tmux on systems where you don't have root access.
# tmux will be installed in $HOME/local/bin.
# It's assumed that wget and a C/C++ compiler are installed.

# exit on error
set -e

TMUX_VERSION=1.8

# create our directories
mkdir -p $HOME/local $HOME/tmux_tmp
cd $HOME/tmux_tmp

# download source files for tmux, libevent, and ncurses
wget -O tmux-${TMUX_VERSION}.tar.gz http://sourceforge.net/projects/tmux/files/tmux/tmux-${TMUX_VERSION}/tmux-${TMUX_VERSION}.tar.gz/download
wget https://github.com/downloads/libevent/libevent/libevent-2.0.19-stable.tar.gz
wget ftp://ftp.gnu.org/gnu/ncurses/ncurses-5.9.tar.gz

# extract files, configure, and compile

############
# libevent #
############
tar xvzf libevent-2.0.19-stable.tar.gz
cd libevent-2.0.19-stable
./configure --prefix=$HOME/local --disable-shared
make
make install
cd ..

############
# ncurses  #
############
tar xvzf ncurses-5.9.tar.gz
cd ncurses-5.9
./configure --prefix=$HOME/local
make
make install
cd ..

############
# tmux     #
############
tar xvzf tmux-${TMUX_VERSION}.tar.gz
cd tmux-${TMUX_VERSION}
./configure CFLAGS="-I$HOME/local/include -I$HOME/local/include/ncurses" LDFLAGS="-L$HOME/local/lib -L$HOME/local/include/ncurses -L$HOME/local/include"
CPPFLAGS="-I$HOME/local/include -I$HOME/local/include/ncurses" LDFLAGS="-static -L$HOME/local/include -L$HOME/local/include/ncurses -L$HOME/local/lib" make
cp tmux $HOME/local/bin
cd ..

# cleanup
rm -rf $HOME/tmux_tmp

echo "$HOME/local/bin/tmux is now available. You can optionally add $HOME/local/bin to your PATH."

相关内容