我想在没有root访问权限的计算机上安装tmux。我已经编译了libevent并将其安装在其中$HOME/.bin-libevent
,现在我想编译tmux,但是configure总是以结尾configure: error: "libevent not found"
,即使我试图Makefile.am
通过修改LDFLAGS
和指向libevent目录CPPFLAGS
,但似乎没有任何效果。
如何告诉系统在主目录中查找libevent?
我想在没有root访问权限的计算机上安装tmux。我已经编译了libevent并将其安装在其中$HOME/.bin-libevent
,现在我想编译tmux,但是configure总是以结尾configure: error: "libevent not found"
,即使我试图Makefile.am
通过修改LDFLAGS
和指向libevent目录CPPFLAGS
,但似乎没有任何效果。
如何告诉系统在主目录中查找libevent?
Answers:
尝试:
DIR="$HOME/.bin-libevent"
./configure CFLAGS="-I$DIR/include" LDFLAGS="-L$DIR/lib"
(我确定必须有一种更好的方法来使用autoconf配置库路径。通常有一个--with-libevent=dir
选项。但是在这里,似乎没有这样的选项。)
make
最终起作用的方法。我尝试设置其他环境变量并设置prefix
和exec-prefix
,但是一旦包含了这些标志,实际上就已经建立了东西。
./configure CFLAGS="-I$DIR/include:/usr/otherdir" LDFLAGS="-L$DIR/lib:/usr/otherdir"
但没有成功
CFLAGS="-Idir1 -Idir2 -Idir3" LDFLAGS="-Ldira -Ldirb -Ldirb"
libevent not found
错误消失了,但是现在我对ncurses
:有了相同的认识curses not found
。我libevent
和ncurses
装置都在$HOME/.local/
libevent
,请使用LIBEVENT_CFLAGS
和LIBEVENT_LIBS
代替CFLASG
和LDFLAGS
。对于ncurse
使用LIBTINFO_CFLAGS
和LIBTINFO_LIBS
@Aalok
我遇到了类似的问题,发现运行后sudo yum install libevent-devel
我能够成功制作并安装tmux。
编辑:如果要在Red Hat机器上安装它,则还需要访问Red Hat Network上服务器的通道选择,并添加RHEL Server Optional通道。这将使您可以访问libevent的-devel软件包(基本和补充渠道均未提供)。
我在RHEL 5.4上遇到了相同的问题,实际上发现已安装libevent,但没有libevent.so symlink,只有库的真实版本:
/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
。
error: event.h: No such file or directory
。
tmux='LD_PRELOAD=/opt-local/lib/libevent-2.0.so.5 /opt-local/bin/tmux'
。奇迹般有效!
在配置和编译tmux(或任何程序)之前,您需要告诉它在哪里可以找到所需的库。如果您在非标准位置安装了某些库,则可以使用环境变量LD_LIBRARY_PRELOAD
来告知某些库的位置。
我你的情况:
$ export LD_LIBRARY_PRELOAD=$HOME/.bin-libevent/lib
然后继续进行配置/编译。
稍后,该二进制文件还需要知道可以在哪里找到其他库,因此您需要将该export
语句放在您的文件中.bashrc
(如果bash是您的登录shell)。
find .bin-libevent -name 'libevent.so*'
表现?
$ find .bin-libevent -name 'libevent.so*'
发现.bin-libevent/lib/libevent.so
$HOME/.bin-libevent/lib
(更新答案)
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."
ncurses
您指定的任何include /库路径的子目录中。奇怪的设计选择。这为我解决了。
我有同样的问题,看来最不赞成的答案对我没有用。我正在使用Fedora 22工作站。这是我为解决此问题所做的工作:1.安装libevent-devel
软件包。2.安装ncurses-devel
软件包
$ dnf install libevent-devel`
$ dnf install ncurses-devel
第一个解决不了任何event.h
问题,第二个解决不了诅咒问题。顺便说一句,上面的softlink方法在期间也对我有用./configure
。
可接受的答案是好的,但是至少从tmux 2.8开始,支持使用环境变量指定libevent位置。
首先在所需位置安装libevent。我使用cmake是因为我对autoconf有问题
cmake -DCMAKE_INSTALL_PREFIX=$HOME/usr ..
make install
然后构建并安装tmux:
export LIBEVENT_CFLAGS=-I${HOME}/usr/include
export LIBEVENT_LIBS="-L${HOME}/usr/lib -levent"
./configure --prefix=$HOME/usr
make install
环境变量将LIBEVENT_CFLAGS
覆盖pkg-config
libevent的设置,并LIBEVENT_LIBS
覆盖链接器标志设置。