1
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.

QMKセットアップ時の警告

Last updated at Posted at 2018-10-31

この前の技術書典でcrkbdを買ったので、自作キーボード初挑戦中です。
個人的備忘録用兼、同じ事起きた人用に残して起きます。

OS:macOS High Sierra 10.13.16

ファームウェアの設定で
https://docs.qmk.fm/#/newbs_getting_started
見ながら進めてたら、セットアップのところで警告を吐かれた。
HomeBrewのupdateと被ったせいか、もしくはinstallが長くて、少しスリープに入っちゃったせいかも?
とりあえず警告の内容が

$ ./util/qmk_install.sh

Already up-to-date.
Warning: osx-cross/avr/avr-gcc@7 7.3.0 is already installed and up-to-date
To reinstall 7.3.0, run `brew reinstall avr-gcc@7`
Warning: px4/px4/gcc-arm-none-eabi 20171218 is already installed and up-to-date
To reinstall 20171218, run `brew reinstall gcc-arm-none-eabi`
Warning: dfu-programmer 0.7.2 is already installed and up-to-date
To reinstall 0.7.2, run `brew reinstall dfu-programmer`
Warning: avrdude 6.3_1 is already installed and up-to-date
To reinstall 6.3_1, run `brew reinstall avrdude`
Warning: dfu-util 0.9 is already installed and up-to-date
To reinstall 0.9, run `brew reinstall dfu-util`

で書いてある通りだけれど``内の打ってもう一度インストールし直せって事なので、もう一度インストールし直す。

これでやってみるがうまくいかず、ビルドが通らない。

色々探し回って、
https://github.com/osx-cross/homebrew-avr/issues/76
で書かれてることを試してみた。

$ brew remove avr-gcc avr-binutils
$ brew untap osx-cross/avr
$ brew cleanup -scf
$ brew upgrade
$ brew tap osx-cross/avr
$ brew install avr-gcc

で、もう一回

$ ./util/qmk_install.sh

をやって見たが警告は消えない。

ただ、ビルドは通った。

何がいけなかったんだろうか?

1
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
1
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?