LoginSignup
0
0

More than 1 year has passed since last update.

【cygwin】nkfをインストール

Last updated at Posted at 2020-07-01

ダウンロード

以下のページから最新の「nkf-2.1.5.tar.gz」をダウンロード

インストール

$ cd src
$ tar xvzf nkf-2.1.5.tar.gz
$ cd nkf-2.1.5
$ make
$ make install

makeの実行結果

$ make
cc -g -O2 -Wall -pedantic -c nkf.c
関数 ‘get_backup_filename’ 内,
    inlined from ‘main’ at nkf.c:7164:28:
nkf.c:1035:3: 警告: ‘strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation]
 1035 |   strncat(backup_filename, filename, filename_length);
      |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
nkf.c: 関数 ‘main’ 内:
nkf.c:1024:27: 備考: length computed here
 1024 |     int filename_length = strlen(filename);
      |                           ^~~~~~~~~~~~~~~~
cc -g -O2 -Wall -pedantic -c utf8tbl.c
cc -g -O2 -Wall -pedantic  -o nkf nkf.o utf8tbl.o

make installの実行結果

$ make install
mkdir /usr/local/bin
mkdir: ディレクトリ `/usr/local/bin' を作成できません: File exists
make: [Makefile:49: install-main] エラー 1 (無視されました)
cp -f nkf /usr/local/bin/
mkdir /usr/local/man
mkdir /usr/local/man/man1
cp -f nkf.1 /usr/local/man/man1/
mkdir /usr/local/man/ja
mkdir /usr/local/man/ja/man1
cp -f nkf.1j /usr/local/man/ja/man1/nkf.1

4. 追加インストールしたcygwinパッケージ

  • make
  • gcc-core
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