0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

global ビルド

Last updated at Posted at 2018-03-31

windows10のubuntueだとglobalのバージョンが5.7だったので、6.6.2にしたかったです。5.7だとタグづけに失敗する場合がありました。

https://www.gnu.org/software/global/
https://www.gnu.org/software/global/download.html
http://tamacom.com/global/global-6.6.2.tar.gz
globalのソースコードを入手

https://ftp.gnu.org/gnu/ncurses/
https://ftp.gnu.org/gnu/ncurses/ncurses-6.1.tar.gz
ncureseのソースコードを入手

順番は、ncurses → globalの順でインストールします。

tar xfz ncurses-6.1.tar.gz
cd ncurese-6.1/
./configure
make
sudo make install
tar xfz global-6.6.2.tar.gz
cd global-6.6.2
./configure
make
sudo make install

あとは、./configureやmakeに失敗することがあったので、いくつかツールをインストールしました。

apt-getのパッケージを最新版にして

sudo apt-get update
sudo apt-get upgrade

gcc ,make, autoconf, build-essential,textinfo(makeinfo)をインストールしたと思います。

sudo apt-get install gcc
sudo apt-get install make
sudo apt-get install autoconf
sudo apt-get install build-essential
sudo apt-get install textinfo
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?