grnenv-rs is a tool to switch using multiple Groonga versions.
Currently, only confirmed to work on Windows 10, macOS Sierra(10.12), and Ubuntu Trusty (14.04 LTS).
x86_64 msvc target binaries are found at: https://github.com/cosmo0920/grnenv-rs/releases
And then, put binaries into $Env:USERPROFILE\bin
.
And follow the descriptions:
https://github.com/sfackler/rust-openssl#windows
You can use homebrewed openssl for compiling openssl-sys crate like this:
bash
export OPENSSL_INCLUDE_DIR=`brew --prefix openssl`/include
export OPENSSL_LIB_DIR=`brew --prefix openssl`/lib
And then, cargo build
.
If you installed openssl library in non-standard place, please specify OPENSSL_PKG_CONFIG_PATH
environment variable like this:
bash
$ export OPENSSL_PKG_CONFIG_PATH=/path/to/installed/openssl/lib/pkgconfig
This tool has plugin system, which is using subcommand mechanism.
You should put grnenv-*
executables into $PATH
or ~/bin
.
In Windows, grnenv-*
subcommand should be portable executables.
If you want to support Windows in subcommand, it recommends to use Rust language and build (i686|x86_64)-pc-windows-msvc target.
git clone and,
powershell
PS> cargo install
PS> grnenv init
And then, Please create profile.ps1 the following place:
powershell
$Env:USERPROFILE\Documents\WindowsPowerShell\profile.ps1
And write the following thing:
powershell
. $Env:USERPROFILE\.groonga\shims\bin\source-groonga.ps1
then,
powershell
PS> grnenv install VERSION [--arch (x86|x64)]
PS> grnenv switch VERSION [--arch (x86|x64)]
Finally, restart powershell and use specified version of Groonga.
git clone and,
bash
$ cargo install
$ grnenv init
And write the following into .bash_profile or .zsh_profile etc.:
bash
. $HOME/.groonga/shims/bin/source-groonga.sh
then,
bash
$ grnenv install VERSION
$ grnenv switch VERSION
Finally, restart your shell and use specified version of Groonga.
MIT.