标签:影响 c++ des efi lease link eve odbc code
1.由于emqttd是用Erlang语言编写的,所以,在Linux下安装时,需要先安装Erlang。
sudo yum -y install make gcc gcc-c++ kernel-devel m4 ncurses-devel openssl-devel
wget http://www.erlang.org/download/otp_src_R13B04.tar.gz
tar xfvz otp_src_R13B04.tar.gz cd otp_src_R13B04/
编译此时会出大问题,会提示没有java什么的,需要进行下面操作,
这里主要注意 APPLICATIONS DISABLED 部分的提示,其他两部分是不影响编译的。
jinterface : No Java compiler found 什么?没有java编译器?其实这里我们可以选择用gcc等其他方式来编译erlang。
如果你安装了gcc,这里就用不上java编译了,因此可以在configure时增加 –disable-javac 避免第二个错误;
odbc : ODBC library – link check failed 表示你未安装unixODBC库
好吧,想办法安装下unixODBC:
安装 ODBC
下载unixODBC源码包(http://www.unixodbc.org/unixODBC-2.2.1.tar.gz)放到某处比如/usr/local下,然后运行下述命令:
tar zxvf unixODBC-2.2.1.tar.gz cd unixODBC-2.2.1 ./configure --prefix=/usr/local/unixODBC-2.2.1 --includedir=/usr/include --libdir=/usr/lib -bindir=/usr/bin --sysconfdir=/etc --enable-gui=no make make install
紧接着会出现 checking for X...
configure: error: Can‘t find X includes
解决方法:
./configure --x-includes=/usr/include/X11
后又出现
checking for X... configure: error: Can‘t find X libraries. Please check your installation and add the correct paths!
./configure --x-includes=/usr/include/X11 --x-libraries=/usr/lib/X11
标签:影响 c++ des efi lease link eve odbc code
原文地址:https://www.cnblogs.com/polar-lights/p/9315173.html