-
-
Save charlescui/1172826 to your computer and use it in GitHub Desktop.
install coreseek on mac os
This file contains hidden or 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
# 按照coreseek网站上的安装步骤没装上,所以采用了下面的安装方式,安装成功! | |
sudo port install autoconf263 libtool-devel m4 autoconf automake libtool | |
cd mmseg-3.2.14 | |
aclocal && glibtoolize --copy --force --ltdl && autoreconf -i -f && automake --a && ./configure --prefix=/usr/local/mmseg3 && make && sudo make install | |
cd ../csft-3.2.14 | |
./configure --prefix=/usr/local/coreseek --without-unixodbc --with-mmseg --with-mmseg-includes=/usr/local/mmseg3/include/mmseg/ --with-mmseg-libs=/usr/local/mmseg3/lib/ --with-pgsql | |
make && sudo make install | |
ln -s /usr/local/mmseg3/bin/mmseg /usr/local/bin/mmseg | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment